/* Açık tema — temiz, okunabilir, altın vurgu */
:root {
  --bg: #f6f7fb;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(15, 23, 42, 0.14);
  --gold: #6b4ce6;
  --gold-mid: #7c5cff;
  --gold-dim: #4f34bf;
  --gold-soft: rgba(108, 76, 230, 0.12);
  --gold-glow: rgba(124, 92, 255, 0.22);
  --text: #0f172a;
  --muted: #475569;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --header-h: 1px solid var(--border);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  background-image: linear-gradient(180deg, #ffffff 0%, #f6f7fb 32%, #f1f3f9 100%);
  line-height: 1.6;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--header-h);
  box-shadow: var(--shadow-sm);
}

.header-shell {
  padding: 0.65rem 0 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #a68bff, #5f44d9);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-header-secondary,
.btn-header-primary {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-header-secondary {
  background: var(--bg-elevated);
  color: var(--text);
}

.btn-header-secondary:hover {
  background: var(--gold-soft);
  border-color: rgba(139, 105, 20, 0.35);
}

.btn-header-primary {
  background: linear-gradient(145deg, #a68bff, #6b4ce6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.btn-header-primary:hover {
  filter: brightness(1.05);
}

@media (min-width: 640px) {
  .btn-header-secondary,
  .btn-header-primary {
    display: inline-flex;
  }
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.55rem 0 0.75rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  border-color: var(--border);
  background: var(--gold-soft);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font: inherit;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  box-shadow: 0 -5px 0 var(--text), 0 5px 0 var(--text);
}

.nav-toggle-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 4vw 1rem;
  border-top: 1px solid var(--border);
  margin-top: -1px;
  background: #fff;
}

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-drawer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.nav-drawer-cta .btn-header-secondary,
.nav-drawer-cta .btn-header-primary {
  display: inline-flex;
  width: 100%;
  font-size: 0.82rem;
  padding: 0.55rem 0.6rem;
}

.nav-drawer a:hover {
  color: var(--gold-mid);
}

@media (max-width: 960px) {
  .nav-main {
    display: none;
  }
  .header-cta .btn-header-secondary,
  .header-cta .btn-header-primary {
    display: none !important;
  }
  .brand-tagline {
    display: none;
  }
  .brand-text {
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .header-top {
    gap: 0.65rem;
  }
  .nav-toggle {
    padding: 0.5rem 0.8rem;
  }
  .nav-drawer.is-open {
    display: flex;
    width: 100%;
  }
}

@media (min-width: 961px) {
  .nav-toggle {
    display: none;
  }
}

.site-main {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

/* Hero */
.hero {
  padding: 2.75rem 0 2rem;
}

.hero-compact {
  padding: 2rem 0 1.35rem;
}

.hero-inner {
  text-align: center;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-align: left;
}

.breadcrumb a {
  color: var(--gold-mid);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.section {
  padding: 2.25rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section-sub {
  margin: 0;
  color: var(--gold-mid);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-desc {
  margin: 1rem auto 0;
  max-width: 62ch;
  color: var(--muted);
}

.section-desc strong {
  color: var(--text);
  font-weight: 500;
}

.section-actions {
  margin-top: 2rem;
  text-align: center;
}

/* Salon cards */
.salon-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
}

.salon-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.salon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 105, 20, 0.3);
  box-shadow: var(--shadow);
}

.salon-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Kart görseli */
.salon-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e0d5 0%, #d5c9b8 100%);
  flex-shrink: 0;
  position: relative;
}

.salon-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.salon-card:hover .salon-card-thumb img {
  transform: scale(1.04);
}

.salon-card-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(139, 105, 20, 0.45);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #f0ece4 0%, #e5ddd0 100%);
}

.salon-card-body {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.salon-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text);
}

.salon-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.salon-views {
  color: var(--gold-dim);
}

.salon-loc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.salon-loc .dot {
  margin: 0 0.3rem;
  opacity: 0.45;
}

.salon-card-arrow {
  align-self: flex-end;
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: var(--gold-mid);
  opacity: 0.7;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: right;
}

.load-more-wrap {
  margin-top: 2rem;
  text-align: center;
}

.cta-banner {
  margin-top: 2.5rem;
  text-align: center;
}

.cta-banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(139, 105, 20, 0.4);
  background: var(--gold-soft);
}

