/* ══════════════════════════════════════════════════════════════════════
   ONAYLI TASARIM KATMANI

   KAYNAK: 4-TASARIM/ · onaylı tema (`thz-tema.css`) — OLDUĞU GİBİ alındı.
   Değer değiştirilmedi, sadeleştirilmedi, yeniden yorumlanmadı.

   `thz.css` (token/bileşen katmanı) SONRA yüklenmez; bu dosya en sonda
   yüklenir ve public başlık/altbilgi/ana sayfa/hizmet sayfası
   görünümünü tanımlar. Yönetim paneli bu dosyayı OKUMAZ.

   Eski temanın `style.min.css` bağımlılığı YOK: bu dosya kendi kendine
   yeter. `eg-*` ikon fontu yerine satır içi SVG kullanılıyor
   (bkz. src/Design/Icon.php).
   ══════════════════════════════════════════════════════════════════════ */

/* =====================================================================
   TAKİPÇİ HİZMET — Yeni tema (v1)
   Koyu tema varsayılan. html[data-theme="light"] açık tema.
   Eski style.min.css yüklenmeye devam eder (sepet, profil, araçlar,
   blog iç sayfaları için); bu dosya ONDAN SONRA yüklenir ve
   header/footer/anasayfa/kategori sayfasını yeniden tanımlar.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&family=Outfit:wght@300;700&family=Poppins:wght@500;600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --t-bg: #131519;
  --t-card: #1B1E24;
  --t-card2: #22262E;
  --t-line: #2A2F38;
  --t-ink: #F1F3F5;
  --t-ink2: #CFD5DC;
  --t-mute: #98A2AD;
  --t-brand: #22B573;
  --t-brand-d: #1A9A60;
  --t-brand-l: rgba(34, 181, 115, .14);
  --t-red: #FF5A5F;
  --t-org: #FF9A57;
  --t-gold: #F5C451;
  --t-yel: #221E12;
  --t-yelb: #4A3F1E;
  --t-green-deep: #0F2A22;
  /* Kontrast jetonları (denetim, metin maddeleri): marka yeşili ve sarı
     bant iki temada TERS parlaklıkta. Metin rengi jetona bağlandı ki
     tek bir sabit renk bir temada geçip diğerinde düşmesin. */
  --t-on-brand: #08301F;   /* #22B573 üstünde 5,45:1 */
  --t-gold-ink: #F5C451;   /* #221E12 üstünde 10,22:1 */
  --t-radius: 14px;
  --t-font-head: 'Poppins', 'Trebuchet MS', Arial, sans-serif;
  --t-font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  /* Eski temanın değişkenlerini yeni paletle ez */
  --primary: var(--t-brand);
  --primary-dark: var(--t-brand-d);
  --main-color: var(--t-brand);
}
html[data-theme="light"] {
  --t-bg: #F4F5F6; --t-card: #FFFFFF; --t-card2: #F7F8F9; --t-line: #E3E7EB;
  --t-ink: #1B1F24; --t-ink2: #2B333B; --t-mute: #5F6B76;
  --t-brand: #0B7A55; --t-brand-d: #075C40; --t-brand-l: #E6F4EE;
  --t-red: #D62828; --t-org: #E8590C; --t-yel: #FFF8E6; --t-yelb: #F3E2AE; --t-gold: #B8860B;
  --t-on-brand: #FFFFFF;   /* #0B7A55 üstünde 5,34:1 */
  --t-gold-ink: #7A5200;   /* #FFF8E6 üstünde 6,53:1 */
}

