/* Güzellik Haritası — Ana CSS */

:root {
  --primary: #B5446E;
  --primary-light: #D4618A;
  --primary-dark: #9B3A5E;
  --bg: #FDFAF9;
  --bg-card: #FFFFFF;
  --accent: #FEF2F6;
  --accent2: #FDE8F1;
  --border: #EDE0E8;
  --border-light: #F5EDF2;
  --text: #1F1A1E;
  --text2: #6B6270;
  --text3: #A89EAC;
  --price-green: #1A7A4A;
  --price-bg: #F0FBF6;
  --gold: #B07D2E;
  --gold-bg: #FFF8E7;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --max-w: 1100px;
  --grad-primary: linear-gradient(135deg, #B5446E 0%, #D4618A 55%, #E88BAE 100%);
  --grad-hero: linear-gradient(160deg, #FFF4F8 0%, #FDEDF3 35%, #FAE8F2 65%, #F4E8FB 100%);
  --shadow-lg: 0 1px 2px rgba(24, 12, 22, .04), 0 12px 28px -8px rgba(181, 68, 110, .14), 0 32px 64px -24px rgba(123, 45, 139, .12);
  --shadow-xl: 0 2px 4px rgba(24, 12, 22, .05), 0 24px 48px -12px rgba(181, 68, 110, .22);
  --ring: 0 0 0 3px rgba(181, 68, 110, .28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── NAV ─────────────────────────── */

.gfh-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.gfh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gfh-logo-icon {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.gfh-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.gfh-logo-text span {
  color: var(--primary);
}

.gfh-nav-links {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.gfh-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  padding: 6px 11px;
  border-radius: 8px;
  transition: all .15s;
  white-space: nowrap;
}

.gfh-nav-links a:hover {
  background: var(--accent);
  color: var(--primary);
}

.gfh-nav-cta {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform .15s ease, filter .15s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px -2px rgba(181,68,110,.3);
}

.gfh-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 18px -4px rgba(181,68,110,.4);
}

/* ── HERO ────────────────────────── */

.gfh-hero {
  background: var(--grad-hero);
  padding: 96px 32px 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gfh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 10%, rgba(181,68,110,.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(123,45,139,.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,139,174,.18) 0%, transparent 70%);
  pointer-events: none;
}

.gfh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(181,68,110,.25);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(181,68,110,.08);
  animation: gfhFadeDown .7s ease-out .05s both;
}

.gfh-hero h1 {
  font-size: clamp(34px, 5.6vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.03em;
  animation: gfhFadeUp .75s ease-out .1s both;
}

.gfh-hero h1 em {
  color: transparent;
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.gfh-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: gfhFadeUp .75s ease-out .18s both;
}

.gfh-search-bar {
  background: #fff;
  border: 1.5px solid rgba(181,68,110,.18);
  border-radius: 20px;
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 620px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  animation: gfhFadeUp .75s ease-out .25s both;
  position: relative;
  z-index: 60;
}

.gfh-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  font-family: inherit;
  min-width: 0;
  padding: 6px 0;
}

.gfh-search-bar input::placeholder {
  color: var(--text3);
}

.gfh-search-bar select {
  border: none;
  border-left: 1.5px solid var(--border);
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text2);
  font-family: inherit;
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0;
}

.gfh-search-btn {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .01em;
  box-shadow: 0 6px 16px -4px rgba(181,68,110,.45);
  transition: transform .15s ease, box-shadow .2s ease, filter .15s ease;
}

.gfh-hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  animation: gfhFadeUp .75s ease-out .33s both;
}

.gfh-hero-stat-val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gfh-hero-stat-label {
  font-size: 11px;
  color: var(--text2);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ── SECTIONS ────────────────────── */

.gfh-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px;
}

.gfh-divider {
  height: 1px;
  background: var(--border-light);
}

/* ── HİZMET KARTLARı ─────────────── */

.gfh-hizmet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gfh-hizmet-card {
  background: linear-gradient(180deg, #fff 0%, #FFF8FB 100%);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 26px 16px 22px;
  text-align: center;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.gfh-hizmet-card:hover {
  border-color: rgba(181,68,110,.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gfh-hizmet-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(181,68,110,.15));
  transition: transform .25s ease;
}

.gfh-hizmet-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}

.gfh-hizmet-price {
  font-size: 13px;
  color: var(--price-green);
  font-weight: 800;
  display: inline-block;
  padding: 3px 9px;
  background: var(--price-bg);
  border-radius: 7px;
  margin-top: 2px;
}

.gfh-hizmet-count {
  font-size: 11px;
  color: var(--text3);
  margin-top: 6px;
  letter-spacing: .03em;
}

/* ── ŞEHİR LİSTESİ ───────────────── */

.gfh-sehir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gfh-sehir-card {
  background: linear-gradient(135deg, #fff 0%, #FFFBFD 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.gfh-sehir-card:hover {
  border-color: rgba(181,68,110,.2);
  box-shadow: 0 12px 28px -10px rgba(181,68,110,.18);
  transform: translateY(-3px);
}

.gfh-sehir-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -.01em;
}

.gfh-sehir-count {
  font-size: 12px;
  color: var(--text2);
  margin-top: 3px;
}

.gfh-sehir-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--price-green);
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 9px;
  background: var(--price-bg);
  box-shadow: inset 0 0 0 1px rgba(26,122,74,.1);
}