.btn-gold {
  background: linear-gradient(145deg, #9a7dff, #6b4ce6);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-mid);
  border-color: transparent;
}

.btn-ghost:hover {
  text-decoration: underline;
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.review-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.review-card {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.review-name {
  font-weight: 600;
  color: var(--text);
}

.review-date {
  color: var(--muted);
}

.stars .star.on {
  color: var(--gold-mid);
}

.review-body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.article-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.article-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.prose {
  color: var(--muted);
}

.prose p {
  margin: 0 0 1rem;
}

.prose h3,
.prose h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose strong {
  color: var(--text);
  font-weight: 500;
}

.article-expandable .article-truncated::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.article-expandable[data-expanded="true"] .article-truncated::after {
  display: none;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-bottom: 0.65rem;
  padding: 0.25rem 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: 0.85rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--gold-mid);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.detail-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.detail-phone a {
  color: var(--gold-mid);
}

.stack-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin-inline: auto;
}

.stack-form .field input,
.stack-form .field textarea {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.alert-success {
  border: 1px solid rgba(34, 160, 90, 0.35);
  background: rgba(34, 160, 90, 0.08);
  color: #166534;
}

.alert-error {
  border: 1px solid rgba(200, 60, 60, 0.35);
  background: rgba(200, 60, 60, 0.06);
  color: #991b1b;
}

.form-after {
  margin-top: 1.25rem;
}

.muted-center {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.small-print {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.55;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 3rem 0 6rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.footer-links a:hover {
  color: var(--gold-mid);
}

.footer-bottom-inner {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner p {
  margin: 0.5rem auto 0;
}

.footer-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.06);
}

.footer-sticky a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.35rem 0.5rem;
}

.footer-sticky a:hover {
  color: var(--gold-mid);
}

@media (min-width: 768px) {
  .footer-sticky {
    display: none;
  }
  .site-footer {
    padding-bottom: 3rem;
  }
}

.blog-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  border-color: rgba(139, 105, 20, 0.35);
  box-shadow: var(--shadow);
}

.blog-card-title {
  color: var(--text);
}

.blog-card-date {
  color: var(--gold-dim);
}

.blog-card-more {
  color: var(--gold-mid);
}

.static-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Reklam sayfası */
.ad-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ad-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.ad-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.stars {
  display: inline-flex;
  gap: 0.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stars .star {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.article-block {
  margin-bottom: 2.5rem;
}

.article-expandable .article-truncated {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.article-expandable[data-expanded="true"] .article-truncated {
  max-height: none;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-answer {
  padding: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
}

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
}

.footer-cities a {
  color: var(--muted);
  text-decoration: none;
}

.form-page {
  padding: 0 0 4rem;
}

/* ---- Field base (label + input stacked) ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  width: 100%;
  min-width: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.field.checkbox input {
  width: auto;
  min-width: unset;
  accent-color: var(--gold);
}

.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  max-width: 520px;
  margin-inline: auto;
}

.salon-detail {
  max-width: 560px;
  margin-inline: auto;
}

.salon-extra-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.detail-heading {
  font-family: var(--font-display);
  margin: 0 0 1rem;
}

.salon-detail-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.detail-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.btn-whatsapp {
  border-color: rgba(22, 163, 74, 0.35);
  color: #166534;
}

.btn-whatsapp:hover {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.45);
}

.price-list-wrap img {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.salon-bullet-list,
.salon-hours-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  text-align: left;
}

.salon-bullet-list li,
.salon-hours-list li {
  margin-bottom: 0.4rem;
}

.service-areas-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 0.9rem;
}

.service-areas-list li {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-loc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ===== Salon Slider ===== */
.salon-slider-section {
  padding: 0 0 2rem;
}

.salon-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  max-height: 480px;
  box-shadow: var(--shadow);
}

.salon-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.salon-slide {
  flex: 0 0 100%;
  max-height: 480px;
  overflow: hidden;
}

.salon-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0.85;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-btn:hover {
  background: #fff;
  opacity: 1;
}

.slider-btn-prev {
  left: 12px;
}

.slider-btn-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .salon-slide img,
  .salon-slider { max-height: 260px; }
  .salon-slide img { height: 260px; }
}

/* ===== Listeye-ekle / Register form ===== */
.hero-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.register-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.reg-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

.reg-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reg-step-arrow {
  color: var(--muted);
  font-size: 1rem;
  opacity: 0.5;
}

/* Register form wrapper */
.register-form {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Benefits row */
.listing-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 680px) {
  .listing-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .listing-benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  font-size: 0.87rem;
  color: var(--text);
}

.benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form section cards */
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

@media (max-width: 480px) {
  .form-section {
    padding: 1rem;
  }
}

.form-section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: -0.5rem 0 0.85rem;
  line-height: 1.5;
}

/* 2-col field grid */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 580px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}

/* Services checkboxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.5rem;
}

@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.87rem;
  background: var(--bg);
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.service-check input {
  accent-color: var(--gold);
  flex-shrink: 0;
  width: auto;
  min-width: unset;
}

.service-check.is-checked,
.service-check:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-dim);
}

/* Package cards */
.package-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 440px) {
  .package-cards {
    grid-template-columns: 1fr;
  }
}

.package-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: var(--bg);
  position: relative;
}

