/* =====================================================================
   Vena İşitme — Anasayfa (Faz 2a)
   Tasarım kaynağı: "Isitme Merkezi Standalone.html" (Maxtone klonu)
   Yapı korunur, palet Vena'ya çevrilir (BRAND.md §6), yazılar büyütülür.
   ===================================================================== */
/* Not (google-seo, 2026-09-09 derin SEO turu): Poppins fontu artık burada @import
   İLE çekilmiyor — @import, tarayıcının önce bu dosyayı indirip parse etmesini, SONRA
   Google Fonts CSS'ini indirmesini, ANCAK ONDAN SONRA gerçek font dosyalarını indirmesini
   gerektiren sıralı (render-blocking) bir zincir oluşturuyordu (LCP/FCP'yi geciktiren
   Core Web Vitals hatası). Yükleme artık base.njk <head>'inde async
   preload+onload deseniyle yapılıyor — bkz. layouts/base.njk. */

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* <picture> varsayılan olarak display:inline'dır ve flex/grid/absolute-positioned bir ebeveynin
   içinde kendi kutusunu açarak <img>'in yerini alır (RULES.md, google-seo kalıcı kural #4) —
   display:contents ile picture kendi kutusunu oluşturmaz, içindeki <img> ebeveynin doğrudan
   çocuğuymuş gibi davranır (flex/grid boyutlandırma, absolute positioning bozulmaz). WebP
   dönüşümü (2026-09-09) bu kural sayesinde önceki denemedeki layout kırılmasını yaşamaz. */
picture { display: contents; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red-dark); text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--c-red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Düzen yardımcıları ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sp-section) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--mist { background: var(--c-bg-mist); }
.section--dark { background: var(--c-anthracite-dark); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-red);
  margin-bottom: var(--sp-2);
}
.section-title { font-size: var(--fs-h2); color: var(--c-ink); }
.section--dark .section-title { color: #fff; }
.lead { font-size: var(--fs-lead); color: var(--c-ink-soft); font-weight: 300; }
.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Butonlar (hap / pill) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--c-red); color: #fff;
  padding: 13px 14px 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  border: none; cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--c-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn__arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex: none;
}
.btn--ghost { background: transparent; color: var(--c-red); border: 1.5px solid var(--c-red-tint); padding: 12px 26px; }
.btn--ghost:hover { background: var(--c-red-wash); color: var(--c-red-dark); box-shadow: none; }
.btn--light { background: #fff; color: var(--c-ink); padding: 11px 12px 11px 26px; }
.btn--light .btn__arrow { background: var(--c-red-wash); color: var(--c-red); }
.btn--light:hover { background: #fff; color: var(--c-red-dark); }
.btn--block { width: 100%; justify-content: space-between; }

.text-link { color: var(--c-red); font-weight: 600; font-size: var(--fs-small); display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { color: var(--c-red-dark); gap: 10px; transition: gap .2s ease; }

/* ---------- Top bar ---------- */
.topbar { background: var(--c-anthracite-dark); color: #cfd4d4; font-size: 0.9rem; }
.topbar .wrap { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 9px 24px; flex-wrap: wrap; }
.topbar a { color: #e8ebeb; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar__right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar__ico { width: 15px; height: 15px; flex: none; opacity: .85; }
.topbar__test { color: #ffb3b2 !important; font-weight: 600; }

/* ---------- Hap-nav (sticky pill) ---------- */
.nav { position: sticky; top: 14px; z-index: 60; }
.nav__inner {
  max-width: var(--maxw); margin: 14px auto 0; padding: 0 24px;
}
.nav__bar {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--radius-pill);
  padding: 9px 9px 9px 22px; box-shadow: var(--shadow-nav);
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex: none; margin-right: 12px; }
.nav__logo img { height: 55px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 2px; margin: 0; position: relative; }
.nav__menu > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--c-ink); font-weight: 500; font-size: 0.94rem;
  padding: 9px 11px; border-radius: var(--radius-pill); white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav__menu > li > a:hover { background: var(--c-red-wash); color: var(--c-red-dark); }
.nav__caret { font-size: 0.6rem; opacity: .55; }
.nav__spacer { flex: 1; }
.nav__cta {
  background: var(--c-red); color: #fff; font-weight: 600; font-size: 0.92rem;
  padding: 11px 22px; border-radius: var(--radius-pill); flex: none;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta:hover { background: var(--c-red-dark); transform: translateY(-1px); }

/* Mega menü — ferah, simetrik, elit (3 sütun). Konum: .nav__menu'ye göre (viewport taşması yok) */
.has-mega { position: static; }
.mega {
  position: absolute; left: 0; top: calc(100% + 18px);
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-nav); padding: 30px;
  display: grid; gap: 30px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
}
.mega--wide { width: 920px; grid-template-columns: 264px 1fr 1fr; }
.mega--right { left: auto; right: 0; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; } /* hover köprüsü */

/* Görsel tanıtım kartı */
.mega__visual {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  background: var(--c-anthracite-dark); min-height: 306px; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff;
}
.mega__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; transition: transform .55s ease, opacity .3s ease; }
.mega__visual:hover img { transform: scale(1.06); opacity: .6; }
.mega__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,29,29,0) 30%, rgba(26,29,29,0.85) 100%); }
.mega__visual-body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 5px; }
.mega__visual-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #ffb3b2; }
.mega__visual-title { font-size: 1.24rem; font-weight: 600; line-height: 1.2; }
.mega__visual-cta { color: #fff; font-size: 0.9rem; font-weight: 600; margin-top: 8px; }

/* Sütun listeleri */
.mega__col { display: flex; flex-direction: column; align-content: start; }
/* İki tip sütunu (Markaya Göre | Kullanım Tipine Göre) arasında dikey ayırıcı çizgi */
.mega__col + .mega__col { border-left: 1px solid var(--c-line); padding-left: 30px; }
.mega h4 { font-size: 0.84rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-red); margin: 4px 0 14px; padding-left: 12px; }
.mega__col a { display: flex; align-items: center; gap: 8px; color: var(--c-ink); font-size: 0.98rem; padding: 10px 12px; border-radius: 10px; font-weight: 500; transition: background .18s ease, color .18s ease, padding-left .18s ease; }
.mega__col a:hover { background: var(--c-red-wash); color: var(--c-red-dark); padding-left: 17px; }