/* ── NASIL ÇALIŞIR ───────────────── */

.gfh-nasil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.gfh-nasil-card {
  background: linear-gradient(180deg, #fff 0%, #FFF9FC 100%);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gfh-nasil-num {
  width: 46px;
  height: 46px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 16px -4px rgba(181,68,110,.35);
  position: relative;
  z-index: 1;
}

.gfh-nasil-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.gfh-nasil-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── LEAF SAYFA ──────────────────── */

.gfh-leaf-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.gfh-leaf-sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gfh-breadcrumb {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.gfh-breadcrumb a {
  color: var(--text2);
}

.gfh-breadcrumb a:hover {
  color: var(--primary);
}

.gfh-breadcrumb-sep {
  color: var(--border);
}

.gfh-breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

.gfh-leaf-h1 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.gfh-leaf-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.gfh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.gfh-badge-update {
  background: var(--price-bg);
  color: var(--price-green);
}

.gfh-badge-count {
  background: var(--accent);
  color: var(--primary);
}

.gfh-badge-source {
  background: var(--gold-bg);
  color: var(--gold);
}

/* Fiyat Kutusu */

.gfh-fiyat-kutusu {
  background: linear-gradient(135deg, #fff 0%, #FEF6FA 50%, #FAEEF8 100%);
  border: 1px solid rgba(181,68,110,.15);
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.gfh-fiyat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.gfh-fiyat-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gfh-fiyat-update {
  font-size: 11px;
  color: var(--text3);
}

.gfh-fiyat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.gfh-fiyat-item {
  text-align: center;
  padding: 16px 10px;
  background: var(--bg);
  border-radius: 13px;
  border: 1px solid var(--border-light);
  transition: transform .2s ease;
}

.gfh-fiyat-item.highlight {
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: 0 10px 20px -6px rgba(181,68,110,.35);
}

.gfh-fiyat-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  font-weight: 600;
}

.gfh-fiyat-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--price-green);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -.015em;
}

.gfh-fiyat-item.highlight .gfh-fiyat-val {
  color: var(--primary);
}

.gfh-fiyat-unit {
  font-size: 10px;
  color: var(--text3);
}

.gfh-fiyat-note {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  line-height: 1.5;
}

/* Hizmet Chips */

.gfh-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.gfh-chip {
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text2);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .15s ease, color .15s ease, background .15s ease;
}

.gfh-chip:hover, .gfh-chip.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
}

/* Salon Listesi */

.gfh-salon-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.gfh-salon-list-title {
  font-size: 17px;
  font-weight: 700;
}

.gfh-konum-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid rgba(181,68,110,.2);
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.gfh-konum-btn:hover {
  background: var(--accent2);
}

.gfh-salon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .18s ease;
}

.gfh-salon-card:hover {
  border-color: rgba(181,68,110,.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(181,68,110,.18);
}

/* — Hub salon grid (kategori sayfaları) — */

.gfh-salon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.gfh-salon-grid .gfh-salon-card {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: #fff;
}

.gfh-salon-grid .gfh-salon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(181,68,110,.22);
  border-color: rgba(181,68,110,.3);
}

.gfh-salon-grid .gfh-salon-img {
  height: 170px;
  background: #f3f3f3;
  position: relative;
  transition: transform .4s ease;
}

.gfh-salon-grid .gfh-salon-card-body {
  padding: 12px 14px 14px;
}

.gfh-salon-grid .gfh-salon-card-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #1f1a1e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.gfh-salon-grid .gfh-salon-card-rating {
  font-size: 13px;
  color: #E65100;
  margin-top: 6px;
  font-weight: 600;
}

.gfh-salon-grid .gfh-salon-card-rev {
  color: #999;
  font-weight: 400;
  font-size: 12px;
}