.package-card input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.package-card.is-selected,
.package-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.pkg-header {
  margin-bottom: 0.5rem;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-free {
  background: #d1fae5;
  color: #065f46;
}

.pkg-premium {
  background: var(--gold-soft);
  color: var(--gold-dim);
  border: 1px solid rgba(139,105,20,0.25);
}

.pkg-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.pkg-features li {
  font-size: 0.83rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.form-privacy {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.req-star {
  color: #dc2626;
}

/* ===== Hero Location Search ===== */
.hero-location-search {
  margin-top: 2rem;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}

.hero-loc-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  gap: 0.4rem;
  box-shadow: 0 8px 32px rgba(15,23,42,0.1), 0 0 0 0 var(--gold-glow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-loc-bar:focus-within {
  border-color: var(--gold-mid);
  box-shadow: 0 8px 32px rgba(15,23,42,0.12), 0 0 0 4px var(--gold-glow);
}

.hero-loc-pin {
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}

.hero-loc-input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  outline: none;
  min-width: 0;
  padding: 0.3rem 0;
}

.hero-loc-input::placeholder {
  color: var(--muted);
}

.hero-loc-detect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-mid);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  position: relative;
}

.hero-loc-detect:hover {
  background: var(--gold-soft);
  border-color: var(--gold-mid);
}

.hero-loc-detect.is-loading svg {
  animation: loc-spin 1s linear infinite;
}

@keyframes loc-spin {
  to { transform: rotate(360deg); }
}

.hero-loc-search {
  background: linear-gradient(135deg, #9a7dff, #6b4ce6);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px var(--gold-glow);
}

.hero-loc-search:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-loc-status {
  margin-top: 0.6rem;
  font-size: 0.87rem;
  min-height: 1.3em;
  text-align: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  display: none;
}

.hero-loc-status:not(:empty) {
  display: block;
}

.hero-loc-status.loading {
  color: var(--muted);
  background: rgba(15,23,42,0.04);
}

.hero-loc-status.success {
  color: #166534;
  background: rgba(34,160,90,0.08);
  border: 1px solid rgba(34,160,90,0.2);
}

.hero-loc-status.warn {
  color: #92400e;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
}

.hero-loc-status.error {
  color: #991b1b;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
}

@media (max-width: 540px) {
  .hero-loc-bar {
    padding: 0.35rem 0.35rem 0.35rem 0.85rem;
    border-radius: 14px;
    gap: 0.3rem;
  }

  .hero-loc-search {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* ===== Nearby page search bar ===== */
.nearby-search-wrap {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nearby-search-form {
  max-width: 600px;
  margin-inline: auto;
}

.nearby-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nearby-search-bar:focus-within {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.nearby-search-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.nearby-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.93rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.nearby-search-input::placeholder {
  color: var(--muted);
}

.nearby-locate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-mid);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nearby-locate-btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-mid);
}

.nearby-locate-btn.is-loading svg {
  animation: loc-spin 1s linear infinite;
}

.nearby-search-btn {
  background: linear-gradient(135deg, #9a7dff, #6b4ce6);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.15s;
}

.nearby-search-btn:hover {
  filter: brightness(1.08);
}

.nearby-active-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.filter-clear {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(220,38,38,0.25);
  transition: background 0.15s;
}

.filter-clear:hover {
  background: rgba(220,38,38,0.06);
}

/* Empty state for location results */
.location-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.location-empty-state .empty-icon {
  font-size: 3rem;
}

.location-empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--text);
}

.location-empty-state p {
  color: var(--muted);
  margin: 0;
}

.location-empty-state .btn {
  margin-top: 0.25rem;
}

/* ===== Global responsive ===== */

/* ---- Konteyner iç padding küçük ekranlarda ---- */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero {
    padding: 1.75rem 0 1.25rem;
  }

  .hero-compact {
    padding: 1.5rem 0 1rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .register-steps {
    gap: 0.25rem;
  }

  .reg-step-arrow {
    display: none;
  }
}

/* ---- Tablet ---- */
@media (max-width: 768px) {
  .salon-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .salon-slider .salon-slide img {
    height: 320px;
  }

  .salon-slider {
    max-height: 320px;
  }
}

/* ---- Küçük mobil ---- */
@media (max-width: 360px) {
  .salon-list {
    grid-template-columns: 1fr;
  }

  .package-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 0.85rem;
  }

  .header-cta {
    display: none;
  }
}

/* ---- Alert genişliği register formunda ---- */
.register-form .alert,
.form-page > .alert {
  max-width: none;
  margin-inline: 0;
}

/* ---- Salon detail responsive ---- */
@media (max-width: 640px) {
  .salon-detail {
    max-width: 100%;
  }

  .detail-card {
    padding: 1.5rem 1rem;
  }
}

/* ---- Blog / static page ---- */
@media (max-width: 680px) {
  .article-wrap {
    max-width: 100%;
  }

  .blog-card {
    padding: 1rem;
  }
}

/* ---- Ad grid ---- */
@media (max-width: 560px) {
  .ad-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Overflow önleme ---- */
img {
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
}

pre, code {
  overflow-x: auto;
}
