body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
  /* Arka plan: salon fotoğrafı + üstüne hafif pembe/gradyan örtü */
  background:
    linear-gradient(to bottom right, rgba(255,228,240,0.40), rgba(245,247,251,0.40)),
    url("salon-bg.jpg") center center / cover no-repeat fixed;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  color:#111827;
}

.shell{
  width:100%;
  max-width:1080px;
  padding:32px 24px 40px;
}

.brand{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.brand-title{
  font-size:22px;
  font-weight:700;
}

.brand-sub{
  font-size:13px;
  color:#6b7280;
}

.layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1.1fr);
  gap:24px;
}

.info-card, .form-card{
  background:white;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(15,23,42,0.12);
  padding:26px 30px;
}

.info-card{
  background:linear-gradient(135deg,#ffe4f0 0%,#ffffff 35%,#ffffff 100%);
}

.info-card h1{
  margin:0 0 10px;
  font-size:26px;
}

.info-card p{
  margin:0 0 16px;
  font-size:14px;
  color:#4b5563;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 12px;
  border-radius:999px;
  font-size:11px;
  background:#fdf2ff;
  color:#a21caf;
  margin-bottom:10px;
}

.services{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin-top:10px;
  font-size:13px;
}

.service-label{
  font-weight:600;
  color:#111827;
}

.hours-grid{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #f3e8ff;
  font-size:13px;
}

.location-card{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #f3e8ff;
  font-size:13px;
}

.location-title{
  font-weight:600;
  margin-bottom:4px;
}

.location-address{
  color:#4b5563;
  margin-bottom:10px;
}

.location-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.btn-whatsapp{
  background:#22c55e;
  color:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  border:0;
  cursor:pointer;
  white-space:nowrap;
}

.btn-whatsapp:hover{
  background:#16a34a;
}

.btn-map{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  font-size:12px;
  cursor:pointer;
}

.btn-map:hover{
  background:#eef2ff;
}

.map-frame{
  border-radius:12px;
  overflow:hidden;
  background:#020617;
  height:220px;
}

.map-frame iframe{
  width:100%;
  height:260px; /* biraz büyük, üstteki enlem-boylam kutusunu gizlemek için yukarı kaydırıyoruz */
  border:0;
  transform:translateY(-40px);
}

.gallery{
  margin-top:22px;
}

.gallery-title{
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  color:#111827;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}

.gallery-item img{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(15,23,42,0.16);
}

.gallery{
  margin-top:18px;
}

.gallery-title{
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}

.gallery-item{
  position:relative;
  border-radius:10px;
  overflow:hidden;
}

.gallery-item img{
  width:100%;
  height:90px;
  object-fit:cover;
  display:block;
  transition:transform 0.25s ease-out, filter 0.25s ease-out;
  filter:brightness(0.9);
}

.gallery-item:hover img{
  transform:scale(1.05);
  filter:brightness(1);
}

.hours-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:4px;
}

.hours-label{
  font-weight:600;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:2px 8px;
  border-radius:999px;
  font-size:11px;
  background:#ecfdf3;
  color:#166534;
}

.form-card h2{
  margin:0 0 4px;
  font-size:20px;
}

.form-sub{
  font-size:12px;
  color:#6b7280;
  margin-bottom:12px;
}

.cancel-info{
  font-size:11px;
  color:#6b7280;
  margin-top:10px;
}

@media(max-width:900px){
  .layout{
    grid-template-columns:minmax(0,1fr);
  }
  .shell{
    padding:20px 14px 32px;
  }
}