.gfh-salon-grid .gfh-salon-card-addr {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured (top 10) — biraz daha büyük & vurgulu */

.gfh-featured-grid .gfh-salon-card {
  border-color: rgba(181,68,110,.2);
  background: linear-gradient(180deg, #fff 0%, #FFF8FB 100%);
  position: relative;
}

.gfh-featured-grid .gfh-salon-img {
  height: 200px;
}

.gfh-featured-grid .gfh-salon-card-name {
  font-size: 15px;
}

/* Daha fazla göster butonu */

.gfh-btn-loadmore {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: 0 6px 14px -4px rgba(181,68,110,.2);
}

.gfh-btn-loadmore:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 12px 24px -6px rgba(181,68,110,.4);
}

.gfh-btn-loadmore:disabled {
  opacity: .5;
  cursor: wait;
}

/* İl Hub — giriş + sidebar grid */

.gfh-il-hub-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}

.gfh-il-hub-intro .gfh-hub-giris {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.gfh-il-hub-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gfh-hub-fiyat-kart {
  background: linear-gradient(135deg, #fff 0%, #fff3f6 100%);
  border: 1.5px solid #f0ddeb;
  border-radius: 12px;
  padding: 20px;
}

.gfh-hub-fiyat-kart .lbl {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}

.gfh-hub-fiyat-kart .val {
  font-size: 26px;
  font-weight: 800;
  color: #B5446E;
  margin-top: 6px;
}

.gfh-hub-fiyat-kart .sub {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.gfh-hub-mini-kart {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.gfh-hub-mini-kart .val {
  font-size: 22px;
  font-weight: 800;
}

.gfh-hub-mini-kart .lbl {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

/* SSS Accordion */

.gfh-il-hub-sss {
  margin-top: 48px;
  max-width: 900px;
  clear: both;
}

.gfh-faq-accordion {
  margin-top: 14px;
}

.gfh-faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.gfh-faq-item summary {
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.gfh-faq-item summary .ikon {
  color: #B5446E;
  font-size: 16px;
  transition: transform .2s;
}

.gfh-faq-item[open] summary .ikon {
  transform: rotate(180deg);
}

.gfh-faq-item .cevap {
  padding: 0 20px 16px;
  color: #555;
  line-height: 1.75;
  font-size: 13px;
  border-top: 1px solid #f3f3f3;
  padding-top: 12px;
}

@media (max-width: 900px) {
  .gfh-il-hub-intro {
    grid-template-columns: 1fr;
  }

  .gfh-hub-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gfh-leaf-wrap {
    grid-template-columns: 1fr;
  }

  .gfh-leaf-sidebar {
    position: static;
  }

  .gfh-hizmet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gfh-sehir-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gfh-nasil-grid {
    grid-template-columns: 1fr;
  }

  .gfh-hub-hero {
    flex-direction: column;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .gfh-hub-hero-emoji {
    display: none;
  }

  

  .gfh-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .gfh-nav-cta {
    display: none;
  }

  .gfh-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }

  .gfh-nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .gfh-nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }

  .gfh-hero {
    padding: 64px 20px 56px;
  }

  .gfh-hero-stats > div {
    padding: 10px 16px;
    min-width: 0;
    flex: 1 1 40%;
  }

  .gfh-factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gfh-hub-stats-xl {
    grid-template-columns: repeat(2,1fr);
  }

  .gfh-factor-big-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gfh-factor-big {
    padding: 22px 20px;
  }

  .gfh-hub-hero-xl {
    padding: 32px 24px;
  }

  .gfh-hub-hero-xl .gfh-hero-blob {
    width: 320px;
    height: 320px;
    right: -120px;
    top: -100px;
  }
}

.gfh-salon-rank {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.gfh-salon-rank.gold {
  background: linear-gradient(135deg, #FFE9A8 0%, #F4C961 100%);
  color: #7A5419;
}

.gfh-salon-rank.silver {
  background: linear-gradient(135deg, #F1F1F1 0%, #D6D6D6 100%);
  color: #5A5A5A;
}

.gfh-salon-rank.bronze {
  background: linear-gradient(135deg, #FDD9BD 0%, #E5A274 100%);
  color: #7A3D15;
}

.gfh-salon-info {
  flex: 1;
  min-width: 0;
}

.gfh-salon-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gfh-salon-addr {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 7px;
}

.gfh-salon-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.gfh-salon-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 500;
}

.tag-puan {
  background: var(--gold-bg);
  color: var(--gold);
}

.tag-fiyat {
  background: var(--price-bg);
  color: var(--price-green);
}

.tag-acik {
  background: #E8F8EE;
  color: #1A7A4A;
}

.tag-kapali {
  background: #FDE8E8;
  color: #C0392B;
}

.gfh-salon-price {
  font-size: 12px;
  color: var(--text2);
}

.gfh-salon-price strong {
  color: var(--price-green);
}

.gfh-salon-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.gfh-btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 10px -2px rgba(181,68,110,.35);
  transition: transform .15s ease, filter .15s ease;
}

.gfh-btn-harita {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .15s;
}

.gfh-btn-harita:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* İçerik Blokları */

.gfh-blok {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  overflow: hidden;
}

.gfh-blok-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.gfh-blok-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}

.gfh-blok-text h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 8px;
}

.gfh-blok-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 6px;
}

.gfh-blok-text p + p {
  margin-top: 10px;
}

/* FAQ */

.gfh-blok .gfh-faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 13px 0;
  border-radius: 0;
  border: none;
  margin: 0;
  overflow: visible;
  background: none;
}

.gfh-blok .gfh-faq-item:last-child {
  border-bottom: none;
}

.gfh-faq-q {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.gfh-faq-q-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.gfh-faq-a {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* Yakın İlçeler */

.gfh-ilce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gfh-ilce-link {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .18s ease;
}

.gfh-ilce-link:hover {
  border-color: rgba(181,68,110,.28);
  color: var(--primary);
  background: var(--accent);
  transform: translateX(2px);
  box-shadow: 0 4px 10px rgba(181,68,110,.08);
}

.gfh-ilce-price {
  font-size: 12px;
  color: var(--price-green);
  font-weight: 600;
}

/* ── SİDEBAR ─────────────────────── */

.gfh-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(24,12,22,.03);
  transition: box-shadow .2s ease, transform .2s ease;
}

.gfh-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.gfh-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.gfh-sidebar-row:last-child {
  border-bottom: none;
}

.gfh-sidebar-row a {
  color: var(--text);
}

.gfh-sidebar-row a:hover {
  color: var(--primary);
}

.gfh-sidebar-fiyat {
  color: var(--price-green);
  font-weight: 700;
}

.gfh-sidebar-konum {
  text-align: center;
  background: linear-gradient(160deg, #FFF6FA 0%, #FCECF5 100%);
  border-color: rgba(181,68,110,.18);
}

.gfh-sidebar-konum-icon {
  font-size: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 8px rgba(181,68,110,.2));
}

.gfh-sidebar-konum-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gfh-sidebar-konum-sub {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 16px;
}

.gfh-btn-konum {
  width: 100%;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 14px -4px rgba(181,68,110,.35);
  transition: transform .15s ease, filter .15s ease;
}

/* ── İL HUB ──────────────────────── */

.gfh-hub-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 32px 80px;
}

.gfh-hub-hero {
  background: linear-gradient(135deg, #FEF2F6 0%, #FFF7FB 50%, #F7ECF9 100%);
  border-radius: 24px;
  padding: 44px 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(181,68,110,.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -8px rgba(181,68,110,.15);
}

.gfh-hub-eyebrow {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(181,68,110,.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gfh-hub-h1 {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.gfh-hub-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 24px;
  max-width: 620px;
  line-height: 1.6;
}

.gfh-hub-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}

@media (max-width: 480px) {
  .gfh-hub-stats {
    grid-template-columns: 1fr;
  }

  .gfh-hub-stats-xl {
    grid-template-columns: 1fr;
  }
}

.gfh-hub-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.gfh-hub-stat-label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

.gfh-hub-hero-emoji {
  font-size: 92px;
  opacity: .22;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 20px rgba(181,68,110,.15));
  animation: gfhFloat 6s ease-in-out infinite;
}

.gfh-hub-hizmet-bar {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gfh-hub-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.gfh-ilce-table {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gfh-ilce-table-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 60px;
  background: linear-gradient(180deg, #FDF7FA 0%, #FAF0F5 100%);
  border-bottom: 1px solid var(--border);
}

.gfh-ilce-table-header div {
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.gfh-ilce-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 60px;
  border-bottom: 1px solid var(--border-light);
  transition: background .15s ease, transform .15s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gfh-ilce-row:last-child {
  border-bottom: none;
}

.gfh-ilce-row:hover {
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.gfh-ilce-row > div {
  padding: 14px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.gfh-ilce-row .ilce-name {
  font-weight: 700;
  color: var(--primary);
}

.gfh-ilce-row .ilce-price {
  color: var(--price-green);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.gfh-ilce-row .ilce-count {
  color: var(--text2);
  font-size: 13px;
}

.gfh-ilce-row .ilce-arrow {
  color: var(--text3);
}

/* ── FOOTER ──────────────────────── */





























/* ── RESPONSIVE ──────────────────── */

/* Search autocomplete */

/* Search autocomplete */

.gfh-search-ac a {
  display: block;
  padding: 13px 18px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  transition: background .12s;
}

.gfh-search-ac a:hover {
  background: #fdf4f7;
}

.gfh-search-ac a b {
  font-weight: 600;
}

.gfh-search-ac a span {
  color: #888;
  font-size: 13px;
  margin-left: 8px;
}

/* Hamburger */

.gfh-nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}

.gfh-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  transition: .2s;
  border-radius: 2px;
}

.gfh-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gfh-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.gfh-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 620px) {
  .gfh-nav {
    padding: 0 16px;
    position: relative;
  }

  .gfh-hero, .gfh-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gfh-leaf-wrap, .gfh-hub-wrap {
    padding: 20px 16px 60px;
  }

  .gfh-hizmet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gfh-sehir-grid {
    grid-template-columns: 1fr;
  }

  .gfh-ilce-grid {
    grid-template-columns: 1fr;
  }

  

  .gfh-ilce-table-header,
  .gfh-ilce-row {
    grid-template-columns: 1fr 1fr 50px;
  }

  .gfh-ilce-table-header div:nth-child(3),
  .gfh-ilce-row .ilce-count {
    display: none;
  }

  .gfh-hero {
    padding: 52px 16px 48px;
  }

  .gfh-section {
    padding: 52px 16px;
  }

  .gfh-search-bar {
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 18px;
  }

  .gfh-search-bar input {
    width: 100%;
    padding: 8px 4px;
  }

  .gfh-search-bar select {
    border-left: none;
    padding: 6px 0;
  }

  .gfh-search-btn {
    width: 100%;
    padding: 12px;
  }

  .gfh-hero-stats {
    gap: 8px;
  }

  .gfh-hero-stats > div {
    padding: 10px 8px;
  }

  .gfh-hero-stat-val {
    font-size: 20px;
  }

  .gfh-hub-hero-emoji {
    display: none;
  }

  .gfh-hub-lede {
    font-size: 14px;
    padding: 14px 16px;
  }

  .gfh-factor-big-ico {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .gfh-factor-big-num {
    font-size: 32px;
  }
}

/* ═══ Page template (Hakkımızda, Gizlilik vs) ═══ */

.gfh-page-hero {
  padding: 32px 0 24px;
  border-bottom: 1px solid #f0e8ec;
  margin-bottom: 32px;
}

.gfh-page-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fdf4f7;
  color: var(--primary);
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.gfh-page-h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gfh-page-meta {
  font-size: 13.5px;
  color: #888;
}

.gfh-page-article {
  font-size: 16px;
  line-height: 1.75;
  color: #2c2c2c;
}

.gfh-page-article p {
  margin: 0 0 18px;
}

.gfh-page-article h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  line-height: 1.3;
}

.gfh-page-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 28px 0 12px;
}

.gfh-page-article ul, .gfh-page-article ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.gfh-page-article ul li, .gfh-page-article ol li {
  margin-bottom: 10px;
}

.gfh-page-article a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
  padding-bottom: 1px;
}

.gfh-page-article a:hover {
  border-bottom-style: solid;
  background: #fdf4f7;
}

.gfh-page-article strong {
  color: #1a1a1a;
  font-weight: 700;
}

.gfh-page-cta {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf4f7 0%, #faeae1 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gfh-page-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.gfh-page-cta-sub {
  font-size: 14px;
  color: #666;
}

.gfh-page-cta-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: .15s;
}

.gfh-page-cta-btn:hover {
  background: #9a3a5e;
  transform: translateY(-1px);
}

.gfh-sidebar-row.active {
  background: #fdf4f7;
  border-radius: 8px;
}

.gfh-sidebar-row.active a {
  font-weight: 700;
  color: var(--primary);
}

/* ── Ek stiller ─────────────────────────────── */

/* Fokus halkası — erişilebilirlik */

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

.gfh-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 8% 30%, rgba(181,68,110,.25) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 55%, rgba(123,45,139,.20) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 80%, rgba(181,68,110,.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 78% 18%, rgba(232,139,174,.35) 0 1.5px, transparent 2.5px);
  opacity: .7;
}

.gfh-hero > * {
  position: relative;
  z-index: 2;
}

.gfh-hero h1 em::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -.08em;
  height: .14em;
  background: var(--grad-primary);
  opacity: .22;
  border-radius: 4px;
  transform: skewX(-8deg);
}

.gfh-search-bar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.gfh-search-bar:focus-within {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(181,68,110,.12);
}

.gfh-search-bar > span:first-child {
  font-size: 17px;
  opacity: .55;
}

.gfh-search-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px -4px rgba(181,68,110,.55);
}

.gfh-search-btn:active {
  transform: translateY(0);
}

.gfh-hero-stats > div {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.8);
  padding: 14px 22px;
  border-radius: 14px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(181,68,110,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gfh-hero-stats > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181,68,110,.10);
}

/* Autocomplete polish */

.gfh-search-ac {
  border: 1px solid rgba(181,68,110,.12);
  border-radius: 14px;
  margin-top: 10px;
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
  z-index: 120;
  max-height: 420px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.gfh-search-ac::-webkit-scrollbar {
  width: 8px;
}

.gfh-search-ac::-webkit-scrollbar-thumb {
  background: #d0b0b8;
  border-radius: 4px;
}

.gfh-section-title {
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.gfh-section-title::after {
  display: none;
}

.gfh-hizmet-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}

.gfh-hizmet-card::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,68,110,.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}

.gfh-hizmet-card:hover::before {
  transform: scaleX(1);
}

.gfh-hizmet-card:hover::after {
  opacity: 1;
}

.gfh-hizmet-card:hover .gfh-hizmet-icon {
  transform: scale(1.08) rotate(-3deg);
}

.gfh-sehir-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.gfh-sehir-card:hover::before {
  transform: scaleY(1);
}

.gfh-nasil-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gfh-nasil-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,68,110,.06) 0%, transparent 70%);
}