/* İşitme Testi tanıtım (promo) kartı */
.mega__promo {
  display: flex; flex-direction: column; gap: 9px; justify-content: center;
  background: linear-gradient(158deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: #fff; border-radius: var(--radius-sm); padding: 26px; text-align: left;
  box-shadow: 0 14px 30px rgba(237,37,36,0.26); transition: transform .25s ease, box-shadow .25s ease;
}
.mega__promo:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(237,37,36,0.4); }
.mega__promo-ico { width: 48px; height: 48px; border-radius: 13px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; }
.mega__promo-ico svg { width: 27px; height: 27px; color: #fff; }
.mega__promo-title { font-size: 1.14rem; font-weight: 700; line-height: 1.25; }
.mega__promo-desc { font-size: 0.86rem; line-height: 1.55; color: rgba(255,255,255,0.92); font-weight: 300; }
.mega__promo-cta { font-size: 0.92rem; font-weight: 700; margin-top: 4px; }
.badge-new { background: var(--c-red); color: #fff; font-size: 0.62rem; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-pill); letter-spacing: .04em; }

/* Mobil menü (masaüstünde gizli — yalnızca ≤860px'te açılır) */
.nav__mobile, .nav__scrim { display: none; }

/* Mobil hamburger */
.nav__toggle { display: none; margin-left: auto; background: var(--c-red-wash); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--c-red-dark); border-radius: 2px; position: relative; transition: .25s; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden; isolation: isolate;
  margin-top: -88px; padding: 168px 0 8px; min-height: calc(100vh - 42px); box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(120% 130% at 82% 18%, rgba(237,37,36,0.30) 0%, rgba(237,37,36,0) 46%),
    repeating-conic-gradient(from 0deg at 82% 20%, rgba(255,255,255,0.04) 0deg 2.4deg, rgba(0,0,0,0) 2.4deg 8deg),
    linear-gradient(160deg, #2A2F2F 0%, #22262a 55%, #1a1d1d 100%);
}
.hero__slide { display: none; position: relative; }
.hero__slide.is-active { display: block; animation: hero-fade .55s ease; }
@keyframes hero-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Arka plan görselli slaytlar (4-6) — görsel TÜM hero'yu kaplar (üst şerit + alt dahil).
   Slayt static → .hero'ya göre konumlanır; negatif z-index ile metin/oklar/güven şeridi üstte kalır. */
.hero__slide--bg { position: static; }
/* Geçiş yalnızca opacity (transform YOK): transform, absolute bg'nin containing block'unu slayta
   kaydırıp bg'yi bir an sadece grid kutusuna hapseder → "önce grid, sonra tam kaplama" flaşı. */
.hero__slide--bg.is-active { animation: hero-fade-bg .55s ease; }
@keyframes hero-fade-bg { from { opacity: 0; } to { opacity: 1; } }
.hero__slide--bg .hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero__slide--bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(26,29,29,0.95) 0%, rgba(26,29,29,0.82) 38%, rgba(26,29,29,0.42) 72%, rgba(26,29,29,0.2) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; min-height: 460px; }
.hero__grid--solo { grid-template-columns: 1fr; min-height: 460px; }
.hero__grid--solo .hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; background: rgba(237,37,36,0.92);
  padding: 8px 18px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero__title { margin: 0; font-size: var(--fs-display); font-weight: 300; color: #fff; }
.hero__title b { font-weight: 700; color: #fff; }
.hero__body { margin-top: 20px; max-width: 480px; font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,0.82); font-weight: 300; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero görsel — tüm slaytlarda aynı yükseklikte konteyner (zıplama olmaz) */
.hero__visual { display: flex; justify-content: center; align-items: center; position: relative; min-height: 460px; }
/* Slide 1: telefon mockup'ı kendi çerçevesiyle geldiği için ekstra çerçeve YOK */
.hero__phone { height: 440px; transform: rotate(-3deg); transition: transform .5s ease; filter: drop-shadow(0 34px 60px rgba(0,0,0,0.55)); }
.hero__phone img { height: 100%; width: auto; }
.hero__visual:hover .hero__phone { transform: rotate(-1deg) scale(1.02); }
/* Slide 2-3: fotoğraf çerçevesi — sabit yükseklik, tutarlı boyut */
.hero__frame {
  height: 400px; width: 340px; border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45); background: #0f1113;
  transform: rotate(3deg); transition: transform .5s ease;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame--wide { }
.hero__visual:hover .hero__frame { transform: rotate(1deg) scale(1.02); }
.hero__sgk {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--c-ink); border-radius: var(--radius-pill);
  padding: 8px 18px 8px 12px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 11px; white-space: nowrap;
}
.hero__sgk img { height: 32px; width: auto; display: block; }
.hero__sgk span { font-weight: 600; font-size: 0.82rem; }

/* Hero slider kontrol — resimli (thumbnail) oklar */
.hero__nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 28px 0 24px; }
.hero__navbtn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill); padding: 8px 20px 8px 8px; cursor: pointer; color: #fff; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.hero__navbtn--next { padding: 8px 8px 8px 20px; }
.hero__navbtn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.34); transform: translateY(-2px); }
.hero__navthumb { width: 60px; height: 42px; border-radius: 9px; overflow: hidden; flex: none; background: rgba(255,255,255,0.1); }
.hero__navthumb img { width: 100%; height: 100%; object-fit: cover; }
.hero__navdir { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.88); }
.hero__dots { display: flex; gap: 9px; }
.hero__dots button { width: 9px; height: 9px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: .3s; padding: 0; }
.hero__dots button[aria-current="true"] { width: 26px; background: #fff; }

/* Hero güven şeridi */
/* Sağlam koyu zemin (hero bitiş tonu): hero içine gömülü sayfalarda kaynaşır, tek başına duran
   sayfalarda (SSS, Çözümler hub) beyaz üstünde gri görünmez — her yerde siyah/koyu. */
.trust-strip { background: #1a1d1d; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; padding: 10px 24px; }
.trust-strip__item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; }
.trust-strip__item svg { width: 20px; height: 20px; color: var(--c-red); flex: none; }
.trust-strip__item b { color: #fff; font-weight: 700; }
.trust-strip__item--google svg { color: #FBBC05; }
.trust-strip__google { font-weight: 700; }
.trust-strip__google .b1{color:#4285F4}.trust-strip__google .b2{color:#EA4335}.trust-strip__google .b3{color:#FBBC05}.trust-strip__google .b4{color:#4285F4}.trust-strip__google .b5{color:#34A853}.trust-strip__google .b6{color:#EA4335}

/* =====================================================================
   HAKKINDA + İSTATİSTİK
   ===================================================================== */
.about { display: grid; grid-template-columns: 0.82fr 1fr; gap: 58px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 12px; box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; }
.about__badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--c-red); color: #fff;
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lift); max-width: 190px;
}
.about__badge strong { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: 0.82rem; opacity: .92; }
.about__lead { margin: 20px 0 0; color: var(--c-red-dark); font-weight: 500; font-size: 1.08rem; }
.about__text { margin: 16px 0 0; color: var(--c-ink-soft); font-weight: 300; }
.stats { margin-top: var(--sp-5); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat__num { font-size: 2.4rem; font-weight: 800; color: var(--c-red); letter-spacing: -0.03em; line-height: 1; }
.stat__label { font-size: 0.95rem; font-weight: 500; margin-top: 6px; color: var(--c-ink); }

/* =====================================================================
   İŞİTME - BEYİN SAĞLIĞI (risk paneli) — Yaşam Tarzı section'ının yerine, 2026-09-07
   ===================================================================== */
.risk { display: grid; grid-template-columns: 0.82fr 1fr; gap: 58px; align-items: center; }
.risk__panel {
  background: linear-gradient(158deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: #fff; border-radius: var(--radius); padding: 44px 36px; text-align: center;
  box-shadow: var(--shadow-lift);
}
.risk__stat { display: block; font-size: 5rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.risk__statLabel { margin: 14px 0 0; font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.risk__source { display: block; margin-top: 22px; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.risk__text { margin: 18px 0 0; color: var(--c-ink-soft); font-weight: 300; line-height: 1.75; }

/* =====================================================================
   GOOGLE YORUMLARI
   ===================================================================== */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.google-score { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-soft); }
.google-score__g { font-size: 2rem; font-weight: 700; font-family: var(--font-sans); }
.google-score__g .b1{color:#4285F4}.google-score__g .b2{color:#EA4335}.google-score__g .b3{color:#FBBC05}.google-score__g .b4{color:#4285F4}.google-score__g .b5{color:#34A853}.google-score__g .b6{color:#EA4335}
.google-score__num { font-size: 2.1rem; font-weight: 800; color: var(--c-ink); line-height: 1; }
.google-score__stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }
.google-score__label { font-size: 0.82rem; color: var(--c-ink-soft); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.review-card__stars { color: #FBBC05; letter-spacing: 2px; margin-bottom: 12px; }
.review-card__text { color: var(--c-ink-soft); font-size: 0.98rem; font-weight: 300; line-height: 1.7; flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--c-red), var(--c-red-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.review-card__name { font-weight: 600; font-size: 0.95rem; }
.review-card__meta { font-size: 0.8rem; color: var(--c-ink-soft); }

/* =====================================================================
   ÜRÜN KATEGORİ KARTLARI (karusel görünümü)
   ===================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-card__media { aspect-ratio: 1 / 0.92; background: var(--c-bg-mist); display: flex; align-items: center; justify-content: center; padding: 22px; }
.cat-card__media img { max-height: 100%; width: auto; object-fit: contain; }
.cat-card__body { padding: 22px 20px 24px; text-align: center; }
.cat-card__title { font-size: 1.1rem; font-weight: 600; }
.cat-card__desc { font-size: 0.88rem; color: var(--c-ink-soft); margin-top: 6px; font-weight: 300; min-height: 38px; }
.cat-card .text-link { margin-top: 14px; }
.filter-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: var(--sp-5); font-size: 0.95rem; color: var(--c-ink-soft); flex-wrap: wrap; }
.filter-note b { color: var(--c-ink); }

/* İşitme Cihazları hub — filtre paneli (simetrik, ortalı) */
.pf { display: grid; gap: 24px; margin-bottom: var(--sp-4); background: var(--c-bg-mist); border-radius: var(--radius); padding: 30px 28px; }
.pf__row { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.pf__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink-soft); }
.pf__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pf__chip { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--c-red-tint); background: #fff; color: var(--c-ink); border-radius: var(--radius-pill); padding: 9px 17px; font: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.pf__chip:hover { background: var(--c-red-wash); border-color: var(--c-red); color: var(--c-red-dark); transform: translateY(-1px); }
.pf__chip.is-active { background: var(--c-red); border-color: var(--c-red); color: #fff; }
.pf__chip.is-active .badge-new { background: rgba(255,255,255,0.24); }

.pf__count { text-align: center; color: var(--c-ink-soft); font-size: 0.92rem; margin-bottom: var(--sp-4); font-weight: 500; }
.pf__count b { color: var(--c-red); }
.pf__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.pcard { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.pcard[hidden] { display: none; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
/* Ürün stüdyo görseli zemini — beyaz zeminli ürün çekimlerini "sahne" haline getirir: multiply ile
   görselin kendi beyaz zemini kaybolur, cihaz nötr+kırmızı esintili zeminin üzerinde duruyor gibi
   görünür (kullanıcı isteği 2026-09-07: tüm marka/kullanım-tipi kartları aynı dilde görünsün). */
.pcard__media {
  display: block; position: relative; aspect-ratio: 1 / 0.86; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 18% 12%, rgba(237,37,36,0.15) 0%, rgba(237,37,36,0) 55%),
    radial-gradient(ellipse 65% 55% at 88% 92%, rgba(237,37,36,0.13) 0%, rgba(237,37,36,0) 55%),
    radial-gradient(circle at 50% 42%, #ffffff 0%, #f6f1f0 55%, #ede7e6 100%);
}
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 26px; box-sizing: border-box; mix-blend-mode: multiply; transition: transform .4s ease; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
/* Gerçek lifestyle fotoğraf (Bernafon vb. — kendi sahnesi var): zemin/multiply UYGULANMAZ. */
.pcard__media--photo { background: var(--c-bg-mist); }
.pcard__media--photo img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.pcard__badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--c-red); color: #fff; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; border-radius: var(--radius-pill); box-shadow: 0 4px 12px rgba(237,37,36,0.4); }
.pcard__body { padding: 20px 20px 22px; text-align: left; display: flex; flex-direction: column; flex: 1; }
.pcard__brand { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red); }
.pcard__title { font-size: 1.08rem; font-weight: 600; margin: 5px 0 12px; line-height: 1.3; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pcard__tag { font-size: 0.66rem; font-weight: 500; color: var(--c-ink-soft); background: var(--c-bg-mist); border-radius: var(--radius-pill); padding: 4px 10px; }
.pcard .text-link { margin-top: auto; align-self: flex-start; }
.pf__empty { text-align: center; color: var(--c-ink-soft); margin-top: var(--sp-4); font-weight: 300; }

/* İşitme Cihazları hub — üst başlık bandı */
.hub-hero { background: linear-gradient(160deg, #2A2F2F 0%, #22262a 60%, #1a1d1d 100%); color: #fff; padding: calc(88px + var(--sp-6)) 0 var(--sp-6); margin-top: -88px; }
.hub-hero .eyebrow { color: #ffb3b2; }
.hub-hero__title { font-size: var(--fs-display); font-weight: 300; margin: 12px 0 0; color: #fff; }
.hub-hero__lead { max-width: 720px; margin: 22px 0 0; color: rgba(255,255,255,0.82); font-weight: 300; font-size: 1.08rem; line-height: 1.75; }
.hub-hero__lead b { color: #fff; font-weight: 600; }
.hub-hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Marka sayfası — hero logo çipi + diğer markalar ızgarası */
.brand-hero__logo { display: inline-flex; align-items: center; background: #fff; border-radius: var(--radius-sm); padding: 8px 16px; margin: 4px 0 6px; box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
.brand-hero__logo img { height: 30px; width: auto; display: block; }
.brand-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.brand-links__item { display: flex; flex-direction: column; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px 18px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.brand-links__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--c-red-tint); }
.brand-links__item img { height: 34px; width: auto; object-fit: contain; }
.brand-links__name { font-weight: 600; color: var(--c-ink); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }

/* Marka sayfası — maddeli tanıtım listesi */
.brand-facts { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.brand-fact { display: grid; grid-template-columns: 190px 1fr; gap: 6px 22px; background: #fff; border: 1px solid var(--c-line); border-left: 3px solid var(--c-red); border-radius: var(--radius-sm); padding: 16px 22px; align-items: baseline; }
.brand-fact__k { font-weight: 700; color: var(--c-ink); font-size: 0.96rem; }
.brand-fact__v { color: var(--c-ink-soft); font-weight: 300; font-size: 0.95rem; line-height: 1.7; }
.brand-fact__v b { color: var(--c-ink); font-weight: 600; }
@media (max-width: 620px) { .brand-fact { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; } }
/* Kompakt varyant — 2 sütun, etiket üstte, kısa metin, daha az yer */
.brand-facts--compact { grid-template-columns: 1fr 1fr; gap: 10px; }
.brand-facts--compact .brand-fact { display: block; padding: 13px 16px; }
.brand-facts--compact .brand-fact__k { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.brand-facts--compact .brand-fact__v { font-size: 0.88rem; line-height: 1.55; }
@media (max-width: 620px) { .brand-facts--compact { grid-template-columns: 1fr; } }

/* Farklı zeminli section (marka tanıtımı gibi vurgulu bloklar) */
.section--tint { background: var(--c-red-wash); }

/* Sayfa ortası vurgulu CTA kartı (SSS vb.) — kırmızı zemin, ortalı */
.mid-cta__card { background: linear-gradient(140deg, var(--c-red) 0%, var(--c-red-dark) 100%); color: #fff; border-radius: var(--radius); padding: 46px 40px; text-align: center; box-shadow: 0 18px 44px rgba(196,30,29,0.28); }
.mid-cta__title { font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 700; }
.mid-cta__text { margin: 12px auto 0; max-width: 540px; color: rgba(255,255,255,0.92); font-weight: 300; line-height: 1.7; }
.mid-cta__actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Kırmızı zemin üzerinde ikincil buton: şeffaf, beyaz çerçeveli */
.btn--wire { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); }
.btn--wire:hover { background: rgba(255,255,255,0.12); box-shadow: inset 0 0 0 1.5px #fff; }
.btn--wire .btn__arrow { background: rgba(255,255,255,0.18); color: #fff; }

/* Ürün Kataloğu (PDF) butonu — marka sayfaları için ortak (koyu hero zemininde) */
.btn--catalog { padding-right: 22px; }
.btn--catalog svg { width: 19px; height: 19px; flex: none; }
.btn.is-soon { opacity: 0.58; cursor: not-allowed; pointer-events: none; }
.btn__soon, .btn__dl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,0.2); }

/* Marka CTA — Vena × marka kombin logo kilidi (koyu closing zemininde beyaz kart) */
/* Marka × Vena kapanış lockup — Signia + tüm marka sayfaları (.brand-cta) ortak */
.signia-cta__lockup, .brand-cta__lockup { display: inline-flex; align-items: center; gap: 22px; background: #fff; border-radius: var(--radius); padding: 16px 30px; margin: 0 auto 26px; box-shadow: 0 14px 38px rgba(0,0,0,0.3); }
.signia-cta__logo, .brand-cta__logo { height: 40px; width: auto; display: block; object-fit: contain; }
.signia-cta__x, .brand-cta__x { color: #9aa3a3; font-size: 1.4rem; font-weight: 300; line-height: 1; }
.signia-cta .wrap, .brand-cta .wrap { flex-direction: column; align-items: center; text-align: center; }
.signia-cta .closing__title, .brand-cta .closing__title { max-width: 720px; }
@media (max-width: 480px) { .signia-cta__lockup, .brand-cta__lockup { gap: 14px; padding: 14px 20px; } .signia-cta__logo, .brand-cta__logo { height: 32px; } }

/* Marka sayfası — e-ticaret tarzı sol sidebar filtre + ürün ızgarası */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.shop-sidebar { position: sticky; top: 100px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 22px 20px; }
.shop-sidebar__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--c-line); }
.shop-sidebar__title { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--c-ink); }
.shop-sidebar__title svg { width: 18px; height: 18px; color: var(--c-red); }
.shop-sidebar__reset { font: inherit; font-size: 0.8rem; font-weight: 600; color: var(--c-red); background: none; border: none; cursor: pointer; padding: 0; }
.shop-sidebar__reset:hover { color: var(--c-red-dark); text-decoration: underline; }
.shop-facet__title { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-ink-soft); margin: 14px 0 8px; }
.shop-facet__opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 0.92rem; color: var(--c-ink); }
.shop-facet__opt input { width: 17px; height: 17px; accent-color: var(--c-red); cursor: pointer; flex: none; }
.shop-facet__opt:hover { color: var(--c-red-dark); }
.shop-count { font-size: 0.92rem; color: var(--c-ink-soft); font-weight: 500; margin-bottom: 18px; }
.shop-count b { color: var(--c-red); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

/* İşitme Cihazları hub — alt CTA bandı */
.hub-cta { margin-top: var(--sp-5); background: var(--c-red-wash); border: 1px solid var(--c-red-tint); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.hub-cta__title { font-size: 1.5rem; font-weight: 600; color: var(--c-ink); max-width: 640px; }
.hub-cta__text { margin-top: 10px; color: var(--c-ink-soft); font-weight: 300; max-width: 640px; }
.hub-cta .btn { flex: none; }

/* Anasayfa kategori seçimi — sekme + resimli kartlar */
.catnav__tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: var(--sp-4); }
.catnav__tab { font: inherit; font-size: 1rem; font-weight: 600; color: var(--c-ink-soft); background: #fff; border: 1.5px solid var(--c-line); border-radius: var(--radius-pill); padding: 13px 30px; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.catnav__tab:hover { border-color: var(--c-red-tint); color: var(--c-red-dark); transform: translateY(-1px); }
.catnav__tab.is-active { background: var(--c-red); border-color: var(--c-red); color: #fff; box-shadow: 0 10px 24px rgba(237,37,36,0.26); }
.catnav__panel { animation: hero-fade .4s ease; }
.catnav__panel[hidden] { display: none; }
.catnav__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.catnav__grid--brand { grid-template-columns: repeat(5, 1fr); }
.catcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.catcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
/* Kategori kartı zemini — .pcard__media ile aynı sistem (tek tip görünüm için ortak reçete). */
.catcard__media {
  position: relative; aspect-ratio: 1 / 0.78; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 18% 12%, rgba(237,37,36,0.15) 0%, rgba(237,37,36,0) 55%),
    radial-gradient(ellipse 65% 55% at 88% 92%, rgba(237,37,36,0.13) 0%, rgba(237,37,36,0) 55%),
    radial-gradient(circle at 50% 42%, #ffffff 0%, #f6f1f0 55%, #ede7e6 100%);
}
.catcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; box-sizing: border-box; mix-blend-mode: multiply; transition: transform .45s ease; }
.catcard:hover .catcard__media img { transform: scale(1.06); }
/* Gerçek lifestyle fotoğraf: zemin/multiply UYGULANMAZ. */
.catcard__media--photo { background: var(--c-bg-mist); }
.catcard__media--photo img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
/* Marka logosu (Markaya Göre paneli) — kendi renklerini korumalı: multiply YOK, sade nötr zemin,
   bol padding (logo çerçeveye sıkışmasın). Farklı en-boy oranlı 5 logo (kare/dar/geniş) burada
   "aynı tip" kutu içinde eşit boyut/hizada görünür (kullanıcı isteği 2026-09-07). */
.catcard__media--brand { background: linear-gradient(180deg, #fdfbfb 0%, #f6f1f0 100%); display: flex; align-items: center; justify-content: center; }
/* multiply: bazı logo dosyaları opak beyaz zeminli (Signia, Pure Tone), bazıları şeffaf (Bernafon,
   Audibel, Vista) geldi — zemin neredeyse beyaz olduğu için multiply ikisini de doğru gösterir:
   opak beyazı eritir, şeffaf logonun rengini bozmaz (kutu-içinde-kutu görünümü böyle giderildi). */
.catcard__media--brand img { width: auto; height: auto; max-width: 72%; max-height: 56%; object-fit: contain; padding: 0; mix-blend-mode: multiply; }
.catcard:hover .catcard__media--brand img { transform: scale(1.06); }
.catcard__badge { position: absolute; top: 10px; left: 10px; background: var(--c-red); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 9px; border-radius: var(--radius-pill); box-shadow: 0 4px 12px rgba(237,37,36,0.4); }
.catcard__title { font-size: 1.02rem; font-weight: 600; color: var(--c-ink); padding: 16px 18px 4px; }
.catcard__go { font-size: 0.86rem; font-weight: 600; color: var(--c-red); padding: 0 18px 18px; margin-top: auto; transition: padding-left .2s ease; }
.catcard:hover .catcard__go { padding-left: 24px; }

/* =====================================================================
   SES DALGASI AYRACI (İşitme Cihazları + Fayda Izgarası arası, 2026-09-07 tur 4)
   TEK görsel, iki section'ın tam sınırında (dikey ortalı), tam ekran genişlikte (100vw).
   Kullanıcı isteği: "2 tane değil 1 tane, iki section'ın ortasına, tam ekran olsun."
   `.tech-strip-seam` yükseklik almaz (0px) — sadece sınırı işaretler; img bu noktaya göre
   dikeyde -50% ile ortalanır, böylece üst yarısı önceki section'a, alt yarısı sonraki
   section'a taşar. Kaynak görsel siyah zeminli + beyaz dalga; invert ile beyaz zemin
   (siteyle kaynaşır) + gri dalga (hafif görünür) elde edilir.
   ===================================================================== */
.tech-strip-seam { position: relative; height: 0; overflow: visible; }
.tech-strip-seam__img {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 760px; object-fit: cover;
  opacity: 0.04; filter: invert(1) contrast(1.2);
  pointer-events: none; user-select: none;
}
@media (max-width: 720px) {
  .tech-strip-seam__img { height: 420px; }
}

/* =====================================================================
   FAYDA IZGARASI (dalga motifi)
   ===================================================================== */
.feature-wrap { position: relative; z-index: 0; }
.feature-wave { position: absolute; top: -70px; left: 40px; width: calc(100% - 80px); height: 150px; pointer-events: none; opacity: .5; overflow: visible; z-index: -1; }
.feature-wave--mid { top: 50%; transform: translateY(-50%); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.feature-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.feature-card__ico { height: 118px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--c-red-wash), #fff); }
.feature-card__ico svg { width: 46px; height: 46px; color: var(--c-red); }
.feature-card__body { padding: 20px 22px 24px; }
.feature-card__title { color: var(--c-red-dark); font-weight: 600; font-size: 1.05rem; }
.feature-card__desc { font-size: 0.9rem; color: var(--c-ink-soft); margin-top: 8px; font-weight: 300; }

/* =====================================================================
   DALGA KOŞUSU — Yaşam Tarzı ↔ Hizmet Bölgesi tam sınırı (2026-09-07 tur 6)
   `.feature-wave` ile aynı periyot (150px) ve renk dilinde, section içine hapsolmak yerine TAM EKRAN
   genişlikte, iki section'ın tam sınırında (height:0 konteyner + -50% ortalama, tech-strip-seam ile
   aynı teknik). TEK parça, 20 periyotluk geniş viewBox'lı SVG — background-repeat KULLANILMAZ (karo
   tekrarı birleşim yerlerinde ince "seam" çizgisi bırakıyordu); tek path olduğu için dikiş yok.
   ===================================================================== */
.wave-seam { position: relative; height: 0; overflow: visible; }
.wave-seam__svg {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 150px; display: block;
  opacity: 0; pointer-events: none;
}

/* =====================================================================
   İŞİTME TESTİ / ÖNERİ ARACI (2x2 + metin)
   ===================================================================== */
.test { display: grid; grid-template-columns: 1fr 1.05fr; gap: 58px; align-items: center; }
.test__mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 158px; gap: 12px; }
.test__mosaic figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--c-bg-mist); }
.test__mosaic img { width: 100%; height: 100%; object-fit: cover; }
.test__mosaic .m-tall { grid-row: span 2; }
/* Öneri aracı (kademeli soru) */
.advisor { margin-top: var(--sp-4); background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); }
.advisor__q { font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.advisor__options { display: flex; flex-wrap: wrap; gap: 10px; }
.advisor__opt { border: 1.5px solid var(--c-red-tint); background: #fff; color: var(--c-red-dark); border-radius: var(--radius-pill); padding: 10px 20px; font: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: .2s; }
.advisor__opt:hover { background: var(--c-red-wash); }
.advisor__progress { height: 5px; background: var(--c-bg-mist); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 18px; }
.advisor__progress i { display: block; height: 100%; background: var(--c-red); border-radius: var(--radius-pill); transition: width .3s ease; }
.advisor__result { text-align: center; }
.advisor__result h4 { font-size: 1.25rem; color: var(--c-red-dark); margin-bottom: 10px; }
.advisor__result p { color: var(--c-ink-soft); margin-bottom: 18px; font-weight: 300; }

/* =====================================================================
   SSS TEASER (accordion)
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
/* İki sütun (2026-09-07 kompaktlaştırma) — 6 soru tek sütunda 6 satır yerine 3 satır yükseklik kaplar. */
.faq--grid { max-width: 1060px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; align-items: start; }
.faq__item { border: 1px solid var(--c-line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq--grid .faq__item { margin-bottom: 0; }
.faq__q { width: 100%; text-align: left; background: none; border: none; font: inherit; font-weight: 600; font-size: 1.02rem; color: var(--c-ink); padding: 17px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q::after { content: "+"; font-size: 1.4rem; color: var(--c-red); font-weight: 400; flex: none; transition: transform .25s; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 20px 19px; color: var(--c-ink-soft); font-weight: 300; font-size: 0.94rem; }

/* --- Merkezi SSS: arama + kategori filtresi --- */
.faq-tools { max-width: 1060px; margin: 4px auto var(--sp-4); }
.faq-search { display: flex; align-items: center; max-width: 580px; margin: 0 auto 20px; background: #fff; border: 2px solid var(--c-line); border-radius: var(--radius-pill); padding: 4px 5px 4px 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.05); transition: border-color .2s ease, box-shadow .2s ease; }
.faq-search:focus-within { border-color: var(--c-red); box-shadow: 0 0 0 3px var(--c-red-wash); }
.faq-search__ico { width: 20px; height: 20px; color: var(--c-red); flex: none; }
.faq-search input { flex: 1; min-width: 0; border: none; background: none; padding: 12px; font: inherit; font-size: 1rem; color: var(--c-ink); }
.faq-search input:focus { outline: none; }
.faq-search input::placeholder { color: #8b9393; }
.faq-search__btn { flex: none; display: inline-flex; align-items: center; gap: 7px; background: var(--c-red); color: #fff; border: none; border-radius: var(--radius-pill); padding: 11px 22px; font: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: background .2s ease; }
.faq-search__btn:hover { background: var(--c-red-dark); }
.faq-search__btn svg { width: 16px; height: 16px; }
.faq-figure { margin: 0; }
.faq-figure__cap { text-align: center; font-size: 0.85rem; color: var(--c-ink-soft); margin-top: 10px; font-weight: 300; }
.lightbox-trigger { cursor: zoom-in; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.faq-cat { display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 0.86rem; font-weight: 500; color: #fff; background: #2A2F2F; border: 1.5px solid #2A2F2F; border-radius: var(--radius-pill); padding: 8px 15px; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.faq-cat span { font-size: 0.74rem; font-weight: 700; color: #fff; background: rgba(255,255,255,0.18); border-radius: 10px; padding: 1px 7px; transition: background .2s ease, color .2s ease; }
.faq-cat:hover { background: #3b4242; border-color: #3b4242; color: #fff; transform: translateY(-1px); }
.faq-cat.is-active { background: var(--c-red); border-color: var(--c-red); color: #fff; }
.faq-cat.is-active span { background: rgba(255,255,255,0.24); color: #fff; }
.faq-group { margin-top: var(--sp-5); }
.faq-group:first-child { margin-top: 0; }
.faq-group__title { font-size: 1.2rem; color: var(--c-ink); margin-bottom: 16px; padding-bottom: 9px; border-bottom: 2px solid var(--c-red-wash); }
.faq-group[hidden], .faq__item[hidden] { display: none; }
.faq-empty { text-align: center; color: var(--c-ink-soft); font-weight: 300; margin-top: var(--sp-5); }

/* Lightbox (görsel büyütme) — tüm sitede [data-lightbox] görsellerinde kullanılabilir */
.lightbox-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(10,12,12,0.9); display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 96vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,0.55); background: #fff; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.14); border: none; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* =====================================================================
   YAŞAM TARZI KARTLARI
   ===================================================================== */
.life-wrap { position: relative; }
.life-wrap::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(88deg, rgba(237,37,36,0.07) 0 1px, transparent 1px 15px); pointer-events: none; }
.life-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.life-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.life-card__media { aspect-ratio: 1 / 0.68; overflow: hidden; }
.life-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.life-card:hover .life-card__media img { transform: scale(1.05); }
.life-card__body { padding: 18px 20px 22px; }
.life-card__title { font-size: 1.08rem; font-weight: 600; }
.life-card__desc { font-size: 0.9rem; color: var(--c-ink-soft); margin: 8px 0 12px; font-weight: 300; }

/* =====================================================================
   HİZMET BÖLGESİ ÇİPLERİ
   ===================================================================== */
.regions { text-align: center; }
.region-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: var(--sp-4); }
.region-chip { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 190px; border: 1px solid var(--c-red-tint); background: #fff; border-radius: var(--radius); padding: 20px 26px; transition: .25s; }
.region-chip:hover { border-color: var(--c-red); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.region-chip strong { color: var(--c-red-dark); font-size: 1.1rem; }
.region-chip span { font-size: 0.82rem; color: var(--c-ink-soft); }
.region-note { margin-top: var(--sp-4); font-size: 0.9rem; color: var(--c-ink-soft); font-weight: 300; }
/* Balıkesir'in tüm ilçeleri — küçük pill listesi (2026-09-07), az yer kaplar, SEO'ya ilçe adları girer. */
.region-towns { margin-top: var(--sp-5); }
.region-towns__label { font-size: 0.85rem; color: var(--c-ink-soft); font-weight: 500; }
.region-towns__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 14px; }
.region-towns__list span { font-size: 0.82rem; color: var(--c-ink); background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-pill); padding: 7px 15px; font-weight: 500; }

/* Section ayracı — dekoratif ses dalgası (Hizmet Bölgeleri → Kampanya geçişi, 2026-09-07). */
/* Kampanya üstü ayraç — TAM EKRAN (sağa/sola dayanır), iki section'ın tam sınırında (2026-09-07 tur 6).
   `.tech-strip-seam` ile birebir aynı height:0 + -50% teknik; artık max-width YOK, kenardan kenara. */
.section-divider-wave { position: relative; height: 0; overflow: visible; }
.section-divider-wave svg {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 90px; display: block;
  opacity: .12; pointer-events: none;
}

/* =====================================================================
   KAMPANYA + FORM
   ===================================================================== */
.campaign { display: grid; grid-template-columns: 1fr 0.9fr; gap: 52px; align-items: center; }
.campaign__tag { display: inline-flex; align-items: center; gap: 9px; background: var(--c-red-wash); color: var(--c-red-dark); font-weight: 600; font-size: 0.9rem; padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: var(--sp-3); }
.campaign__list { margin-top: var(--sp-3); display: grid; gap: 12px; }
.campaign__list li { display: flex; align-items: center; gap: 12px; color: var(--c-ink); font-weight: 500; }
.campaign__list svg { width: 22px; height: 22px; color: var(--c-red); flex: none; }
.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-card); }
.form-card h3, .form-card__title { font-size: 1.3rem; margin-bottom: 6px; }
.form-card p { color: var(--c-ink-soft); font-size: 0.92rem; margin-bottom: 20px; font-weight: 300; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--c-ink); }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm); font: inherit; font-size: 1rem; color: var(--c-ink); background: #fff; transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-red); }
.form-note { font-size: 0.8rem; color: var(--c-ink-soft); margin-top: 12px; font-weight: 300; }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card__media { aspect-ratio: 1 / 0.6; overflow: hidden; background: var(--c-bg-mist); position: relative; }
/* Kapak fotoğrafı ALTTA (z-index:0), dalga motifi ÜSTÜNDE korunuyor (z-index:1) — kullanıcı isteği
   2026-09-07: "dalga simgesi hep kalmalı, yeni gelen kapak görselini bunun altına koymalıyız." */
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 0; }
.blog-card__wave { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; opacity: .62; }
.blog-card__tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(42,47,47,0.82); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card__title { font-size: 1.08rem; font-weight: 600; line-height: 1.4; }
.blog-card__excerpt { font-size: 0.9rem; color: var(--c-ink-soft); margin: 10px 0 16px; font-weight: 300; flex: 1; }

/* Yazı detay: kapak görseli + sidebar (Trend/Etiket/Son Yazılar — MASTER-PLAN §8/§12) */
.blog-post__cover { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); margin-bottom: 32px; }
.blog-post__figure { margin: 32px 0; }
.blog-post__figure img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); display: block; }
.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.blog-sidebar { position: sticky; top: 110px; }
.blog-sidebar__block { background: var(--c-bg-mist); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.blog-sidebar__block:last-child { margin-bottom: 0; }
.blog-sidebar__heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--c-ink-soft); margin-bottom: 14px; }
.blog-sidebar__list { display: flex; flex-direction: column; gap: 12px; }
.blog-sidebar__list a { font-size: 0.92rem; font-weight: 500; color: var(--c-ink); line-height: 1.5; }
.blog-sidebar__list a:hover { color: var(--c-red); }
.blog-sidebar__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-sidebar__tag { background: #fff; border: 1px solid var(--c-line); padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; color: var(--c-ink-soft); }

/* =====================================================================
   İÇ SAYFA HERO (page-hero) — Kurumsal/İletişim vb. iç sayfalarda kullanılan,
   anasayfa .hero ile aynı görsel dil, slider olmadan sade sürüm. 2026-09-07.
   ===================================================================== */
.page-hero {
  position: relative; color: #fff; overflow: hidden; isolation: isolate;
  margin-top: -88px; padding: 168px 0 0;
  background:
    radial-gradient(120% 130% at 82% 18%, rgba(237,37,36,0.30) 0%, rgba(237,37,36,0) 46%),
    repeating-conic-gradient(from 0deg at 82% 20%, rgba(255,255,255,0.04) 0deg 2.4deg, rgba(0,0,0,0) 2.4deg 8deg),
    linear-gradient(160deg, #2A2F2F 0%, #22262a 55%, #1a1d1d 100%);
}
.page-hero__content { max-width: 640px; padding-bottom: 56px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: #fff; font-weight: 500; }
.breadcrumb__sep { opacity: .45; }

/* =====================================================================
   İLETİŞİM — form/NAP grid + harita
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 32px; align-items: start; }
.nap-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.nap-list__row { display: flex; align-items: flex-start; gap: 12px; }
.nap-list__ico { width: 20px; height: 20px; color: var(--c-red); flex: none; margin-top: 2px; }
.nap-list__row div { font-size: 0.95rem; color: var(--c-ink); font-weight: 500; line-height: 1.6; }
.nap-list__row span { display: block; font-size: 0.82rem; color: var(--c-ink-soft); font-weight: 300; }
.contact-map { width: 100%; display: block; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-card); margin-top: var(--sp-5); height: 340px; }

/* =====================================================================
   KAPANIŞ CTA
   ===================================================================== */
.closing { position: relative; overflow: hidden;
  background: radial-gradient(120% 160% at 15% 20%, rgba(237,37,36,0.34) 0%, rgba(237,37,36,0) 50%), linear-gradient(135deg, #2A2F2F, #1a1d1d); color: #fff; }
.closing .wrap { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-top: var(--sp-6); padding-bottom: var(--sp-6); }
.closing__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; max-width: 640px; }
.closing__title span { color: #ffb3b2; }
/* SSS uzun listesini bölen orta CTA — closing bandının liste içi kart varyantı (2026-09-08) */
.faq-midcta { border-radius: var(--radius); margin: 10px 0 6px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--c-anthracite-dark); color: #c7cccc; }
.footer__top { display: grid; grid-template-columns: 1.35fr 1fr 1.25fr 0.95fr 1.1fr; gap: 30px; padding: var(--sp-6) 0 var(--sp-5); }
.footer__brand img { height: 42px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; color: #a7adad; font-weight: 300; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer__col a { color: #b6bcbc; font-size: 0.9rem; display: block; padding: 5px 0; font-weight: 300; }
.footer__col a:hover { color: #fff; }
.footer__col-grid { display: flex; flex-direction: column; }
.footer__contact a { color: #b6bcbc; }
.footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer__social a:hover { background: var(--c-red); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px 26px; flex-wrap: wrap; }
.footer__legal { font-size: 0.82rem; color: #9aa0a0; font-weight: 300; }
.footer__legal a { color: #9aa0a0; }
.footer__legal a:hover { color: #fff; }

/* ye-imza rozeti (düz CSS uyarlaması — markup/görünüm BRAND.md §9) */
.ye-sign-wrap { display: flex; align-items: center; gap: 14px; }
.ye-sign-label { font-size: 10px; font-weight: 700; color: #9aa0a0; text-transform: uppercase; letter-spacing: 0.18em; }
.yazilim-eviniz-signature { background: linear-gradient(45deg, var(--primary-color), var(--accent-color)); padding: 2px; border-radius: 12px; display: inline-block; }
.yazilim-eviniz-signature .ye-inner { background: #fff; padding: 8px 20px; border-radius: 10px; display: flex; align-items: center; gap: 8px; }
.yazilim-eviniz-signature .ye-1 { font-size: 12px; font-weight: 900; color: #1f2937; letter-spacing: -0.03em; }
.yazilim-eviniz-signature .ye-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-color); animation: ye-bounce 1s infinite; }
.yazilim-eviniz-signature .ye-2 { font-size: 12px; font-weight: 300; color: #475569; letter-spacing: -0.03em; text-transform: uppercase; }
@keyframes ye-bounce { 0%,100%{ transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1);} 50%{ transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1);} }

/* =====================================================================
   STICKY ACTIONS
   ===================================================================== */
.sticky-actions { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.sticky-actions a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.24); transition: transform .2s; }
.sticky-actions a:hover { transform: scale(1.08); }
.sticky-actions svg { width: 26px; height: 26px; }
.sa-wa { background: #25D366; }
.sa-tel { background: var(--c-red); }

/* =====================================================================
   RANDEVU MODAL
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(26,29,29,0.62); backdrop-filter: blur(3px); }
.modal__box { position: relative; background: #fff; border-radius: var(--radius); max-width: 440px; width: 100%; padding: 32px; box-shadow: 0 40px 90px rgba(0,0,0,0.35); animation: modal-in .3s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--c-bg-mist); font-size: 1.2rem; cursor: pointer; color: var(--c-ink); }
.modal__close:hover { background: var(--c-red-wash); color: var(--c-red); }
.modal__box h3 { font-size: 1.35rem; margin-bottom: 6px; }
.modal__box .modal__sub { color: var(--c-ink-soft); font-size: 0.92rem; margin-bottom: 22px; font-weight: 300; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1040px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .hero__grid, .about, .test, .campaign, .risk, .contact-grid, .blog-post-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar { position: static; }
  .hero__visual { order: -1; min-height: auto; }
  .hero__phone { height: 400px; }
  .hero__frame { height: 360px; width: 310px; }
  .pf__grid { grid-template-columns: repeat(2, 1fr); }
  .catnav__grid, .catnav__grid--brand { grid-template-columns: repeat(3, 1fr); }
  .hub-cta { flex-direction: column; align-items: flex-start; }
  .cat-grid, .feature-grid, .value-grid, .reviews__grid, .brand-links { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .life-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-facet { display: flex; flex-wrap: wrap; gap: 2px 18px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about__media { max-width: 460px; }
}
@media (max-width: 1100px) {
  .nav__menu, .nav__cta.nav__cta--desktop { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile {
    display: block;
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
    background: #fff; box-shadow: -20px 0 60px rgba(0,0,0,0.2);
    padding: 90px 26px 32px; transform: translateX(100%); transition: transform .32s ease;
    z-index: 65; overflow-y: auto;
  }
  body.menu-open .nav__mobile { transform: translateX(0); }
  .nav__mobile a { display: block; padding: 13px 0; border-bottom: 1px solid var(--c-line); color: var(--c-ink); font-weight: 500; font-size: 1.05rem; }
  .nav__mobile .nav__mobile-cta { margin-top: 22px; text-align: center; border: none; }
  .nav__mobile h4 { margin: 18px 0 4px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-ink-soft); }
  .nav__scrim { display: block; position: fixed; inset: 0; background: rgba(26,29,29,0.5); z-index: 64; opacity: 0; visibility: hidden; transition: .3s; }
  body.menu-open .nav__scrim { opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  .cat-grid, .feature-grid, .value-grid, .reviews__grid, .test__mosaic, .pf__grid, .faq--grid, .shop-grid { grid-template-columns: 1fr; }
  /* SSS kategorileri: 12 çipi alt alta yığmak yerine tek satır yatay kaydırma şeridi (kompakt) */
  .faq-cats { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .faq-cat { flex: 0 0 auto; scroll-snap-align: start; }
  .catnav__grid, .catnav__grid--brand { grid-template-columns: repeat(2, 1fr); }
  .catnav__tabs { gap: 8px; }
  .catnav__tab { padding: 11px 18px; font-size: 0.9rem; }
  .hub-cta { padding: 28px; }
  .mega--wide { grid-template-columns: 1fr; width: min(90vw, 360px); }
  .mega__visual { min-height: 160px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .test__mosaic { grid-auto-rows: 180px; }
  .test__mosaic .m-tall { grid-row: span 1; }
  .closing .wrap { flex-direction: column; align-items: flex-start; }
  .hero, .page-hero { padding-top: 124px; }
  .hero__phone { height: 340px; }
  .hero__frame { height: 320px; width: 264px; }
  .hero__nav { gap: 10px; margin: 20px 0 20px; }
  .hero__navbtn { padding: 6px 14px 6px 6px; gap: 9px; }
  .hero__navbtn--next { padding: 6px 6px 6px 14px; }
  .hero__navthumb { width: 46px; height: 34px; }
  .hero__navdir { font-size: 0.74rem; }
  .trust-strip .wrap { gap: 8px 20px; padding: 12px 20px; }
  .trust-strip__item { font-size: 0.82rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
/* ============================ ÜRÜN DETAY SAYFASI ============================ */
.prod-hero { background: linear-gradient(160deg, #2A2F2F 0%, #22262a 60%, #1a1d1d 100%); color: #fff; padding: calc(88px + var(--sp-5)) 0 var(--sp-5); margin-top: -88px; }
.prod-hero .eyebrow { color: #ffb3b2; }
.prod-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-5); align-items: center; margin-top: 10px; }
.prod-hero__fam { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #ffb3b2; letter-spacing: .01em; }
.prod-hero__title { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 300; margin: 10px 0 0; color: #fff; line-height: 1.12; }
.prod-hero__shell { margin: 16px 0 0; color: rgba(255,255,255,0.8); font-weight: 300; font-size: 1.02rem; line-height: 1.7; max-width: 46ch; }
.prod-hero__shell b { color: #fff; font-weight: 600; }
.prod-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.prod-hero__badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); color: #fff; font-size: 0.82rem; font-weight: 500; padding: 7px 13px; border-radius: var(--radius-pill); }
.prod-hero__badge svg { width: 15px; height: 15px; stroke: #ffb3b2; }
.prod-hero__actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.prod-hero__media { background: #fff; border-radius: var(--radius); padding: 34px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lift); }
.prod-hero__media img { max-width: 100%; height: auto; display: block; mix-blend-mode: multiply; }

/* Özet — check maddeleri */
.prod-summary__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.prod-summary__item { display: flex; align-items: flex-start; gap: 13px; font-size: 1rem; line-height: 1.6; color: var(--c-ink); }
.prod-summary__item b { font-weight: 600; }
.prod-summary__check { flex: 0 0 auto; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%; background: var(--c-red-wash); display: grid; place-items: center; }
.prod-summary__check svg { width: 15px; height: 15px; stroke: var(--c-red); stroke-width: 2.4; fill: none; }

/* Spec blokları */
.spec-block { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px 28px; background: #fff; }
.spec-block + .spec-block { margin-top: 20px; }
.spec-block__head { display: flex; align-items: center; gap: 13px; margin: 0 0 4px; }
.spec-block__ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--c-red-wash); display: grid; place-items: center; }
.spec-block__ico svg { width: 22px; height: 22px; stroke: var(--c-red); stroke-width: 1.8; fill: none; }
.spec-block__title { font-size: 1.15rem; font-weight: 600; color: var(--c-ink); margin: 0; }
.spec-block__intro { margin: 8px 0 14px; color: var(--c-ink-soft); font-size: 0.98rem; line-height: 1.7; }
.spec-block__intro a, .prose a { color: var(--c-red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.spec-block__intro a:hover, .prose a:hover { color: var(--c-red-dark); }
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.spec-list li { position: relative; padding-left: 30px; color: var(--c-ink); font-size: 0.98rem; line-height: 1.6; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ED2524' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.spec-note { margin: 18px 0 0; padding: 14px 18px; background: var(--c-bg-soft); border-left: 3px solid var(--c-red); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--c-ink-soft); font-size: 0.94rem; line-height: 1.65; }
.prose p { margin: 0 0 14px; color: var(--c-anthracite); line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }

/* Ürün galerisi — büyük görsel + küçük resim kutuları */
.prod-gallery { display: flex; flex-direction: column; gap: 16px; width: 100%; align-items: center; }
.prod-gallery__main { display: block; width: 100%; border: 0; background: transparent; padding: 0; cursor: zoom-in; position: relative; }
.prod-gallery__main img { display: block; max-width: 100%; height: auto; margin: 0 auto; mix-blend-mode: multiply; border-radius: 16px; }
.prod-gallery--photo .prod-gallery__main img { mix-blend-mode: normal; }
.prod-gallery__zoom { position: absolute; right: 6px; bottom: 6px; width: 40px; height: 40px; border-radius: 50%; background: rgba(42,47,47,0.08); display: grid; place-items: center; color: var(--c-anthracite); transition: background .2s ease, color .2s ease; }
.prod-gallery__main:hover .prod-gallery__zoom { background: var(--c-red); color: #fff; }
.prod-gallery__zoom svg { width: 19px; height: 19px; }
.prod-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.prod-gallery__thumb { width: 70px; height: 70px; border: 1.5px solid var(--c-line); border-radius: 12px; overflow: hidden; background: #fff; cursor: pointer; padding: 7px; transition: border-color .2s ease, box-shadow .2s ease; }
.prod-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.prod-gallery--photo .prod-gallery__thumb { padding: 0; }
.prod-gallery--photo .prod-gallery__thumb img { mix-blend-mode: normal; object-fit: cover; }
.prod-gallery__thumb:hover { border-color: var(--c-red-tint); }
.prod-gallery__thumb.is-active { border-color: var(--c-red); box-shadow: 0 0 0 3px var(--c-red-tint); }

/* Ürün lightbox — çoklu görsel için prev/next + sayaç */
.plightbox { position: fixed; inset: 0; z-index: 220; background: rgba(10,12,12,0.92); display: flex; align-items: center; justify-content: center; padding: 6vh 6vw; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.plightbox.is-open { opacity: 1; visibility: visible; }
.plightbox__img { max-width: 90vw; max-height: 82vh; border-radius: 12px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.plightbox__btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.14); border: none; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.plightbox__btn:hover { background: rgba(255,255,255,0.3); }
.plightbox__btn svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.plightbox__close { top: 20px; right: 24px; }
.plightbox__close::before { content: "×"; font-size: 2rem; line-height: 1; }
.plightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.plightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.plightbox__count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: .05em; }
.plightbox[data-single="true"] .plightbox__prev,
.plightbox[data-single="true"] .plightbox__next,
.plightbox[data-single="true"] .plightbox__count { display: none; }
@media (max-width: 520px) {
  .plightbox__prev { left: 10px; } .plightbox__next { right: 10px; }
  .plightbox__btn { width: 44px; height: 44px; }
}

@media (max-width: 900px) {
  .prod-hero__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .prod-hero__media { order: -1; padding: 26px; }
  .prod-summary__list { grid-template-columns: 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