/* ---------- Temel ---------- */
html { background: var(--t-bg); }
body {
  margin: 0; background: var(--t-bg) !important; color: var(--t-ink);
  font-family: var(--t-font-body); font-size: 15px; line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.thz-site { min-height: 100vh; }
.thz-wrap { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
h1, h2, h3, h4, .thz-h { font-family: var(--t-font-head); letter-spacing: -.01em; margin: 0; color: var(--t-ink); }
a { color: var(--t-brand); text-decoration: none; }
a:hover { color: var(--t-brand-d); }
.thz-card { background: var(--t-card); border: 1px solid var(--t-line); border-radius: var(--t-radius); }
.thz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 18px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 1px solid transparent; cursor: pointer; font-family: inherit; white-space: nowrap; transition: transform .12s ease, background .15s ease; }
.thz-btn:hover { transform: translateY(-1px); }
.thz-btn--p { background: var(--t-brand); color: #fff !important; }
.thz-btn--p:hover { background: var(--t-brand-d); }
.thz-btn--o { background: var(--t-card); color: var(--t-ink) !important; border-color: var(--t-line); }
.thz-btn--w { background: #fff; color: var(--t-green-deep) !important; }
/* İKİNCİL BUTON: fotoğraf üzerinde %10 beyaz zemin okunmuyordu — hem
   koyu hem açık temada "pasif buton" gibi duruyordu. Beyaz kontur
   belirginleştirildi, zemin koyulaştırıldı (denetim, madde 06). */
.thz-btn--ghost {
  background: rgba(10, 14, 18, .55);
  color: #fff !important;
  border-color: rgba(255, 255, 255, .72);
  backdrop-filter: blur(2px);
}
.thz-btn--ghost:hover { background: rgba(10, 14, 18, .72); border-color: #fff; }
.thz-badge { display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.thz-badge--org { background: #3A2416; color: var(--t-org); }
.thz-badge--grn { background: var(--t-brand-l); color: var(--t-brand); }
.thz-badge--red { background: #3A1A1C; color: var(--t-red); }
.thz-badge--gry { background: #262B33; color: #B0B8C2; }
.thz-badge--gold { background: var(--t-gold); color: var(--t-green-deep); }
.thz-price { font-family: var(--t-font-head); font-weight: 700; }
.thz-ico { display: inline-flex; width: 20px; height: 20px; flex: none; }
.thz-ico svg { width: 100%; height: 100%; }
.thz-tile { width: 36px; height: 36px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex: none; color: #fff; font-size: 18px; }
.thz-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
[hidden] { display: none !important; }

/* ---------- Üst bar ---------- */
.thz-topbar { background: var(--t-green-deep); color: #CFE9DD; font-size: 13px; }
.thz-topbar .thz-wrap { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.thz-topbar__l, .thz-topbar__r { display: flex; gap: 18px; align-items: center; }
.thz-topbar a { color: #CFE9DD; }
.thz-topbar a:hover { color: #fff; }
.thz-topbar__item { display: inline-flex; gap: 6px; align-items: center; }
/* "Sistem aktif · siparişler otomatik başlıyor" DEĞERLİ bir güven
   sinyali ama 13 px gövde metni olarak diğer bağlantıların arasında
   kayboluyordu (denetim, madde 11). Kontrast zaten 11.9:1 idi; sorun
   kontrast değil AYIRT EDİLEBİLİRLİKTİ. Küçük bir hap, beyaz metin ve
   yeşil nokta ile ayrılıyor — punto büyütülmüyor, çubuk 34 px kalıyor. */
.thz-topbar__item--durum {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 600;
}
.thz-topbar__item--durum .thz-dot { box-shadow: 0 0 0 3px rgba(29, 185, 84, .25); }
.thz-dot { width: 7px; height: 7px; border-radius: 50%; background: #1DB954; display: inline-block; }

/* ---------- Logo (HTML yazı markası — sticker stili) ---------- */
.thz-logo { display: flex; align-items: center; gap: 10px; color: var(--t-ink); flex: none; text-decoration: none; }
.thz-logo__txt { display: flex; flex-direction: column; line-height: 1; }
/* YAZI MARKASI — 2026-09 logo seti.
   Eski hâl Baloo 2 800 idi; krem kontur (`-webkit-text-stroke`) ve i
   üstünde altın nokta taşıyordu. Yeni mark düz ve sade olduğu için o
   süslemeler yan yana durunca iki ayrı tasarım dili gibi görünüyordu.
   Yeni yazı: Outfit — "takipçi" 300, "hizmet" 700, kontursuz, tek renk.
   Renk temadan geliyor (`--t-ink`), böylece açık/koyu temada ayrı kural
   gerekmiyor. */
.thz-wm { font-family: 'Outfit', var(--t-font-head); font-weight: 300; font-size: 30px; line-height: 1; letter-spacing: -.005em; color: var(--t-ink); white-space: nowrap; display: inline-flex; align-items: baseline; }
.thz-wm__b { font-weight: 700; }
.thz-logo__sub { font-family: var(--t-font-head); font-size: 9.5px; letter-spacing: .22em; color: var(--t-mute); font-weight: 600; margin-top: 4px; padding-left: 3px; }
.thz-logo--footer .thz-wm { font-size: 26px; }
/* Mobilde yazı küçülür. `-webkit-text-stroke-width: 4px` KALDIRILDI:
   yeni yazı markası kontursuz, ama kalınlık bildirimi kalınca tarayıcı
   konturu `currentColor` ile çiziyor ve harfler şişip birbirine
   giriyordu (canlıda mobil görünümde yakalandı). */
@media (max-width: 768px) { .thz-wm { font-size: 24px; } .thz-logo__sub { display: none; } }

/* ---------- Ana header ---------- */
.thz-header { background: var(--t-card) !important; border-bottom: 1px solid var(--t-line) !important; position: relative !important; top: auto !important; z-index: 60; padding: 0 !important; border-radius: 0 !important; display: block !important; width: auto !important; font-size: inherit !important; }
.thz-header__row { display: flex; align-items: center; gap: 26px; height: 80px; min-width: 0; }
/* Dar ekranda aradaki boşluk da daralsın; 26 px sabit boşluk üç öge
   arasında 52 px yiyordu. */
@media (max-width: 1100px) { .thz-header__row { gap: 14px; } }
.thz-nav .thz-wrap > * { min-width: 0; }
/* `overflow: hidden` → `visible`. Kutunun ALTINA açılan öneri listesi
   kırpılıyordu; mutlak konumlu torun da `overflow: hidden` ile kesilir.
   Köşe yuvarlaması artık uçlardaki iki çocukta (2 px kenarlık içinde
   10 − 2 = 8 px), görünüm birebir aynı. */
/* `min-width: 0` ŞART: esnek kutu çocuğunun varsayılan `min-width: auto`
   değeri, içindeki kategori seçicisi ve düğmenin min-content genişliğini
   satıra dayatıyor ve arama kutusu KÜÇÜLEMİYORDU. Sonuç: 769-1100 px
   arasında başlık satırı sarmalayıcıyı geriyor ve sayfanın tamamı taşıyordu. */
.thz-search { position: relative; flex: 1; min-width: 0; display: flex; height: 46px; border: 2px solid var(--t-brand); border-radius: 10px; background: var(--t-bg); cursor: pointer; }
.thz-search__cat { position: relative; display: flex; align-items: center; gap: 6px; padding: 0 12px 0 14px; background: var(--t-card2); border-right: 1px solid var(--t-line); border-radius: 8px 0 0 8px; font-size: 14px; font-weight: 600; white-space: nowrap; color: var(--t-ink); }
/* Kategori seçici gerçek bir <select>: görünümü korumak için kendi okunu
   gizleyip temanın okunu kullanıyoruz. JavaScript'e ihtiyaç yok — seçili
   metin ve klavye/ekran okuyucu davranışı native gelir. */
.thz-search__cat select { appearance: none; -webkit-appearance: none; -moz-appearance: none; border: 0; background: none; color: inherit; font: inherit; font-weight: 600; padding: 0 2px; cursor: pointer; max-width: 150px; }
.thz-search__cat select:focus-visible { outline: 2px solid var(--t-brand); outline-offset: 2px; border-radius: 4px; }
.thz-search__cat svg { pointer-events: none; opacity: .7; flex: none; }
.thz-search__in { flex: 1; display: flex; align-items: center; padding: 0 14px; color: var(--t-mute); font-size: 14px; overflow: hidden; white-space: nowrap; }
.thz-search__btn { width: 60px; background: var(--t-brand); display: flex; align-items: center; justify-content: center; color: #fff; border: 0; border-radius: 0 8px 8px 0; }

/* ── Arama önerileri ──────────────────────────────────────────────────
   Kutunun altına açılan liste. Betik yüklenmezse bu kutu hiç
   basılmıyor; kutu eskisi gibi forma dönüşüyor.                       */
.thz-oneri {
  position: absolute; z-index: 60;
  inset-inline: -2px; top: calc(100% + 6px);
  max-height: 60vh; overflow-y: auto;
  background: var(--t-card); border: 1px solid var(--t-line); border-radius: 10px;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .55);
  padding: 6px;
  cursor: default;
}
.thz-oneri__s {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 12px; border-radius: 7px;
  color: var(--t-ink); text-decoration: none;
}
.thz-oneri__s b { font-size: 14px; font-weight: 600; }
.thz-oneri__s span { font-size: 12px; color: var(--t-mute); }
.thz-oneri__s[data-tip='arac'] span { color: var(--t-brand); }
.thz-oneri__s:hover,
.thz-oneri__s[aria-selected='true'] { background: var(--t-card2); }
.thz-oneri__s:focus-visible { outline: 2px solid var(--t-brand); outline-offset: -2px; }
.thz-acts { display: flex; gap: 20px; align-items: center; flex: none; }
.thz-act { display: flex; gap: 8px; align-items: center; color: var(--t-ink); border: 0; background: transparent; cursor: pointer; padding: 0; font-family: inherit; }
.thz-act .thz-ico { width: 24px; height: 24px; color: var(--t-brand); }
.thz-act__t { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.thz-act__t small { font-size: 12px; color: var(--t-mute); }
.thz-act__t b { font-size: 14px; }
.thz-act--cart { padding: 8px 12px; border-radius: 10px; background: var(--t-brand-l); }
.thz-act--cart .thz-cartwrap { position: relative; display: inline-flex; }
.thz-act--cart .count { position: absolute; top: -8px; right: -10px; width: 20px; height: 20px; border-radius: 50%; background: var(--t-red-d, #C62828); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.thz-tema-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--t-line); background: var(--t-card2); color: var(--t-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---------- Kategori barı + mega menü ---------- */
.thz-nav { background: var(--t-card); border-bottom: 1px solid var(--t-line); }
.thz-nav .thz-wrap { display: flex; align-items: center; justify-content: space-between; }
/* `flex: none` ŞART. Bunsuz `.thz-nav__list` esnek bir öğe olarak
   içeriğinin altına SIKIŞIYORDU: ölçümde 1100 px'te listenin
   `scrollWidth`i 865, `clientWidth`i 863 — son madde ("Blog") kutunun
   dışına taşıp sağdaki "Ücretsiz Araçlar" düğmesinin ALTINA giriyordu.
   Ekran görüntüsündeki çakışmanın sebebi buydu; taşma sayfa düzeyinde
   görünmediği için ölçümlerde de yakalanmıyordu.

   Sıkışma kapatılınca yer gerçekten yetmediğinde bar taşar — bu yüzden
   aşağıdaki `data-plat-sira` eşikleri ölçüme göre yeniden konuldu. */
.thz-nav__list { display: flex; list-style: none; margin: 0; padding: 0; flex: none; min-width: 0; }
.thz-nav__item { position: relative; }
.thz-nav__link { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 12px; color: var(--t-ink); font-weight: 600; font-size: 14px; white-space: nowrap; border-bottom: 3px solid transparent; }
.thz-nav__link i { font-size: 18px; color: var(--c, var(--t-brand)); }
.thz-nav__item:hover > .thz-nav__link, .thz-nav__item.is-active > .thz-nav__link { color: var(--t-brand); border-bottom-color: var(--t-brand); }
.thz-nav__r { display: flex; gap: 6px; flex: none; }
.thz-nav__pill { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.thz-nav__pill--red { color: var(--t-red); }
.thz-nav__pill--grn { background: var(--t-brand-l); color: var(--t-brand); }
/* Araç düğmesi 32px, bar 46px: kabuk barın tamamını kaplamazsa
   `.thz-mega { top: 100% }` 32px'te açılır ve kartla bar arasında
   14px'lik ölü boşluk kalır — imleç oradan geçerken menü kapanır. */
.thz-nav__item--arac { display: flex; align-items: center; height: 46px; }
.thz-nav__item--arac > .thz-nav__pill { position: relative; z-index: 1; }
.thz-nav__item--arac:hover > .thz-nav__pill,
.thz-nav__item--arac:focus-within > .thz-nav__pill { background: var(--t-brand); color: #fff; }
.thz-nav__item--arac:hover > .thz-nav__pill .thz-badge,
.thz-nav__item--arac:focus-within > .thz-nav__pill .thz-badge { background: rgba(255,255,255,.22); color: #fff; }
.thz-nav__pill .thz-badge { height: 18px; font-size: 11px; background: var(--t-card); color: var(--t-brand); }
.thz-mega { position: absolute; left: 0; top: 100%; min-width: 760px; background: var(--t-card); border: 1px solid var(--t-line); border-radius: 0 0 14px 14px; box-shadow: 0 24px 60px rgba(0,0,0,.45); padding: 18px; display: none; z-index: 70; }
.thz-nav__item:hover > .thz-mega, .thz-nav__item:focus-within > .thz-mega,
.thz-nav__item.is-open > .thz-mega { display: block; }
.thz-mega__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.thz-mega__item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; color: var(--t-ink); font-size: 14px; font-weight: 600; }
.thz-mega__item:hover { background: var(--t-card2); color: var(--t-ink); }
.thz-mega__item i { width: 30px; height: 30px; border-radius: 8px; background: var(--item-color, var(--t-brand)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }
.thz-mega--tools { min-width: 980px; max-width: min(1180px, calc(100vw - 32px)); left: auto; right: 0; border-radius: 14px 0 14px 14px; }
.thz-mega--tools .thz-mega__col { min-width: 0; }
.thz-mega__col a.thz-mega__link span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.thz-mega__col a.thz-mega__link svg { width: 13px; height: 13px; flex: none; color: var(--plat, var(--t-brand)); }
.thz-mega__col-title { text-decoration: none; }
.thz-mega__col-title:hover { color: var(--plat, var(--t-brand)); }
.thz-mega__col-title i { flex: none; }
.thz-mega__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.thz-mega__col-title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--t-ink); padding: 6px 8px; border-bottom: 2px solid var(--plat, var(--t-brand)); margin-bottom: 6px; }
.thz-mega__col-title i { color: var(--plat, var(--t-brand)); font-size: 17px; }
.thz-mega__col a.thz-mega__link { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; color: var(--t-ink2); font-size: 13px; }
.thz-mega__col a.thz-mega__link:hover { background: var(--t-card2); color: var(--t-ink); }
.thz-mega__col a.thz-mega__link i { color: var(--plat, var(--t-brand)); font-size: 14px; }
.thz-mega__more { display: block; padding: 6px 8px; font-size: 12px; font-weight: 700; color: var(--t-brand); }
.thz-mega__all { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; height: 40px; border-radius: 8px; background: var(--t-brand-l); color: var(--t-brand); font-weight: 700; }

/* ---------- Canlı sipariş şeridi ---------- */
.thz-live { background: var(--t-card); border-bottom: 1px solid var(--t-line); overflow: hidden; }
.thz-live .thz-wrap { display: flex; align-items: center; height: 40px; }
.thz-live__lbl { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--t-red); padding-right: 16px; border-right: 1px solid var(--t-line); flex: none; }
.thz-live__lbl .thz-dot { background: var(--t-red); }
.thz-live__track { display: flex; overflow: hidden; flex: 1; -webkit-mask: linear-gradient(90deg, #000 90%, transparent); mask: linear-gradient(90deg, #000 90%, transparent); }
.thz-live__row { display: flex; width: max-content; animation: thzLive 60s linear infinite; }
.thz-live__track:hover .thz-live__row { animation-play-state: paused; }
@keyframes thzLive { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.thz-live__it { display: inline-flex; align-items: center; gap: 8px; padding: 0 20px; border-right: 1px solid var(--t-line); font-size: 13px; white-space: nowrap; }
.thz-live__it .thz-tile { width: 20px; height: 20px; border-radius: 5px; font-size: 11px; }
.thz-live__it b { color: var(--t-ink); }
.thz-live__it .m { color: var(--t-mute); }
.thz-live__it .ok { color: #1DB954; font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .thz-live__row { animation: none; } }

/* ---------- Hero ---------- */
.thz-hero { display: grid; grid-template-columns: 1fr 300px; gap: 16px; margin-top: 18px; }
.thz-hero__main { position: relative; border-radius: 16px; overflow: hidden; height: 440px; background: #0F1A16; color: #fff; display: flex; align-items: center; }
.thz-hero__slide { position: absolute; inset: 0; background-size: cover; background-position: right center; background-repeat: no-repeat; opacity: 0; transition: opacity .6s ease; }
.thz-hero__slide.is-on { opacity: 1; }
.thz-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,21,25,.95) 0%, rgba(15,21,25,.85) 40%, rgba(15,21,25,.3) 60%, rgba(15,21,25,0) 78%); }
.thz-hero__txt { position: relative; padding: 0 44px; max-width: 560px; display: flex; flex-direction: column; gap: 14px; }
.thz-hero__kicker { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 700; letter-spacing: .06em; color: #CFE9DD; }
.thz-hero__kicker .thz-tile { background: var(--t-brand); width: 38px; height: 38px; }
.thz-hero__txt h1 { font-size: 40px; line-height: 1.05; font-weight: 700; color: #fff; }
.thz-hero__txt h1 i { display: none; }
.thz-hero__txt h2 { font-size: 16px; font-weight: 400; color: #CFD5DC; font-family: var(--t-font-body); }
.thz-hero__txt p { margin: 0; color: #CFD5DC; font-size: 15px; }
.thz-hero__ctas { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.thz-hero__ctas .thz-btn { height: 48px; }
.thz-hero__ticks { display: flex; gap: 18px; margin-top: 8px; font-size: 13px; color: #CFD5DC; flex-wrap: wrap; }
.thz-hero__ticks span { display: inline-flex; gap: 6px; align-items: center; }
.thz-hero__ticks svg { width: 14px; height: 14px; color: var(--t-brand); }
.thz-hero__dots { position: absolute; left: 44px; bottom: 22px; display: flex; gap: 6px; }
.thz-hero__dots button { width: 6px; height: 6px; border-radius: 3px; border: 0; padding: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: width .2s; }
.thz-hero__dots button.is-on { width: 22px; background: #fff; }
.thz-hero__arr { position: absolute; right: 14px; bottom: 14px; display: flex; gap: 6px; }
.thz-hero__arr button { width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(0,0,0,.45); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.thz-hero__side { display: flex; flex-direction: column; gap: 16px; }
.thz-hero__phonecard { flex: 1; overflow: hidden; position: relative; background: linear-gradient(160deg, #0F2A22, #16352B); border-color: #1F4A3B; display: flex; flex-direction: column; min-height: 260px; }
.thz-hero__phonecard .t { padding: 16px 16px 0; display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.thz-hero__phonecard .t b { font-size: 15px; color: #fff; }
/* Kartın zemini her iki temada da koyu yeşil degrade; alt satır
   #9FC7B4 ile 1,70:1'e düşüyordu (denetim). */
.thz-hero__phonecard .t span { font-size: 12px; color: #CFE6DA; }
.thz-hero__phonecard .thz-phone { position: absolute; left: 46%; top: 70px; transform: translateX(-50%); }
/* ── ANALİZ KUTUSU ──────────────────────────────────────────────────
   Eski `.thz-hero__toolcard` (tek araca giden düz bağlantı) yerine.
   Sarı zemin ve kontrast değerleri denetimden geldiği gibi korundu;
   değişen yalnızca içerik: ikon + iki satır + gerçek form. */
.thz-hero__analiz {
  flex: 0 0 auto; padding: 16px; display: grid; gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  color: var(--t-ink); background: var(--t-yel); border-color: var(--t-yelb);
}
.thz-hero__ai {
  grid-row: 1; width: 46px; height: 46px; border-radius: 10px; background: #111;
  display: inline-flex; align-items: center; justify-content: center;
}
.thz-hero__ai svg { width: 22px; height: 22px; color: var(--t-gold); }
.thz-hero__at { grid-row: 1; display: flex; flex-direction: column; min-width: 0; }
.thz-hero__at b { font-size: 15px; }
/* Sarı bantta altın sarısı metin 3,07:1 idi; aynı sıcak tonun koyu
   ucu kullanılıyor (denetim). */
.thz-hero__at span { font-size: 13px; color: var(--t-gold-ink); }

/* Form iki sütunu da kaplar: dar ekranda ikonun altına sıkışmasın. */
.thz-hero__af {
  grid-column: 1 / -1; position: relative;
  display: flex; align-items: center; gap: 8px;
  background: var(--t-card); border: 1px solid var(--t-yelb); border-radius: 10px;
  padding: 4px 4px 4px 28px; min-height: 44px;
}
.thz-hero__aat { position: absolute; left: 12px; color: var(--t-mute); font-weight: 700; }
.thz-hero__ain {
  flex: 1; min-width: 0; border: 0; background: transparent; color: var(--t-ink);
  font: inherit; font-size: 14px; padding: 0;
}
.thz-hero__ain:focus { outline: none; }
.thz-hero__af:focus-within { outline: 2px solid var(--t-brand); outline-offset: 2px; }
.thz-hero__ab {
  flex: none; min-height: 36px; padding: 0 14px; border: 0; border-radius: 8px;
  background: #111; color: #fff; font-weight: 700; font-size: 13px; cursor: pointer;
  white-space: nowrap;
}
.thz-hero__ab:hover { background: #000; }
.thz-hero__an { grid-column: 1 / -1; font-size: 12px; color: var(--t-gold-ink); }

/* Telefon mockup (CSS/HTML) */
.thz-phone { position: relative; width: 144px; height: 288px; flex: none; font-size: 6px; --s: .48; }
.thz-phone__body { position: absolute; inset: 0; border-radius: 21px; background: #111; box-shadow: 0 30px 60px rgba(0,0,0,.35), inset 0 0 0 2px #333; }
.thz-phone__scr { position: absolute; inset: 5px; border-radius: 17px; background: #fff; overflow: hidden; display: flex; flex-direction: column; color: #111; font-family: var(--t-font-body); }
.thz-phone__top { height: 19px; }
.thz-phone__hd { display: flex; justify-content: space-between; align-items: center; padding: 0 8px 5px; font-weight: 700; font-size: 7px; }
.thz-phone__prof { display: flex; align-items: center; gap: 7px; padding: 0 8px; }
.thz-phone__ava { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #0B7A55, #7ED3B2); padding: 2px; flex: none; }
.thz-phone__ava span { display: block; width: 100%; height: 100%; border-radius: 50%; background: #E8EFEB; border: 2px solid #fff; box-sizing: border-box; }
.thz-phone__stats { flex: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); text-align: center; }
.thz-phone__stats b { font-size: 7px; display: block; }
.thz-phone__stats span { color: #555; font-size: 5.5px; }
.thz-phone__bio { padding: 5px 8px 0; line-height: 1.35; font-size: 5.8px; }
.thz-phone__bio .lnk { color: #0B7A55; }
.thz-phone__btns { display: flex; gap: 3px; padding: 5px 8px; }
.thz-phone__btns span { flex: 1; height: 14px; border-radius: 3px; background: #EFEFEF; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 6px; }
.thz-phone__btns span.p { background: #0B7A55; color: #fff; }
.thz-phone__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; flex: 1; border-top: 1px solid #EEE; padding-top: 1px; }
.thz-phone__grid i { display: block; aspect-ratio: 1; background: #C9D6CF; }
.thz-phone__grid i:nth-child(2n) { background: #A9C1B4; }
.thz-phone__grid i:nth-child(3n) { background: #DDE6E1; }
.thz-phone__chip { position: absolute; background: #fff; border-radius: 8px; padding: 4px 7px; box-shadow: 0 10px 30px rgba(0,0,0,.18); display: flex; align-items: center; gap: 4px; font-weight: 800; font-size: 8px; color: #0B7A55; white-space: nowrap; font-family: var(--t-font-head); }
.thz-phone__chip--r { right: -20px; top: 72px; }
.thz-phone__chip--l { left: -22px; bottom: 58px; color: #1B1F24; font-weight: 700; font-family: var(--t-font-body); font-size: 7px; }
.thz-phone__chip--l::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #1DB954; }

/* ---------- Güven şeridi ---------- */
.thz-trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--t-line); border-radius: var(--t-radius); background: var(--t-card); overflow: hidden; margin-top: 16px; }
.thz-trust__c { display: flex; gap: 12px; align-items: center; padding: 16px 18px; }
.thz-trust__c + .thz-trust__c { border-left: 1px solid var(--t-line); }
.thz-trust__i { width: 42px; height: 42px; border-radius: 50%; background: var(--t-brand-l); display: flex; align-items: center; justify-content: center; flex: none; color: var(--t-brand); }
.thz-trust__i svg { width: 22px; height: 22px; }
.thz-trust__c b { font-size: 14px; display: block; }
.thz-trust__c span { font-size: 12px; color: var(--t-mute); }

/* ---------- Bölüm başlığı ---------- */
.thz-sec { margin-top: 36px; }
.thz-sec__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; gap: 12px; }
/* `h1` de aynı ölçüde: platform ve blog dizinlerinde başlık `h2` idi ve
   sayfada hiç birinci düzey başlık yoktu. Etiket düzeltildi, GÖRÜNÜM
   AYNI kaldı (denetim, metin maddeleri). */
.thz-sec__head h1,
.thz-sec__head h2 { font-size: 22px; margin: 0; line-height: 1.2; }
.thz-sec__head .s { color: var(--t-mute); font-size: 14px; display: block; }
.thz-sec__more { font-weight: 700; display: inline-flex; align-items: center; gap: 4px; font-size: 14px; white-space: nowrap; }
.thz-sec__more svg { width: 16px; height: 16px; }
.thz-chips { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.thz-chip { height: 34px; padding: 0 14px; border-radius: 17px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; background: var(--t-card); border: 1px solid var(--t-line); color: var(--t-ink); cursor: pointer; font-family: inherit; }
.thz-chip.is-active { background: var(--t-ink); color: var(--t-bg); border-color: var(--t-ink); }

/* ---------- Ürün kartı ---------- */
.thz-grid5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.thz-grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.thz-grid6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.thz-prod { display: flex; flex-direction: column; color: var(--t-ink); overflow: hidden; position: relative; transition: transform .15s ease, border-color .15s ease; }
.thz-prod:hover { transform: translateY(-2px); border-color: var(--t-brand); }
.thz-prod__img { position: relative; height: 140px; background: linear-gradient(135deg, var(--c1, #F58529), var(--c2, #DD2A7B) 55%, var(--c3, #8134AF)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.thz-prod__img::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.08); right: -70px; top: -90px; }
.thz-prod__img::after { content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.06); left: -40px; bottom: -60px; }
.thz-prod__img .thz-badge { position: absolute; left: 10px; top: 10px; z-index: 1; }
.thz-prod__img .disc { position: absolute; left: 10px; top: 10px; background: #fff; color: #D62828; font-weight: 800; font-size: 12px; padding: 3px 7px; border-radius: 4px; font-family: var(--t-font-head); z-index: 1; }
.thz-prod__img .disc + .thz-badge { left: auto; right: 10px; }
.thz-prod__imgin { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; text-align: center; position: relative; }
.thz-prod__imgin i { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 22px; }
/* Öne çıkan paketin adı — çıplak sayı yerine ("500 Reels İzlenme").
   Tek başına duran "50" kartın ne sattığını anlatmıyordu.
   En uzun ad 30 karakter; iki satırda kesiliyor, taşma yapmıyor. */
.thz-prod__pkg {
  font-family: var(--t-font-head); font-weight: 800; font-size: 19px; line-height: 1.2;
  letter-spacing: -.01em; max-width: 15ch; text-wrap: balance;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.thz-prod__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.thz-prod__plat { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--t-mute); text-transform: uppercase; }
.thz-prod__title { font-size: 15px; line-height: 1.3; min-height: 38px; font-weight: 700; color: var(--t-ink); }
.thz-prod__old { display: flex; gap: 6px; align-items: center; min-height: 19px; }
.thz-prod__old s { color: var(--t-mute); font-size: 13px; }
.thz-prod__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: auto; }
/* Fiyat bloğu daralabilsin, sepet düğmesi daralmasın: "KDV dahil ·
   sabit fiyat" satırı düğmenin altına girip kesiliyordu
   (denetim, madde 03). */
.thz-prod__price { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.thz-prod__price > span { display: block; white-space: normal; }
.thz-prod__price .thz-price { font-size: 21px; line-height: 1; }
.thz-prod__price small { font-size: 12px; color: var(--t-mute); margin-top: 3px; }
.thz-prod__buy { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--t-brand); color: #fff !important; display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer; }
.thz-prod__buy svg { width: 18px; height: 18px; }
.thz-prod__buy.buy-passive { background: var(--t-line); cursor: not-allowed; }
.thz-prod__meta { display: flex; gap: 10px; font-size: 12px; color: var(--t-mute); border-top: 1px solid var(--t-line); padding-top: 8px; margin-top: 2px; flex-wrap: wrap; }
.thz-prod__meta span { display: inline-flex; gap: 4px; align-items: center; }
.thz-prod__meta svg { width: 13px; height: 13px; }
.thz-prod[data-platform] .thz-prod__img { --c1: var(--pc1); --c2: var(--pc2); --c3: var(--pc3); }

/* KOYU MARKA ZEMİNLERİ (denetim, madde 05).
   TikTok ve X'in marka rengi neredeyse siyah: koyu temada kart boş
   görünüyor, açık temada beyaz sayfada iri siyah dikdörtgen oluyordu.
   Zemin marka renginin ince bir tonuna iniyor, glif tam renkte kalıyor,
   kutuya ince kontur geliyor. Instagram/YouTube gibi canlı markalar
   etkilenmez — kural yalnızca açıklığı düşük renklere uygulanır. */
.thz-prod__img[data-koyu='true'] {
  background:
    linear-gradient(135deg,
      color-mix(in oklab, var(--c1) 12%, var(--card)),
      color-mix(in oklab, var(--c1) 6%, var(--card)));
  border-bottom: 1px solid var(--line);
}
.thz-prod__img[data-koyu='true']::before,
.thz-prod__img[data-koyu='true']::after { background: color-mix(in oklab, var(--c1) 8%, transparent); }
.thz-prod__img[data-koyu='true'] .thz-prod__imgin { color: var(--ink); }
.thz-prod__img[data-koyu='true'] .thz-prod__imgin i,
.thz-prod__img[data-koyu='true'] .thz-prod__ico {
  background: color-mix(in oklab, var(--c1) 16%, var(--card));
  color: var(--ink);
}
.thz-prod--hidden { display: none; }

/* Platform gradyanları */
[data-plat="instagram"] { --pc1: #F58529; --pc2: #DD2A7B; --pc3: #8134AF; }
[data-plat="tiktok"] { --pc1: #111; --pc2: #2b2b2b; --pc3: #000; }
[data-plat="youtube"] { --pc1: #FF0000; --pc2: #C4302B; --pc3: #8B0000; }
[data-plat="twitter"], [data-plat="x"] { --pc1: #111; --pc2: #333; --pc3: #000; }
[data-plat="facebook"] { --pc1: #1877F2; --pc2: #0E5DC4; --pc3: #0A3F86; }
[data-plat="twitch"] { --pc1: #9146FF; --pc2: #6E2FCF; --pc3: #4B1E99; }
[data-plat="spotify"] { --pc1: #1DB954; --pc2: #169C46; --pc3: #0E6B30; }
[data-plat="telegram"] { --pc1: #229ED9; --pc2: #1B7FB0; --pc3: #135C80; }
[data-plat="pinterest"] { --pc1: #E60023; --pc2: #B3001B; --pc3: #800013; }
[data-plat="linkedin"] { --pc1: #0A66C2; --pc2: #084E96; --pc3: #05356A; }
[data-plat="snapchat"] { --pc1: #FFC800; --pc2: #E0B000; --pc3: #B08A00; }
[data-plat="soundcloud"] { --pc1: #FF5500; --pc2: #D64700; --pc3: #A33600; }
[data-plat="whatsapp"] { --pc1: #25D366; --pc2: #1DA851; --pc3: #128C3E; }
[data-plat="kick"] { --pc1: #53FC18; --pc2: #3FC70F; --pc3: #2A8C0A; }
[data-plat="threads"] { --pc1: #333; --pc2: #111; --pc3: #000; }
[data-plat="tumblr"] { --pc1: #36465D; --pc2: #2A3749; --pc3: #1B2431; }

/* ---------- Promosyon bantları ---------- */
.thz-promos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 36px; }
.thz-promo { position: relative; border-radius: 12px; overflow: hidden; height: 150px; color: #fff; padding: 20px 22px; display: flex; flex-direction: column; justify-content: space-between; }
.thz-promo .k { font-size: 12px; font-weight: 800; letter-spacing: .08em; opacity: .9; }
.thz-promo .t { display: flex; flex-direction: column; max-width: 70%; }
.thz-promo .t b { font-family: var(--t-font-head); font-size: 22px; line-height: 1.1; color: #fff; }
.thz-promo .t span { font-size: 13px; opacity: .9; }
.thz-promo .cta { position: absolute; right: 18px; bottom: 18px; background: #fff; font-weight: 800; padding: 6px 10px; border-radius: 6px; font-size: 13px; }

/* ---------- Kategori kutuları ---------- */
.thz-cat { display: flex; align-items: center; gap: 12px; padding: 12px 14px; color: var(--t-ink); }
.thz-cat .thz-tile { width: 40px; height: 40px; }
.thz-cat b { font-size: 14px; display: block; }
.thz-cat span { font-size: 12px; color: var(--t-mute); white-space: nowrap; }
.thz-cat--all { justify-content: center; color: var(--t-brand); font-weight: 700; border-style: dashed; grid-column: span 2; }

/* ---------- Araçlar + adımlar ---------- */
.thz-two { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-top: 36px; }
.thz-tools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.thz-tool { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--t-line); border-radius: 8px; color: var(--t-ink); background: var(--t-card); }
.thz-tool:nth-child(2n) { background: var(--t-card2); }
.thz-tool .thz-tile { width: 30px; height: 30px; font-size: 15px; }
.thz-tool b { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.thz-tool span { font-size: 12px; color: var(--t-mute); }
.thz-steps { padding: 22px; display: flex; flex-direction: column; gap: 12px; background: var(--t-green-deep); color: #fff; border-color: var(--t-green-deep); }
.thz-steps h2 { color: #fff; font-size: 20px; }
.thz-step { display: flex; gap: 12px; align-items: flex-start; }
.thz-step .n { width: 26px; height: 26px; border-radius: 50%; background: var(--t-gold); color: var(--t-green-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex: none; }
.thz-step b { font-size: 15px; display: block; }
.thz-step span { font-size: 13px; color: #B9D6C8; }

/* ---------- Yorum + blog kartları ---------- */
.thz-rev { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.thz-rev__h { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
/* 320px'te ad + "Onaylı" rozeti tek satıra sığmıyor ve rozet ekranın
   dışında kalıp kesiliyordu. Sarmalama serbest, ad daralabilir. */
.thz-rev__h > :first-child { min-width: 0; }
.thz-rev__h .thz-badge { flex: none; }
.thz-rev__u { display: flex; gap: 10px; align-items: center; }
/* Marka yeşili orta tonlu: üstünde BEYAZ yazı 2,65:1 kalıyor. Koyu
   `--on-brand` bu zemin için tanımlanmış olan renk. */
.thz-rev__a { width: 36px; height: 36px; border-radius: 50%; background: var(--t-brand); color: var(--on-brand, #0f2a22); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.thz-rev__u b { font-size: 14px; display: block; }
.thz-rev__u span:not(.thz-rev__a) { font-size: 12px; color: var(--t-mute); }
.thz-rev p { margin: 0; font-size: 14px; color: var(--t-ink2); line-height: 1.5; }
.thz-rev__f { font-size: 12px; color: var(--t-mute); display: flex; gap: 6px; align-items: center; }
.thz-blog { overflow: hidden; color: var(--t-ink); display: flex; flex-direction: column; }
.thz-blog__img { height: 130px; background: linear-gradient(135deg, var(--g1, #0B7A55), var(--g2, #134634)); background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 12px; }
.thz-blog__img span { background: rgba(255,255,255,.9); color: #1B1F24; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 4px; }
.thz-blog__b { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.thz-blog__b b { font-size: 15px; line-height: 1.3; }
.thz-blog__b span { font-size: 12px; color: var(--t-mute); }

/* ---------- Footer ---------- */
.thz-footer { background: var(--t-card) !important; border-top: 1px solid var(--t-line); margin-top: 56px; padding: 0 !important; color: var(--t-ink) !important; }
main { padding: 0 !important; margin: 0 !important; }
/* ── ÜST SATIR: logo + iletişim kartları ─────────────────────────── */
.f-ust { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px 0 26px; }
.f-logo img { height: 46px; width: auto; display: block; }
.f-iletisim { display: flex; gap: 16px; flex-wrap: wrap; }
.f-kart {
  display: flex; align-items: center; gap: 14px;
  min-height: 68px; padding: 12px 26px 12px 12px;
  border-radius: 999px; border: 1px solid var(--t-line);
  background: var(--t-card2); color: var(--t-ink);
}
.f-kart:hover { color: var(--t-ink); border-color: var(--c, var(--t-brand)); }
.f-kart__i {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c, var(--t-brand)); color: #fff;
  box-shadow: 0 0 22px -4px var(--c, var(--t-brand));
}
.f-kart__i svg { width: 20px; height: 20px; }
.f-kart__t { display: flex; flex-direction: column; min-width: 0; }
.f-kart__t small { font-size: 12px; color: var(--t-mute); }
.f-kart__t b { font-size: 16px; white-space: nowrap; }
.f-kart--wa { --c: #25D366; }
.f-kart--mail { --c: #3b5bfd; }
@media (max-width: 560px) { .f-kart { padding-right: 16px; } .f-kart__t b { font-size: 14px; } }

/* ── SÜTUN GRUPLARI ──────────────────────────────────────────────── */
/* Ölçü: iki sütunlu bir listede "Instagram Hizmetleri" 14 px'te ~150 px
   yer istiyor. Hizmetler grubu 2×(150+dash+gap) ≈ 400 px, araçlar grubu
   biraz daha dar yetiyor. Oranlar buna göre. */
.f-gruplar {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr) minmax(0, 1.2fr);
  gap: 24px 40px;
  padding: 32px 0; border-top: 1px solid var(--t-line);
}
@media (max-width: 1100px) { .f-gruplar { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 700px) { .f-gruplar { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
.f-grup h2 {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--t-line);
  font-size: 13px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.f-grup h2 .thz-ico { color: var(--t-brand); display: inline-flex; }
.f-grup h2 svg { width: 17px; height: 17px; }
.f-liste { display: grid; gap: 13px; font-size: 14px; align-content: start; }
/* SÜTUN SAYISI KENDİLİĞİNDEN. Önce satır sayısı sabitti (6): 16
   maddelik liste üçüncü bir sütun açıyor, her sütun 120 px'e düşüyor
   ve 16 maddenin 16'sı iki satıra sarıyordu. Satır sayısını şablondan
   vermek de yetmedi — 768 px'te sütun 160 px'e iniyor ve en uzun madde
   ("Instagram Hizmetleri" ≈ 150 px + çizgi + boşluk = 172 px) yine
   sarıyordu.

   `auto-fit` + `minmax(180px, …)` eşik tahmini gerektirmiyor: sütun
   180 px'in altına düşecekse ızgara kendiliğinden tek sütuna iner.
   Bir madde uzarsa da kural kendini düzeltir. */
.f-liste--iki { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 13px 28px; }
.f-liste a {
  display: flex; align-items: center; gap: 10px;
  color: var(--t-mute); line-height: 1.35;
}
/* Çizgi metinle birlikte kaymasın: madde sarsa bile ilk satırda kalır. */
.f-liste a::before {
  content: ''; width: 12px; height: 2px; border-radius: 2px;
  background: var(--t-brand); flex: none; opacity: .55;
  transition: width .15s ease, opacity .15s ease;
}
.f-liste a:hover { color: var(--t-ink); }
.f-liste a:hover::before { width: 18px; opacity: 1; }

.f-slogan { margin: 0; padding: 22px 0 0; border-top: 1px solid var(--t-line); color: var(--t-mute); font-size: 14px; }
.f-sosyal { display: flex; gap: 10px; padding: 18px 0 6px; }
.f-sosyal a {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--t-card2); border: 1px solid var(--t-line);
}
.f-sosyal a:hover { border-color: var(--t-brand); }

.f-guven { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 20px 0 26px; }
.f-ssl { background: var(--t-card2) !important; color: var(--t-mute) !important; border: 1px solid var(--t-line); gap: 6px; }
.f-ssl svg { width: 12px; height: 12px; color: var(--t-brand); }
.f-dmca { display: inline-flex; align-items: stretch; border-radius: 5px; overflow: hidden; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.f-dmca span { background: #1DBF73; color: #fff; padding: 6px 10px; }
.f-dmca b { background: var(--t-card2); color: var(--t-ink); padding: 6px 10px; border: 1px solid var(--t-line); border-left: 0; }

.thz-footer__bottom { border-top: 1px solid var(--t-line); }
.f-yasal { display: flex; gap: 8px 18px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 14px 0; font-size: 13px; }
.f-yasal a { color: var(--t-mute); }
.f-yasal a:hover { color: var(--t-ink); }
.f-telif { border-top: 1px solid var(--t-line); text-align: center; padding: 14px 16px; font-size: 13px; color: var(--t-mute); }

.thz-paylogos { display: flex; gap: 6px; flex-wrap: wrap; }
.thz-paylogos span { height: 26px; padding: 0 10px; border-radius: 4px; display: inline-flex; align-items: center; font-weight: 800; font-size: 10px; font-family: var(--t-font-head); letter-spacing: .02em; color: #fff; }

/* ---------- Breadcrumb ---------- */
.thz-crumb__bar { background: transparent; }
.thz-crumb__list { list-style: none; margin: 0 auto; padding: 14px 0 0; width: min(1240px, calc(100% - 32px)); display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--t-mute); flex-wrap: wrap; }
.thz-crumb__item { display: inline-flex; align-items: center; gap: 6px; }
.thz-crumb__item a { color: var(--t-mute); display: inline-flex; align-items: center; gap: 4px; }
.thz-crumb__item a:hover { color: var(--t-ink); }
.thz-crumb__hicon, .thz-crumb__sep svg { width: 14px; height: 14px; }
.thz-crumb__cur { color: var(--t-ink); }

/* ---------- Mobil alt bar + panel ---------- */
.thz-mb { display: none; }
.thz-mb__bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--t-card); border-top: 1px solid var(--t-line); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); padding: 6px 0 calc(8px + env(safe-area-inset-bottom)); }
.thz-mb__it { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; color: var(--t-mute); height: 44px; justify-content: center; background: transparent; border: 0; font-family: inherit; }
.thz-mb__it.is-active { color: var(--t-brand); }
.thz-mb__it svg { width: 22px; height: 22px; }
.thz-mb__it .cnt { position: absolute; margin-left: 22px; margin-top: -26px; width: 18px; height: 18px; border-radius: 50%; background: var(--t-red); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; }
.mb-panel { position: fixed; inset: 0; z-index: 95; background: var(--t-bg); transform: translateY(100%); transition: transform .28s ease; overflow: auto; padding: 16px 16px 90px; }
.mb-panel.open { transform: none; }
body.mb-panel-open { overflow: hidden; }
.mb-panel-close { position: sticky; top: 0; margin-left: auto; width: 40px; height: 40px; border-radius: 50%; background: var(--t-card); border: 1px solid var(--t-line); color: var(--t-ink); display: flex; align-items: center; justify-content: center; }
.mb-block { border: 1px solid var(--t-line); border-radius: 12px; background: var(--t-card); margin-top: 10px; overflow: hidden; }
.mb-title { display: flex; justify-content: space-between; align-items: center; padding: 14px; font-weight: 700; color: var(--t-ink); cursor: pointer; }
.mb-title-left { display: flex; gap: 10px; align-items: center; }
.mb-title-left i { color: var(--c, var(--t-brand)); font-size: 18px; }
.mb-sub { display: none; padding: 0 8px 10px; }
.mb-block.open .mb-sub { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.mb-sub-item { display: flex; gap: 8px; align-items: center; padding: 10px; border-radius: 8px; background: var(--t-card2); color: var(--t-ink); font-size: 13px; font-weight: 600; }
.mb-sub-item i { color: var(--item-color, var(--t-brand)); }
.mb-user { display: flex; gap: 10px; margin-top: 14px; }
.mb-user .thz-btn { flex: 1; }

/* ---------- Float'lar ---------- */
.thz-wa { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.35); font-size: 28px; }

/* ---------- Eski bileşenleri koyu temaya uydur (sepet, profil, kategori, araçlar) ---------- */
.butto.butto-main, .butto-main { background: var(--t-brand) !important; color: #fff !important; border-radius: 10px !important; }
.pack, .service--pack_content .pack, .pack--list .pack, .accordion .item, .article--area, .platform-section, .sepet-modal-icerik, .sepet-urun-listesi .sepet-urun, #sepetPage .card, .order-search-modal, .site-search-modal, .thz-onizleme { background: var(--t-card) !important; color: var(--t-ink) !important; border-color: var(--t-line) !important; }
.form-control, input.form-control, select.form-control, textarea.form-control { background: var(--t-bg) !important; color: var(--t-ink) !important; border-color: var(--t-line) !important; }
.title-heading .title, .intro--page h1, .article--area h2, .article--area h3 { color: var(--t-ink) !important; }
.article--area, .article--area p, .article--area li { color: var(--t-ink2); }

/* ---------- Duyarlılık ---------- */
@media (max-width: 1100px) {
  .thz-grid5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .thz-grid6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .thz-hero { grid-template-columns: 1fr; }
  .thz-hero__side { flex-direction: row; }
  .thz-hero__phonecard { min-height: 220px; }
  .thz-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .thz-trust__c:nth-child(3) { border-left: 0; }
  .thz-trust__c:nth-child(n+3) { border-top: 1px solid var(--t-line); }
  .thz-two { grid-template-columns: 1fr; }
  .thz-mega { min-width: 600px; }
  .thz-mega--tools { min-width: 760px; }
}
/* ── KATEGORİ BARI DAR EKRANDA ────────────────────────────────────────
   769-1279 px arasında SAYFANIN TAMAMI 1280 px'e taşıyordu ve bu her
   sayfada geçerliydi. Sebep kategori barı: dokuz maddesi 1.075 px,
   sağdaki iki hap 190 px, toplam 1.265 px ve hiçbiri sarmıyor ya da
   küçülmüyor. Sarmalayıcı içeriğine göre gerilince `.thz-wrap`ın
   `100% - 32px` hesabı da 1240'a çıkıyor, başlık satırı ve altındaki
   her şey ekranın dışına taşıyordu. Ölçüm: 780-1200 px arası her
   genişlikte `body.scrollWidth` = 1280.

   Bar `overflow-x: auto` ile kaydırılamıyor: mega menü `.thz-nav__item`
   içinde mutlak konumlu ve kaydırma kabı onu kırpar. Bunun yerine
   platformlar SONDAN başlayarak gizleniyor — hepsi zaten "Tüm
   Hizmetler" mega menüsünde ve platform sayfalarında duruyor.

   Eşikler ölçülen genişliklerden: madde genişlikleri Instagram 157,
   Tiktok 134, Youtube 146, Twitter 139, Facebook 154; sabitler "Tüm
   Hizmetler" 169 + Analiz/Sözlük/Blog 176 + sağ haplar 190.            */
/* Bar artık 3 platform basıyor; 4 ve 5 numaralı kurallar ölü kaldığı
   için silindi. Eşikler ÖLÇÜMLE konuldu — üç platformlu bar 1055 px
   yer istiyor, iki platformlu 945, tek platformlu 850. Kenar boşluğu
   32 px olduğundan pencere eşikleri sırasıyla 1100 / 1000 oluyor. */
@media (max-width: 1100px) { .thz-nav__item[data-plat-sira='3'] { display: none; } }
@media (max-width: 1000px) { .thz-nav__item[data-plat-sira='2'] { display: none; } }
/* 800 px'te bar ile araç düğmesi arasında ölçülen boşluk TAM SIFIR:
   taşmıyor ama bir karakter daha eklense taşardı. Analiz/Sözlük/Blog
   ikonları o genişlikte süs; üçünü birden kaldırmak ~78 px kazandırıyor
   ve gezinme maddelerinin hiçbiri gitmiyor. */
@media (max-width: 940px) {
  .thz-nav__item:not([data-plat-sira]):not(.thz-nav__item--sub) .thz-nav__link > .thz-ico { display: none; }
}

/* Başlık satırı da sığmıyordu: logo + arama + sağdaki dört eylem
   (393 px) 1.050 px altında `.thz-wrap`ı geriyordu. Hesap ve sipariş
   eylemlerinin YAZISI gizleniyor, ikonları kalıyor — sepet ve tema
   düğmesi olduğu gibi duruyor. 768 px altında bu eylemler zaten tümden
   gizli. */
@media (max-width: 1100px) {
  .thz-acts .thz-act--user .thz-act__t,
  .thz-acts .thz-act--orders .thz-act__t { display: none; }
  .thz-acts { gap: 12px; }
  .thz-search__cat select { max-width: 92px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .thz-topbar, .thz-nav, .thz-acts .thz-act--user, .thz-acts .thz-act--orders, .thz-search__cat, .thz-live__lbl span.txt, .thz-hero__arr, .thz-wa { display: none; }
  .thz-header__row { height: auto; padding: 12px 0; gap: 10px; flex-wrap: wrap; }
  .thz-search { order: 3; flex: 1 1 100%; height: 44px; }
  .thz-acts { gap: 10px; margin-left: auto; }
  .thz-act--cart { padding: 6px 10px; }
  .thz-act--cart .thz-act__t { display: none; }
  .thz-mb { display: block; }
  .thz-hero__main { height: 300px; align-items: flex-end; }
  .thz-hero__slide { background-position: 75% center; }
  .thz-hero__shade { background: linear-gradient(180deg, rgba(15,21,25,.1) 0%, rgba(15,21,25,.55) 45%, rgba(15,21,25,.96) 100%); }
  .thz-hero__txt { padding: 16px; gap: 8px; }
  .thz-hero__txt h1 { font-size: 24px; }
  .thz-hero__txt h2, .thz-hero__txt p, .thz-hero__ticks, .thz-hero__dots { display: none; }
  .thz-hero__ctas .thz-btn { height: 40px; font-size: 14px; }
  .thz-hero__side { flex-direction: column; }
  .thz-hero__phonecard { min-height: 210px; }
  .thz-grid5, .thz-grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .thz-grid6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .thz-prod__img { height: 96px; }
  .thz-prod__imgin i { display: none; }
  .thz-prod__pkg { font-size: 16px; }
  .thz-prod__title { font-size: 13px; min-height: 34px; }
  .thz-prod__meta { display: none; }
  .thz-promos { grid-template-columns: 1fr; }
  .thz-tools { grid-template-columns: 1fr; }
  /* GÜVEN ŞERİDİ MOBİLDE TEK SÜTUN (denetim, madde 04).
     2x2 ızgarada metin sütunu 130px'e düşüyor ve dört hücrede de
     3-4 satıra sarıyordu; ikon dikeyde ortalı, metin üstten
     başladığı için hizasızdı. */
  .thz-trust { grid-template-columns: 1fr; }
  .thz-trust__c { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 16px; }
  .thz-trust__c + .thz-trust__c { border-left: 0; border-top: 1px solid var(--t-line); }
  .thz-trust__c:nth-child(3) { border-left: 0; }
  .thz-trust__i { width: 34px; height: 34px; }
  .thz-trust__i svg { width: 18px; height: 18px; }
  /* `1fr`in örtük alt sınırı `auto`: uzun bir bağlantı sütunu şişirip
     komşusunu eziyordu (186px / 102px). `minmax(0,…)` eşitliyor. */
  .thz-sec { margin-top: 26px; }
  .thz-sec__head h2 { font-size: 18px; }
}

/* ---------- Çok satan paketler (kompakt yatay kartlar) ---------- */
.thz-populer { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.thz-pop { display: flex; align-items: center; gap: 12px; padding: 12px 14px; }
.thz-pop .thz-tile { width: 40px; height: 40px; border-radius: 10px; font-size: 19px; }
.thz-pop__t { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.thz-pop__plat { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--t-mute); text-transform: uppercase; }
.thz-pop__t b { font-size: 14px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thz-pop__oz { font-size: 12px; color: var(--t-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thz-pop__r { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex: none; }
.thz-pop__r .thz-price { font-size: 16px; white-space: nowrap; }
.thz-pop__r .thz-price .fiyat-eski { font-size: 11px; color: var(--t-mute); text-decoration: line-through; margin-right: 4px; font-weight: 400; }
.thz-pop__r .thz-prod__buy { width: 34px; height: 34px; }
@media (max-width: 1100px) { .thz-populer { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .thz-populer { grid-template-columns: 1fr; } }

/* ---------- Hizmet sayfası: paket kartları (yeni) ---------- */
.thz-paketler { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.thz-pk { display: flex; flex-direction: column; gap: 10px; padding: 18px !important; position: relative; transition: border-color .15s, transform .15s; background: var(--t-card) !important; }
.thz-pk:hover { border-color: var(--t-brand) !important; transform: translateY(-2px); }
.thz-pk--pop { border-color: var(--t-brand) !important; box-shadow: 0 0 0 1px var(--t-brand), 0 18px 40px rgba(34,181,115,.12); }
.thz-pk__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.thz-pk__amount { display: flex; align-items: baseline; gap: 6px; }
.thz-pk__amount .n { font-family: var(--t-font-head); font-weight: 800; font-size: 30px; line-height: 1; letter-spacing: -.02em; color: var(--t-ink); }
.thz-pk__amount .u { font-size: 13px; font-weight: 700; color: var(--t-mute); text-transform: lowercase; }
.thz-pk__name { font-size: 14px; color: var(--t-ink2); font-weight: 600; }
.thz-pk__feat { list-style: none; margin: 0; padding: 10px 0 0; border-top: 1px solid var(--t-line); display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--t-ink2); }
.thz-pk__feat li { display: flex; gap: 8px; align-items: flex-start; }
.thz-pk__feat svg { width: 15px; height: 15px; color: var(--t-brand); flex: none; margin-top: 2px; }
.thz-pk__feat li.more { color: var(--t-mute); font-size: 12px; padding-left: 23px; }
.thz-pk__bottom { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--t-line); display: flex; flex-direction: column; gap: 10px; }
.thz-pk__price { display: flex; flex-direction: column; }
.thz-pk__price .thz-price { font-size: 24px; line-height: 1; }
.thz-pk__price .thz-price .fiyat-eski { font-size: 13px; color: var(--t-mute); text-decoration: line-through; margin-right: 6px; font-weight: 400; }
.thz-pk__price small { font-size: 12px; color: var(--t-mute); margin-top: 3px; }
.thz-pk__buy { height: 46px !important; width: 100%; font-size: 15px !important; }
.thz-pk__buy.buy-passive { background: var(--t-line) !important; color: var(--t-mute) !important; cursor: not-allowed; }
.thz-pk__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--t-mute); }
.thz-pk__meta span { display: inline-flex; gap: 5px; align-items: center; }
.thz-pk.buy-passive { opacity: .7; }
@media (max-width: 1100px) { .thz-paketler { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .thz-paketler { grid-template-columns: 1fr; } }

/* Eski liste görünümü (i_product != 0) koyu tema uyumu */
.pack--list .pack { background: var(--t-card) !important; border: 1px solid var(--t-line) !important; border-radius: 12px !important; color: var(--t-ink) !important; }
.pack--list .pack.selected { border-color: var(--t-brand) !important; box-shadow: 0 0 0 1px var(--t-brand); }
.service--bottom, .selected--pack { background: var(--t-card) !important; border-color: var(--t-line) !important; color: var(--t-ink) !important; }
.pl-tabs .pl-tab { background: var(--t-card) !important; border: 1px solid var(--t-line) !important; color: var(--t-ink) !important; border-radius: 999px !important; }
.pl-tabs .pl-tab.active { background: var(--t-brand) !important; color: #fff !important; border-color: var(--t-brand) !important; }
.intro--page.ip--category { background: var(--t-card) !important; border-bottom: 1px solid var(--t-line); }
@media (max-width: 768px) { .thz-hero__kicker span:last-child { display: none; } .thz-hero__kicker .thz-tile { width: 32px; height: 32px; } }

/* ---------- Marka karakteri: sarı nokta + sticker rozet ---------- */
.thz-sec__head h2::after { content: ""; display: inline-block; width: .32em; height: .32em; border-radius: 50%; background: var(--t-gold); margin-left: .18em; vertical-align: baseline; }
.thz-badge--sticker, .thz-prod__img .thz-badge, .thz-pk--pop .thz-badge { transform: rotate(-4deg); border: 2px solid var(--t-card); box-shadow: 0 4px 12px rgba(0,0,0,.25); border-radius: 8px; height: 24px; }
.thz-hero__kicker .thz-tile { transform: rotate(-6deg); border: 2px solid rgba(255,255,255,.85); }
.thz-trust__i { border: 2px solid var(--t-line); }
::selection { background: var(--t-gold); color: var(--t-green-deep); }

/* ── LOGO (logo kiti) ─────────────────────────────────────────────────
   Font-bağımsız SVG; iki tema varyantı birden basılır, CSS hangisinin
   görüneceğini seçer. `src` değiştirmek JavaScript gerektirirdi ve tema
   anahtarı kapalıyken yanlış varyant kalırdı.                         */

.thz-logo__img { display: block; height: 34px; width: auto; }
/* Varsayılan koyu tema: koyu zemin varyantı. */
.thz-logo__img--acik { display: none; }
[data-theme='light'] .thz-logo__img--koyu { display: none; }
[data-theme='light'] .thz-logo__img--acik { display: block; }

.thz-logo--footer { display: inline-block; }
.thz-logo--footer img { display: block; width: 190px; height: auto; }

@media (max-width: 860px) { .thz-logo__img { height: 28px; } }

/* ══════════════════════════════════════════════════════════════════════
   DÜZELTMELER — 2026-09
   Onaylı temada eksik kalan iki ölçü kuralı. Yeni görünüm getirmez;
   yalnızca mevcut bileşenlerin taşmasını engeller.
   ══════════════════════════════════════════════════════════════════════ */

/* Düğme içi ikon: Icon::svg() glifleri yalnızca viewBox taşır, width/height
   taşımaz. Ölçü kuralı olmayan her düğmede SVG konteyner boyutuna şişiyordu
   (ana sayfa "Sipariş Sorgula" düğmesinde 118×118 px'e ulaşıyordu). */
.thz-btn svg { width: 18px; height: 18px; flex: none; }

/* Kategori kartı: metin sütununa min-width verilmediği için `white-space:
   nowrap` taşıyan alt satır (ör. "2 hizmet · 150,00 ₺'den") dar ekranda
   kartı dışarı itiyordu. */
.thz-cat > span:last-child { min-width: 0; }
/* Ellipsis DEĞİL, satır sarma: kırpma ~1101-1135 px bandında fiyatı
   ("150,00 ₺'den") üç noktanın ardında yok ediyordu. Sarmada bilgi
   kaybı yok, `min-width: 0` taşmayı zaten engelliyor. */
.thz-cat > span:last-child > span { display: block; white-space: normal; }