.gfh-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 70% at 100% 50%, rgba(181,68,110,.10) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 0% 100%, rgba(123,45,139,.08) 0%, transparent 70%);
  pointer-events: none;
}

.gfh-hub-hero > * {
  position: relative;
  z-index: 1;
}

.gfh-hub-stats > div {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.9);
  padding: 12px 20px;
  border-radius: 14px;
  min-width: 96px;
  box-shadow: 0 2px 6px rgba(181,68,110,.06);
}

.gfh-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(181,68,110,.12);
  background: var(--accent);
  border-color: rgba(181,68,110,.35);
  color: var(--primary);
}

.gfh-chip.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px -4px rgba(181,68,110,.4);
}

/* pin emoji kaldırıldı */

/* İl hub fiyat tablosu (inline stil varken güçlendir) */

.gfh-il-fiyat-tablo {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light) !important;
}

.gfh-il-fiyat-tablo th {
  background: var(--grad-primary) !important;
  padding: 14px 18px !important;
  letter-spacing: .04em;
  font-size: 12px !important;
  text-transform: uppercase;
}

.gfh-il-fiyat-tablo td {
  padding: 14px 18px !important;
}

.gfh-il-fiyat-tablo tr:hover td {
  background: var(--accent);
}

.gfh-fiyat-kutusu::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,68,110,.08) 0%, transparent 70%);
}

.gfh-fiyat-item:hover {
  transform: translateY(-2px);
}

.gfh-fiyat-item.highlight .gfh-fiyat-label,
.gfh-fiyat-item.highlight .gfh-fiyat-val,
.gfh-fiyat-item.highlight .gfh-fiyat-unit {
  color: #fff;
}

.gfh-salon-card-thumb {
  border-radius: 12px 0 0 12px !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

.gfh-btn-tel:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Grid salon kartları (hub) */

.gfh-salon-grid .gfh-salon-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28) 100%);
  pointer-events: none;
}

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

.gfh-featured-grid .gfh-salon-card::before {
  content: '🏆 Öne Çıkan';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

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

.gfh-sidebar-card:hover {
  box-shadow: var(--shadow-sm);
}

/* İlçe link kartları */

/* FAQ accordion polish */

.gfh-faq-item[open] {
  border-color: rgba(181,68,110,.2);
  box-shadow: 0 4px 14px rgba(181,68,110,.08);
}

.gfh-faq-item summary:hover {
  background: var(--accent);
}

.gfh-il-hub-sss .gfh-faq-item {
  border-bottom: 1px solid var(--border-light);
}

/* Selection */

::selection {
  background: rgba(181,68,110,.22);
  color: var(--primary-dark);
}

.gfh-faq-item-acc {
  border: 1px solid #f0e8ec;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
  transition: .15s;
}

.gfh-faq-item-acc[open] {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(181,68,110,.08);
}

.gfh-faq-item-acc summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.gfh-faq-item-acc summary::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}

.gfh-faq-item-acc[open] summary::after {
  content: '−';
}

.gfh-faq-item-acc .gfh-faq-a {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.gfh-faq {
  display: flex;
  flex-direction: column;
}

.gfh-tldr {
  max-width: 680px;
  margin: 0 auto 18px;
  padding: 14px 20px;
  background: rgba(181,68,110,.06);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

.gfh-faq-list .gfh-faq-item-acc {
  margin-bottom: 10px;
}

.gfh-faq-list .gfh-faq-item-acc summary h3 {
  display: inline;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.gfh-sources-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gfh-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f8f4f6;
  border: 1px solid #e8dde2;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

/* Box overflow fix */

.gfh-blok .gfh-faq {
  width: 100%;
}

.gfh-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 8px;
}

.gfh-factor-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 12px;
  padding: 16px 18px;
  transition: .15s;
}

.gfh-factor-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(181,68,110,.08);
}

.gfh-factor-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.gfh-factor-text {
  font-size: 14px;
  line-height: 1.55;
  color: #2c2c2c;
}

/* hub-stat kart */

.gfh-hub-stat {
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  transition: .15s;
}

.gfh-hub-stat:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero XL — SVG blob dekor + geniş hero */

.gfh-hub-hero-xl {
  position: relative;
  padding: 56px 56px;
  overflow: hidden;
  min-height: 280px;
}

.gfh-hub-hero-xl .gfh-hero-blob {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  animation: gfhFloat 10s ease-in-out infinite;
}

.gfh-hub-hero-xl .gfh-hub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.gfh-hub-hero-xl .gfh-hub-h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.028em;
  margin-bottom: 14px;
}

.gfh-hub-hero-xl .gfh-hub-sub {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.gfh-hub-lede {
  -webkit-backdrop-filter: blur(6px);
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
  padding: 16px 20px;
  background: rgba(255,255,255,.6);
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
  max-width: 720px;
  backdrop-filter: blur(6px);
}

.gfh-hub-lede strong {
  color: var(--primary);
}

/* Stats XL — ikonlu */

.gfh-hub-stats-xl {
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.gfh-hub-stats-xl .gfh-hub-stat {
  padding: 16px 18px;
  text-align: left;
  position: relative;
}

.gfh-stat-ico {
  font-size: 22px;
  margin-bottom: 8px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FEF2F6 0%, #F7ECF9 100%);
  border-radius: 12px;
}

/* Fiyatını Ne Etkiler — 3 büyük tematik blok */

.gfh-factor-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gfh-factor-big {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #FDF8FB 100%);
  border: 1px solid rgba(181,68,110,.12);
  box-shadow: 0 2px 8px rgba(181,68,110,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gfh-factor-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -12px rgba(181,68,110,.22);
  border-color: rgba(181,68,110,.28);
}

.gfh-factor-big-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gfh-factor-big-ico {
  font-size: 34px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FEF2F6 0%, #F7ECF9 100%);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(181,68,110,.1);
}

.gfh-factor-big-num {
  font-size: 40px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, rgba(181,68,110,.22) 0%, rgba(123,45,139,.18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -.04em;
  line-height: 1;
}

.gfh-factor-big-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.gfh-factor-big-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text2);
  margin: 0;
}

/* Section sub-title (varsa tekrarlama riskini azalt) */

.gfh-section-sub {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.65;
}

/* Salon hero image */

.gfh-salon-hero {
  margin: 0;
  position: relative;
}

.gfh-salon-hero-shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, rgba(31,26,30,.75) 100%);
  pointer-events: none;
}

@keyframes gfhFadeUp {
from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@keyframes gfhFadeDown {
from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes gfhFloat {
0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 560px) {
.gfh-factor-grid { grid-template-columns: 1fr; }
}

/* ─── FINAL FIXES ─── */
.gfh-section .gfh-section-sub { margin-bottom: 24px !important; }

@media (max-width: 900px) {
  .gfh-nav-toggle { display: block !important; }
  .gfh-nav-cta { display: none !important; }
  .gfh-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .gfh-nav-links.open { display: flex !important; max-height: none !important; }
}

/* Mobil yatay taşma engelle */
html, body { overflow-x: hidden; }



/* Mobil konum ikon butonu (navbar sağ) */
.gfh-nav-konum-sm { display: none; background: none; border: none; font-size: 22px; cursor: pointer; padding: 6px; }
@media (max-width: 900px) {
  .gfh-nav-konum-sm { display: block !important; margin-left: auto; }
  .gfh-nav-toggle { margin-left: 4px; }
}

/* Mobil hub stats — 2x2 grid */
@media (max-width: 620px) {
  .gfh-hub-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .gfh-hub-stats > div { padding: 10px 12px !important; min-width: 0 !important; }
  .gfh-hub-stat { padding: 12px !important; }
  .gfh-hub-stat-val { font-size: 18px !important; }
}

/* ─── GLOBAL MOBİL FIX — tüm sayfalar ─── */
@media (max-width: 620px) {
  .gfh-fiyat-row { grid-template-columns: repeat(3, 1fr) !important; gap: 6px !important; }
  .gfh-fiyat-val { font-size: 18px !important; }
  .gfh-fiyat-item { padding: 10px 6px !important; }
  .gfh-chips { gap: 5px !important; }
  .gfh-chip { padding: 5px 10px !important; font-size: 11px !important; }
  .gfh-salon-card { flex-direction: column !important; padding: 10px !important; }
  .gfh-salon-card-thumb { width: 100% !important; height: 140px !important; border-radius: 10px 10px 0 0 !important; }
  .gfh-salon-actions { flex-direction: row !important; }
  .gfh-leaf-wrap { grid-template-columns: 1fr !important; gap: 20px !important; padding: 16px !important; }
  .gfh-leaf-sidebar { position: static !important; }
  .gfh-hub-wrap { padding: 16px !important; }
  .gfh-hub-hero { padding: 20px 16px !important; border-radius: 14px !important; }
  .gfh-breadcrumb { font-size: 11px !important; }
  .gfh-leaf-h1 { font-size: 22px !important; }
  .gfh-hub-h1 { font-size: 22px !important; }
  .gfh-blok { padding: 14px !important; }
  .gfh-ilce-table { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .gfh-ilce-table-header, .gfh-ilce-row { grid-template-columns: 1fr 1fr !important; min-width: 0 !important; }
  .gfh-ilce-table-header div:nth-child(3), .gfh-ilce-row > div:nth-child(3),
  .gfh-ilce-table-header div:nth-child(4), .gfh-ilce-row > div:nth-child(4) { display: none !important; }
  .gfh-ilce-table-header div, .gfh-ilce-row > div { padding: 10px 12px !important; font-size: 13px !important; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .gfh-salon-grid { grid-template-columns: 1fr !important; }
  .gfh-featured-grid { grid-template-columns: 1fr !important; }
  .gfh-factor-grid { grid-template-columns: 1fr !important; }
  .gfh-il-hub-intro { grid-template-columns: 1fr !important; }
  .gfh-salon-list-header { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }
  .gfh-konum-btn { width: 100% !important; justify-content: center !important; padding: 10px !important; font-size: 13px !important; }
  img, iframe, .gfh-salon-hero img { max-width: 100% !important; height: auto !important; }
}

/* Distance badge (konum sıralama sonrası) */
.gfh-distance-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
  white-space: nowrap;
}

/* ═══ FOOTER C — Masaüstü + Mobil Layout 1 ═══ */
.footer-c { background: #1c1c1e; color: #fff; overflow: hidden; }
.fc-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: 48px 48px 36px; max-width: 1100px; margin: 0 auto;
}
.fc-brand-logo { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.fc-brand-logo span { color: #D4618A; }
.fc-brand-desc { font-size: 13.5px; color: #999; line-height: 1.7; max-width: 280px; }
.fc-col-title {
  font-size: 13px; font-weight: 700; color: #e0e0e0; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid #B5446E; display: inline-block;
}
.fc-col a {
  display: block; font-size: 14px; color: #bbb; text-decoration: none;
  padding: 5px 0; transition: .15s;
}
.fc-col a:hover { color: #fff; padding-left: 4px; }
.fc-links-grid { display: block; }
.fc-bottom {
  background: #151517; padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #555; max-width: 1100px; margin: 0 auto;
}

/* Mobil Layout 1 — Kompakt Katmanlı */
@media (max-width: 620px) {
  .fc-main {
    display: flex; flex-direction: column; gap: 0;
    padding: 28px 24px 20px;
  }
  .fc-brand {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 22px; border-bottom: 1px solid #2a2a2c; margin-bottom: 22px;
  }
  .fc-brand-logo { font-size: 19px; margin-bottom: 0; white-space: nowrap; flex-shrink: 0; }
  .fc-brand-desc { font-size: 11.5px; color: #777; line-height: 1.5; max-width: none; }
  .fc-hizmetler { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #2a2a2c; }
  .fc-hizmetler .fc-links-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
  }
  .fc-hizmetler .fc-links-grid a {
    font-size: 13.5px; padding: 6px 0; min-height: 44px;
    display: flex; align-items: center;
  }
  
  
  .fc-col a { font-size: 13.5px; padding: 6px 0; min-height: 44px; display: flex; align-items: center; }
  .fc-bottom {
    padding: 16px 24px; flex-direction: column; gap: 4px;
    text-align: center; font-size: 11px;
  }
}

/* Mobil: Şehirler + Bilgi yan yana */
.fc-two-col { display: contents; }
@media (max-width: 620px) {
  .fc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
}