/* ========================================================================
   iway-store — storefront styles. Sade + MONOKROM tasarım sistemi:
   nötr yüzeyler, flat (renkli glow yok, hairline kenarlık), birincil aksiyon
   "mürekkep" (koyu temada açık dolgu / açık temada koyu dolgu). Renk yalnızca
   işlevsel yerlerde (hata/stok/durum) ve sönük. Header/footer (site-chrome.js)
   ve sepet (cart.js) bu tokenlara uyumludur.
   ======================================================================== */

/* ---- tokens (TEK tema: açık/beyaz) ---- */
* { box-sizing: border-box; }
/* Açık (beyaz) tema — site tek temalı. Marka turuncusu #F25400. */
:root, [data-theme="light"], [data-theme="dark"] {
  --bg:#F4F6F8; --bg2:#FFFFFF; --surface:#FFFFFF; --surface2:#F4F6F8; --elev:#FFFFFF;
  --border:rgba(18,24,33,0.10); --border2:rgba(18,24,33,0.16); --hair:rgba(18,24,33,0.05);
  --text:#161A20; --muted:#5E646E; --faint:#6B7280;   /* faint koyulaştı: beyazda ~4.9:1 (WCAG AA) */
  --accent:#F25400; --accent2:#D94900; --accent-soft:rgba(242,84,0,0.10);   /* marka rengi */
  --ink:#161A20; --ink-text:#FFFFFF;             /* nötr dolgu (avatar/cta) */
  --green:#2E8B62; --red:#C0504C; --amber:#9A7536; --blue:#4A6394;
  --green-soft:rgba(46,139,98,0.10); --red-soft:rgba(192,80,76,0.10); --amber-soft:rgba(154,117,54,0.10); --blue-soft:rgba(74,99,148,0.10);
  --header-bg:rgba(255,255,255,0.85); --shadow:0 30px 60px -34px rgba(20,28,40,0.18); --glow:rgba(242,84,0,0.10);
  --r:14px; --r-lg:20px;
}
body { margin:0; font-family:'Manrope',system-ui,sans-serif; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; line-height:1.5; }
body.pdp-page { background:var(--surface); }   /* ürün detay sayfası → beyaz arka plan */
.disp { font-family:'Space Grotesk',sans-serif; letter-spacing:-0.02em; }
.mono { font-family:'JetBrains Mono',ui-monospace,monospace; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
/* görsel yüklenene kadar gizli, yüklenince yumuşak belir → "bozuk stretch sonra snap" hissi biter (logolar hariç) */
img.imgfade { opacity:0; transition:opacity .45s ease; }
img.imgfade.loaded { opacity:1; }
/* hero yüklenirken: sabit-kodlu metin yerine iskelet (default banner flash'ı biter) */
.hero-loading [data-hero-tag], .hero-loading [data-hero-title], .hero-loading [data-hero-title] span, .hero-loading [data-hero-sub] {
  color:transparent !important; background:linear-gradient(90deg,var(--surface2) 25%,var(--hair) 37%,var(--surface2) 63%); background-size:200% 100%; animation:sk-shimmer 1.4s ease infinite; border-radius:10px;
}
.hero-loading [data-hero-cta] { visibility:hidden; }
h1,h2,h3 { margin:0; }
::-webkit-scrollbar { width:10px; height:10px; } ::-webkit-scrollbar-thumb { background:var(--border2); border-radius:10px; border:3px solid transparent; background-clip:content-box; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline:2px solid var(--accent); outline-offset:3px; border-radius:8px; }
:focus:not(:focus-visible) { outline:none; }
/* erişilebilirlik: ekran-okuyucu metni (görünmez ama okunur) + "içeriğe atla" linki */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:-60px; left:12px; z-index:500; background:var(--accent); color:#fff; padding:10px 16px; border-radius:10px; font-weight:700; font-size:14px; box-shadow:var(--shadow); transition:top .18s ease; }
.skip-link:focus { top:12px; outline:2px solid #fff; outline-offset:2px; }
/* logo: tek tema (açık/beyaz) → siyah logo. aspect-ratio: yükleme öncesi genişlik rezerve (CLS yok). */
[data-logo] { aspect-ratio:700/314; }
[data-logo="white"] { display:none !important; }
[data-logo="black"] { display:block; }

/* ---- layout ---- */
.wrap { max-width:1240px; margin:0 auto; padding:0 24px; }
.section { padding:64px 0; }
.section-sm { padding:40px 0; }
.sec-head { margin-bottom:28px; }
.sec-head .eyebrow { font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.14em; color:var(--accent); text-transform:uppercase; }
.sec-head h1, .sec-head h2 { font-family:'Space Grotesk',sans-serif; font-size:28px; font-weight:700; letter-spacing:-.02em; margin:8px 0 0; }
.sec-head p { color:var(--muted); font-size:15px; margin:8px 0 0; max-width:560px; }
.muted { color:var(--muted); } .faint { color:var(--faint); }

/* ---- buttons (flat) ---- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:11px 18px; border-radius:12px; border:1px solid var(--border2); background:transparent; color:var(--text); font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; white-space:nowrap; transition:border-color .18s ease, background .18s ease, opacity .18s ease; }
.btn:hover { border-color:var(--text); background:var(--surface2); }
.btn svg { width:17px; height:17px; }
.btn-primary { background:var(--accent); color:#fff; border-color:transparent; }
.btn-primary:hover { background:var(--accent2); }
.btn-lg { padding:14px 24px; font-size:15px; }
.btn-block { width:100%; }
.btn:disabled { opacity:.5; cursor:not-allowed; }

/* ---- legal/404 header (.hdr) ---- */
.hdr { position:sticky; top:0; z-index:70; background:var(--header-bg); backdrop-filter:blur(20px) saturate(120%); -webkit-backdrop-filter:blur(20px) saturate(120%); border-bottom:1px solid var(--border); }
.hdr-in { max-width:1240px; margin:0 auto; padding:0 24px; height:64px; display:flex; align-items:center; gap:16px; }
.hdr .logo { height:28px; }
.hdr .spacer { flex:1; }

/* ---- forms ---- */
.field { margin-bottom:14px; }
.field label { display:block; font-size:13px; font-weight:600; color:var(--muted); margin-bottom:7px; }
.input { width:100%; padding:12px 14px; border-radius:11px; border:1px solid var(--border2); background:var(--surface); color:var(--text); font-size:14.5px; font-family:inherit; outline:none; transition:border-color .18s ease; }
.input:focus { border-color:var(--accent); }
.input:disabled { opacity:.7; }
.form-err { font-size:13px; color:var(--red); min-height:18px; margin:2px 0 6px; }
.form-ok { font-size:13px; color:var(--green); min-height:18px; margin:2px 0 6px; }
.linkbtn { background:none; border:none; color:var(--accent); font-size:13px; font-weight:600; cursor:pointer; font-family:inherit; padding:0; text-decoration:underline; text-underline-offset:3px; }
.linkbtn:hover { color:var(--accent2); }

/* ---- panel / card ---- */
.panel { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:24px; }
.empty { text-align:center; padding:56px 24px; color:var(--muted); border:1px dashed var(--border2); border-radius:var(--r-lg); }
.empty-box { display:flex; flex-direction:column; align-items:center; gap:7px; }
.empty-ic { width:54px; height:54px; border-radius:15px; background:var(--surface2); display:flex; align-items:center; justify-content:center; color:var(--faint); margin-bottom:6px; }
.empty-ic svg { width:26px; height:26px; }
.empty-t { font-family:'Space Grotesk',sans-serif; font-size:16.5px; font-weight:700; color:var(--text); letter-spacing:-.01em; }
.empty-s { font-size:13.5px; color:var(--muted); max-width:340px; line-height:1.5; }
.empty-box .btn { margin-top:10px; }

/* premium koyu detay: yüzeylerde ince üst-kenar ışığı (referans hissi). Ürün kartı HARİÇ (görseli 0,0 doldurur). */
.panel, .stat, .step-card, .authcard, .cat-card, .filters, .lockcard, .acct-side { box-shadow:inset 0 1px 0 var(--hair); }

/* ---- product card (ortak) ---- */
.grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:18px; }
.pcard { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); overflow:hidden; display:flex; flex-direction:column; cursor:pointer; transition:border-color .2s ease, transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease; }
.pcard:hover { border-color:var(--accent); transform:translateY(-4px); box-shadow:var(--shadow); }
.pcard .ph { aspect-ratio:1/1; background:var(--surface2); position:relative; overflow:hidden; }
/* görsel TAM görünür (object-fit:contain → kırpma yok), ÜSTE yaslı (üst boşluk 0), yanlardan padding.
   contain letterbox'ı oluşursa ÜSTTE değil ALTTA kalır → kart üstündeki koyu bant biter. */
.pcard .ph img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; object-position:center; padding:0; transition:transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease; }
.pcard .ph .ph-hover { opacity:0; }
.pcard:hover .ph .ph-hover { opacity:1; }                 /* hover → diğer renge geç */
.pcard:hover .ph img { transform:scale(1.04); }            /* hover → çok hafif yakınlaşma */
.pcard .ph .none { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--border2); }
.pcard .ph .none svg { width:42px; height:42px; }
.pc-badges { position:absolute; top:10px; left:10px; display:flex; flex-direction:column; align-items:flex-start; gap:6px; z-index:2; }
.pcard .badge { font-size:10.5px; font-weight:700; padding:4px 9px; border-radius:7px; }
.badge-out { background:var(--red-soft); color:var(--red); }
.badge-low { background:var(--amber-soft); color:var(--amber); }
.badge-new { background:var(--accent); color:#fff; box-shadow:0 2px 8px rgba(242,84,0,.28); }
.badge-cmp { background:var(--green); color:#fff; box-shadow:0 2px 8px rgba(0,0,0,.16); }   /* kampanya indirim rozeti (%X) */
.pdp-price-row .badge-cmp { font-size:12px; padding:5px 10px; border-radius:8px; }
.pcard .b { padding:13px 14px 14px; display:flex; flex-direction:column; gap:2px; flex:1; }
.pcard .brand { font-size:10.5px; color:var(--faint); text-transform:uppercase; letter-spacing:.07em; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pcard .name { font-size:14px; font-weight:700; line-height:1.32; margin-top:1px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.pcard .code { font-size:11px; color:var(--faint); margin-top:2px; }
.pc-swrow { min-height:15px; margin-top:8px; }
.pc-swrow:has(+ .pc-login) { margin-bottom:12px; }   /* misafir kartı: swatch ile "Fiyat için giriş" butonu arasına garanti boşluk */
.pcard .swatches { display:flex; gap:5px; }
.swatch { width:15px; height:15px; border-radius:50%; border:1px solid var(--border2); }
.pcard .swatches { gap:6px; }
.swatch-img { width:28px; height:28px; border-radius:8px; overflow:hidden; border:1px solid var(--border2); background:var(--surface2); flex:none; }
.swatch-img img { width:100%; height:100%; object-fit:cover; display:block; }
.pcard .price { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:700; color:var(--text); }
.price-pre { display:block; font-family:'Manrope',sans-serif; font-size:9px; font-weight:700; color:var(--faint); text-transform:uppercase; letter-spacing:.06em; line-height:1; margin-bottom:3px; }
.price-old { font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:600; color:var(--faint); text-decoration:line-through; margin-left:7px; }   /* kampanya: normal fiyat üstü-çizili */
.pc-pick { display:inline-flex; align-items:center; justify-content:center; gap:5px; padding:8px 13px; border-radius:11px; background:var(--accent); color:#fff; font-size:13px; font-weight:700; white-space:nowrap; transition:background .18s ease; }
.pc-pick svg { width:15px; height:15px; }
.pc-foot .pc-pick { width:100%; padding:10px; }
.pcard:hover .pc-pick { background:var(--accent2); }
/* kart altı — home (tek sıra) ve katalog (fiyat + adet/ekle) */
.pc-row { margin-top:auto; padding-top:12px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pc-foot { margin-top:auto; padding-top:12px; display:flex; flex-direction:column; gap:9px; }
.pc-buy { display:flex; gap:8px; align-items:stretch; }
.qstep { flex:1; display:flex; align-items:center; border:1px solid var(--border2); border-radius:11px; overflow:hidden; background:var(--surface); }
.qstep button { width:32px; flex:none; border:none; background:transparent; color:var(--text); font-size:17px; font-weight:700; cursor:pointer; line-height:1; }
.qstep button:hover { background:var(--surface2); color:var(--accent); }
.qstep input { flex:1; width:100%; min-width:0; border:none; outline:none; background:transparent; text-align:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; color:var(--text); padding:9px 0; -moz-appearance:textfield; }
.qstep input::-webkit-outer-spin-button, .qstep input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
/* misafir kartı — kasıtlı, temiz "giriş" CTA (fiyat yerine) */
.pc-login { margin-top:auto; display:flex; align-items:center; justify-content:center; gap:8px; padding:11px 12px; border-radius:11px; border:1px solid var(--border2); background:var(--surface); color:var(--muted); font-size:13px; font-weight:600; transition:border-color .18s ease, color .18s ease, background .18s ease; }
.pc-login svg { width:15px; height:15px; flex:none; }
.pcard:hover .pc-login { border-color:var(--accent); color:var(--accent); background:var(--accent-soft); }
/* tükenen üründe restock */
.pc-notify { flex:1; display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:10px; border-radius:11px; border:1px solid var(--border2); background:var(--surface); color:var(--muted); font-size:12px; font-weight:600; cursor:pointer; font-family:inherit; transition:border-color .18s ease, color .18s ease, background .18s ease; }
.pc-notify svg { width:16px; height:16px; flex:none; }
.pc-notify:hover { border-color:var(--accent); color:var(--accent); }
.pc-notify[data-on] { border-color:transparent; background:var(--accent-soft); color:var(--accent); cursor:default; }
.add { position:relative; display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:11px; background:var(--accent); color:#fff; border:none; cursor:pointer; flex:none; overflow:hidden; transition:background .25s ease; }
.pc-buy .add { width:44px; align-self:stretch; }
.add:hover { background:var(--accent2); }
.add svg { position:absolute; inset:0; margin:auto; width:18px; height:18px; transition:opacity .2s ease, transform .3s cubic-bezier(.34,1.56,.64,1); }
.add svg path { stroke:#fff; }
.add .ic-check { opacity:0; transform:scale(.3); }
.add .ic-check path { stroke-dasharray:26; stroke-dashoffset:26; }
.add.added { background:var(--green); animation:add-pop .4s ease; }
.add.added .ic-plus { opacity:0; transform:scale(.3) rotate(-90deg); }
.add.added .ic-check { opacity:1; transform:scale(1); }
.add.added .ic-check path { animation:check-draw .42s .06s ease forwards; }
@keyframes add-pop { 0% { transform:scale(1); } 42% { transform:scale(1.22); } 100% { transform:scale(1); } }
@keyframes check-draw { to { stroke-dashoffset:0; } }
/* sepet rozeti bump (ürün eklenince) */
.iwc-bump { animation:iwc-bump .42s ease; }
@keyframes iwc-bump { 0%,100% { transform:scale(1); } 40% { transform:scale(1.4); } }

/* ======================================================================
   HOME
   ====================================================================== */
.hero { padding:72px 0 56px; }
/* banner üstü başlık (yalnız image/product/çoklu banner'da görünür) */
.hero-head { margin-bottom:20px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:9px; font-family:'JetBrains Mono',ui-monospace,monospace; font-size:11.5px; letter-spacing:.16em; color:var(--muted); text-transform:uppercase; font-weight:600; }
.hero-eyebrow .hero-dot { width:7px; height:7px; border-radius:50%; background:var(--accent); flex:none; }
.hero-tagline { font-family:'Space Grotesk',sans-serif; font-size:clamp(24px,3.4vw,38px); font-weight:700; letter-spacing:-.02em; line-height:1.1; margin:10px 0 0; color:var(--text); }
/* hero arka plan şov: parallax + mouse'a hafif tepki veren blur orb'lar (JS translate; reduced-motion'da JS atlanır) */
.hero-fx { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-orb { position:absolute; border-radius:50%; filter:blur(46px); will-change:transform; transition:transform .5s cubic-bezier(.22,1,.36,1); }
.hero-orb.o1 { width:360px; height:360px; top:-90px; right:6%; background:radial-gradient(circle, var(--glow), transparent 68%); }
.hero-orb.o2 { width:280px; height:280px; bottom:-70px; left:2%; background:radial-gradient(circle, rgba(242,84,0,.13), transparent 70%); }
.hero-orb.o3 { width:220px; height:220px; top:34%; left:48%; background:radial-gradient(circle, rgba(74,99,148,.10), transparent 70%); }
.hero-grid { display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
.hero-grid.has-media { grid-template-columns:1.05fr .95fr; }
.hero-copy { min-width:0; }
.hero-media { border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/3; background:var(--surface2); }
.hero-media img { width:100%; height:100%; object-fit:cover; }
@media (max-width:860px) { .hero-grid.has-media { grid-template-columns:1fr; } }
.hero .pill { display:inline-flex; align-items:center; gap:8px; padding:6px 13px; border-radius:100px; border:1px solid var(--border2); background:var(--surface); font-size:12.5px; font-weight:600; color:var(--muted); }
.hero .pill .dot { width:7px; height:7px; border-radius:50%; background:var(--accent); }
.hero h1 { font-family:'Space Grotesk',sans-serif; font-size:clamp(34px,5vw,56px); font-weight:700; letter-spacing:-.03em; line-height:1.05; margin:22px 0 0; max-width:780px; }
.hero h1 .accent { color:var(--accent); }
.hero .lead { color:var(--muted); font-size:17px; line-height:1.6; margin:20px 0 0; max-width:560px; }
.hero .cta { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.hero .facts { display:flex; flex-wrap:wrap; gap:32px; margin-top:44px; padding-top:28px; border-top:1px solid var(--border); }
.hero .fact b { font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:700; display:block; }
.hero .fact span { font-size:13px; color:var(--faint); }

.cats-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:16px; }
.cat-card { position:relative; overflow:hidden; display:flex; align-items:center; gap:14px; min-height:94px; border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:20px 22px; transition:border-color .2s ease, transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease; }
.cat-card:hover { border-color:var(--accent); transform:translateY(-3px); box-shadow:0 18px 40px -28px rgba(20,20,22,.3); }
.cat-card .cc-ic { position:relative; z-index:1; width:52px; height:52px; border-radius:13px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex:none; }
.cat-card .cc-body, .cat-card .cc-arrow { position:relative; z-index:1; }
/* sağda büyük SOLUK kategori görseli — boş sağ tarafı dengeler; sola doğru maskeyle yumuşak biter, metnin altında kalır */
.cat-card .cc-bg { position:absolute; z-index:0; right:-6%; top:50%; transform:translateY(-50%); width:46%; max-width:180px; opacity:.2; pointer-events:none; -webkit-mask-image:linear-gradient(90deg, transparent, #000 55%); mask-image:linear-gradient(90deg, transparent, #000 55%); }
.cat-card .cc-bg img { width:100%; height:auto; display:block; }
.cat-card .cc-ic svg { width:20px; height:20px; }
.cat-card .cc-ic.cc-img { background:var(--surface2); overflow:hidden; }
.cat-card .cc-ic.cc-img img { width:100%; height:100%; object-fit:cover; }
.cat-card .cc-body { flex:1; min-width:0; }
.cat-card .cc-name { font-weight:800; font-size:15px; }
.cat-card .cc-sub { font-size:12.5px; color:var(--muted); }
.cat-card .cc-arrow { color:var(--faint); transition:transform .25s ease, color .2s ease; flex:none; }
.cat-card:hover .cc-arrow { color:var(--accent); transform:translateX(3px); }
.cat-card .cc-arrow svg { width:18px; height:18px; }

/* alternatif zemin (avantaj şeridi BEYAZ kalır) */
.bg-soft, .brands-sec { background:var(--bg2); }
.adv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
/* avantaj şeridi — GRID: tüm boyutlarda tutarlı kenarlık/padding (flex-wrap kırılması yok) */
.adv-bar { display:grid; grid-template-columns:repeat(4,1fr); align-items:stretch; }
.adv-bar > div { min-width:0 !important; padding:24px 26px !important; border-right:1px solid var(--border) !important; border-bottom:none !important; }
.adv-bar > div:last-child { border-right:none !important; }
@media (max-width:860px) { .adv-bar { grid-template-columns:1fr 1fr; } .adv-bar > div:nth-child(2n) { border-right:none !important; } .adv-bar > div:nth-child(-n+2) { border-bottom:1px solid var(--border) !important; } }
@media (max-width:560px) { .adv-bar { grid-template-columns:1fr; } .adv-bar > div { border-right:none !important; border-bottom:1px solid var(--border) !important; } .adv-bar > div:last-child { border-bottom:none !important; } }
.adv { display:flex; gap:14px; align-items:flex-start; }
.adv-ic { width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex:none; }
.adv-ic svg { width:22px; height:22px; }
.adv h3 { font-size:15px; font-weight:700; }
.adv p { font-size:13.5px; color:var(--muted); margin:4px 0 0; line-height:1.5; }

/* bayilik adımları */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step-card { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:26px 24px; }
.step-n { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:var(--ink); color:var(--ink-text); font-family:'Space Grotesk',sans-serif; font-weight:700; margin-bottom:14px; }
.step-card h3 { font-size:17px; font-weight:700; }
.step-card p { color:var(--muted); font-size:14px; margin:6px 0 0; line-height:1.6; }

/* bayilik başvuru bloğu (home) */
.apply-grid { display:grid; grid-template-columns:0.85fr 1.15fr; gap:44px; align-items:start; border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:36px; box-shadow:inset 0 1px 0 var(--hair); }
@media (max-width:860px) { .apply-grid { grid-template-columns:1fr; gap:26px; padding:26px; } }

/* markalar */
.brands-cap { text-align:center; font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--faint); margin:0 0 18px; }
.brands-row { display:flex; flex-wrap:wrap; gap:14px 40px; justify-content:center; align-items:center; }
.brands-row span { font-family:'Space Grotesk',sans-serif; font-size:19px; font-weight:700; color:var(--faint); transition:color .2s ease; }
.brands-row span:hover { color:var(--text); }

/* CTA bandı (koyu) */
.cta-band { background:var(--ink); color:var(--ink-text); padding:66px 0; text-align:center; }
.cta-band h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(26px,4vw,34px); font-weight:700; letter-spacing:-.02em; }
.cta-band p { color:rgba(255,255,255,.72); font-size:16px; margin:12px auto 26px; max-width:520px; line-height:1.6; }
.cta-band-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.32); }
.cta-ghost:hover { border-color:#fff; background:rgba(255,255,255,.1); color:#fff; }

@media (max-width:860px) { .adv-grid { grid-template-columns:1fr 1fr; } .steps { grid-template-columns:1fr; } }
@media (max-width:560px) { .adv-grid { grid-template-columns:1fr; } }

.lockcard { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:48px 28px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px; }
.lockcard .ic { width:60px; height:60px; border-radius:16px; background:var(--surface2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--muted); }
.lockcard .ic svg { width:28px; height:28px; }
.lockcard h3 { font-family:'Space Grotesk',sans-serif; font-size:20px; font-weight:700; }
.lockcard p { color:var(--muted); font-size:14px; max-width:430px; margin:0; line-height:1.55; }
.lockcard .cta { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:10px; }

/* ===== referans yardımcı sınıflar (home zengin tek-sayfa) ===== */
.navlink { position:relative; color:var(--text); text-decoration:none; transition:color .2s ease; }
.navlink:hover { color:var(--accent); }
.cat-tile { transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.cat-tile:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--accent) !important; }
.cat-tile .cat-img { transition:transform .5s ease; }
.cat-tile:hover .cat-img { transform:scale(1.04); }
.lift { transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.lift:hover { transform:translateY(-4px); border-color:var(--accent) !important; box-shadow:var(--shadow); }
.hover-accent { transition:border-color .25s ease, color .25s ease; }
.hover-accent:hover { border-color:var(--accent) !important; color:var(--accent) !important; }
.to-top { position:fixed; right:26px; bottom:26px; z-index:80; width:46px; height:46px; border-radius:50%; border:1px solid var(--border2); background:var(--header-bg); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); color:var(--text); cursor:pointer; display:inline-flex; align-items:center; justify-content:center; opacity:0; transform:translateY(14px); pointer-events:none; transition:opacity .3s ease, transform .3s ease, border-color .25s ease, color .25s ease; }
.to-top[data-show] { opacity:1; transform:none; pointer-events:auto; }
.to-top:hover { border-color:var(--accent); color:var(--accent); }
.to-top svg { width:19px; height:19px; }
.login-modal { position:fixed; inset:0; z-index:130; display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.login-modal[data-open] { opacity:1; pointer-events:auto; }
.login-modal-scrim { position:absolute; inset:0; background:rgba(5,5,8,0.66); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }
.login-card { position:relative; width:100%; max-width:440px; transform:translateY(14px); transition:transform .3s ease; }
.login-modal[data-open] .login-card { transform:none; }
.imgslot { display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--surface2),var(--bg2)); color:var(--faint); overflow:hidden; position:relative; }
.imgslot svg { width:34px; height:34px; opacity:.5; }
.imgslot img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.imgslot img:not([src]) { display:none; }   /* banner görseli yokken boş img gizli (kırık ikon yok) */
.invalid { border-color:var(--red) !important; box-shadow:0 0 0 3px var(--red-soft); }
.cf-brand[data-on] { border-color:var(--accent) !important; background:var(--accent-soft) !important; }
.cf-model { padding:10px 16px; border-radius:100px; border:1px solid var(--border2); background:transparent; color:var(--muted); font-size:13.5px; font-weight:600; font-family:inherit; cursor:pointer; transition:all .2s ease; }
.cf-model[data-on] { border-color:var(--accent); background:var(--accent-soft); color:var(--accent); }
@media (max-width:1060px) { .hero-grid2 { grid-template-columns:1fr !important; } .hero-visual { display:none !important; } .split-2 { grid-template-columns:1fr !important; } .grid-3 { grid-template-columns:1fr 1fr !important; } .grid-4 { grid-template-columns:1fr 1fr !important; } .badges-row { flex-wrap:wrap !important; } }
@media (max-width:640px) { .grid-3, .grid-4 { grid-template-columns:1fr !important; } .hide-sm { display:none !important; } }
@media (max-width:900px) { .bento { grid-template-columns:1fr 1fr !important; grid-auto-rows:200px !important; } .bento .b-feat { grid-column:span 2 !important; grid-row:span 1 !important; } .bento .b-wide { grid-column:span 2 !important; } }
@media (max-width:560px) { .bento { grid-template-columns:1fr !important; } .bento .b-feat, .bento .b-wide, .bento .bento-a { grid-column:span 1 !important; } }

/* ======================================================================
   CATALOG
   ====================================================================== */
.cat-toolbar { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.cat-search { flex:1; min-width:200px; display:flex; align-items:center; gap:10px; padding:11px 14px; border-radius:12px; border:1px solid var(--border2); background:var(--surface); }
.cat-search:focus-within { border-color:var(--accent); }
.cat-search svg { width:17px; height:17px; color:var(--faint); flex:none; }
.cat-search input { flex:1; background:transparent; border:none; outline:none; color:var(--text); font-size:14.5px; font-family:inherit; }
.cat-count { font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--faint); white-space:nowrap; }
.chips { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:22px; }
.chip { padding:8px 15px; border-radius:10px; border:1px solid var(--border2); background:transparent; color:var(--text); font-size:13px; font-weight:700; cursor:pointer; font-family:inherit; transition:border-color .18s ease, background .18s ease; }
.chip:hover { border-color:var(--accent); color:var(--accent); }
.chip[data-on] { background:var(--accent); color:#fff; border-color:transparent; }
.chips-wrap { display:flex; flex-direction:column; gap:10px; margin-bottom:22px; }
.chips-wrap .chips { margin-bottom:0; }
.chips-sub .chip { font-size:12.5px; padding:7px 13px; }

/* promo şeridi (panelden) */
.cat-promo { position:relative; overflow:hidden; border-radius:var(--r-lg); background:linear-gradient(120deg, var(--accent), var(--accent2)); color:#fff; margin-bottom:22px; display:flex; align-items:stretch; gap:0; aspect-ratio:16/6; box-shadow:var(--shadow); }
.promo-grid { margin-bottom:22px; }   /* banner içindeki öne çıkan ürün kartları (kind:product) */
/* banner carousel (aynı yere birden çok banner → ok + nokta) */
.bnr-car { position:relative; margin-bottom:22px; padding:0 14px; }   /* dar yan boşluk = okun %30'u dışarı taşsın (kalan %70 görselin üstünde) */
.bnr-viewport { overflow:hidden; border-radius:var(--r-lg); }        /* görseli klipler + köşe yuvarlar; oklar bunun DIŞINDA */
.bnr-track { display:flex; transition:transform .5s cubic-bezier(.22,1,.36,1); }
.bnr-slide { flex:0 0 100%; min-width:100%; }
.bnr-slide > .cat-promo, .bnr-slide > a > .cat-promo, .bnr-slide .bnr-product, .bnr-slide > .cat-promo-image, .bnr-slide > .feat-banner { margin-bottom:0; }
.bnr-arrow { position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; border:1px solid var(--border); background:rgba(255,255,255,.92); color:#111; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:3; box-shadow:0 2px 12px rgba(0,0,0,.18); }
.bnr-arrow svg { width:20px; height:20px; }
.bnr-prev { left:2px; } .bnr-next { right:2px; }   /* yan boşlukta, görselin dışında */
.bnr-arrow:hover { background:#fff; color:var(--accent); }
.bnr-dots { position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:7px; z-index:3; }
.bnr-dot { width:8px; height:8px; border-radius:50%; border:none; background:rgba(255,255,255,.65); cursor:pointer; padding:0; transition:width .2s ease, background .2s ease; box-shadow:0 1px 5px rgba(0,0,0,.35); }
.bnr-dot.on { background:#fff; width:22px; border-radius:5px; }
.bnr-product { display:flex; justify-content:center; padding:6px 0 16px; }
.bnr-product .pcard { max-width:280px; width:100%; }
.cat-promo-img { flex:none; width:38%; max-width:360px; }
.cat-promo-img img { width:100%; height:100%; object-fit:cover; }
.cat-promo-body { padding:26px 32px; flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.cat-promo-tag { font-size:11px; letter-spacing:.14em; opacity:.92; margin-bottom:10px; display:inline-flex; align-items:center; gap:8px; }
.cat-promo h3 { font-family:'Space Grotesk',sans-serif; font-size:clamp(20px,2.4vw,28px); font-weight:700; letter-spacing:-.01em; margin:0; }
.cat-promo p { font-size:14px; line-height:1.55; opacity:.92; margin:8px 0 0; max-width:520px; }
.cat-promo-btn { display:inline-flex; align-items:center; gap:8px; align-self:flex-start; margin-top:16px; padding:11px 20px; border-radius:12px; background:#fff; color:var(--accent2); font-weight:700; font-size:14px; text-decoration:none; transition:transform .15s ease; }
.cat-promo-btn:hover { transform:translateX(2px); }
.cat-promo-btn svg { width:16px; height:16px; }
/* kind:product — grid ürün kartıyla aynı dilde büyük "öne çıkan ürün" kartı (yatay, tüm kart PDP linki) */
.feat-banner { position:relative; display:flex; align-items:stretch; gap:0; aspect-ratio:16/6; border-radius:var(--r-lg); overflow:hidden; background:var(--surface); border:1px solid var(--border); box-shadow:var(--shadow); margin-bottom:22px; text-decoration:none; color:var(--text); transition:border-color .2s ease, box-shadow .28s ease; }
.feat-banner:hover { border-color:var(--accent); box-shadow:0 12px 32px rgba(0,0,0,.1); }
.feat-media { position:relative; flex:0 0 42%; max-width:460px; background:var(--surface); display:flex; align-items:center; justify-content:center; padding:22px; overflow:hidden; }   /* görsel paneli BEYAZ (gri değil) */
.feat-media img { max-width:100%; max-height:100%; object-fit:contain; transition:transform .5s cubic-bezier(.22,1,.36,1); }
.feat-banner:hover .feat-media img { transform:scale(1.04); }
.feat-none { color:var(--border2); display:flex; }
.feat-none svg { width:56px; height:56px; }
.feat-badge { position:absolute; top:14px; left:14px; font-size:11px; font-weight:700; letter-spacing:.02em; padding:5px 11px; border-radius:7px; background:var(--accent); color:#fff; box-shadow:0 2px 10px rgba(0,0,0,.12); max-width:calc(100% - 28px); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.feat-body { flex:1; min-width:0; display:flex; flex-direction:column; justify-content:flex-start; gap:7px; padding:26px 34px; }   /* içerik üstten başlasın (ortalı değil) */
.feat-brand { font-size:11px; color:var(--faint); text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.feat-name { font-family:'Space Grotesk',sans-serif; font-size:clamp(20px,2.5vw,30px); font-weight:700; letter-spacing:-.015em; line-height:1.15; margin:0; color:var(--text); overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
.feat-code { font-size:12px; color:var(--faint); }
.feat-swatches { display:flex; align-items:center; gap:6px; margin:4px 0 2px; }
.feat-price { font-family:'Space Grotesk',sans-serif; font-size:15px; color:var(--text); display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.feat-price b { font-size:clamp(22px,2.6vw,28px); font-weight:800; color:var(--accent); }
.feat-pre { font-size:12px; color:var(--faint); font-weight:600; }
.feat-old { font-size:14px; color:var(--faint); text-decoration:line-through; font-weight:600; }   /* üstü çizili eski fiyat */
.feat-cmp { font-size:11px; font-weight:700; color:#fff; background:var(--green); padding:3px 8px; border-radius:6px; align-self:center; white-space:nowrap; }   /* kampanya rozeti */
.feat-login { display:inline-flex; align-items:center; gap:7px; font-size:13px; color:var(--muted); font-weight:600; }
.feat-login svg { width:15px; height:15px; }
.feat-cta { display:inline-flex; align-self:flex-start; align-items:center; gap:8px; margin-top:8px; padding:11px 22px; border-radius:12px; background:var(--accent); color:#fff; font-weight:700; font-size:14px; box-shadow:0 4px 16px rgba(242,84,0,.28); transition:transform .15s ease, box-shadow .15s ease; }
.feat-banner:hover .feat-cta { transform:translateY(-1px); box-shadow:0 6px 20px rgba(242,84,0,.36); }
.feat-cta svg { width:16px; height:16px; }
/* kind:image — SAF görsel banner: görselin kendi oranında tam genişlik; zemin BEYAZ (saydam görsel kısımları gri sayfa değil beyaz görünür) */
.cat-promo-image { display:block; position:relative; background:var(--surface); aspect-ratio:16/6; overflow:hidden; }   /* SABİT alan (diğer banner'larla aynı 16/6) */
.cat-promo-fullimg { width:100%; height:100%; object-fit:cover; display:block; }   /* sabit alanı doldurur (cover) */
.cat-promo-side { position:absolute; left:24px; bottom:20px; color:#fff; font-family:'Space Grotesk',sans-serif; font-size:clamp(18px,2.4vw,26px); font-weight:700; letter-spacing:-.01em; text-shadow:0 2px 14px rgba(0,0,0,.5); max-width:70%; }
/* hero kind:image — SAF görsel hero: görselin kendi oranında tam genişlik; gri kutu YOK */
.hero-imgbanner { position:relative; border-radius:var(--r-lg); overflow:hidden; background:var(--surface); box-shadow:var(--shadow); aspect-ratio:16/6; }   /* SABİT alan */
.hero-imgbanner img { width:100%; height:100%; object-fit:cover; display:block; }   /* sabit alanı doldurur (cover) */
/* banner görsellerine ince smooth hareket (Ken Burns): cover görseli yavaşça yakınlaştırır; container overflow:hidden kırpar */
@keyframes bnr-drift { 0%,100% { transform:scale(1); } 50% { transform:scale(1.02); } }   /* nefes al-ver: %2 çok ince genlik (kırpma minimum) */
.cat-promo-fullimg, .hero-imgbanner img, .hero-cbanner img { animation:bnr-drift 12s ease-in-out infinite; }
.hero-img-title { position:absolute; left:32px; bottom:28px; color:#fff; font-family:'Space Grotesk',sans-serif; font-size:clamp(24px,4vw,44px); font-weight:700; letter-spacing:-.02em; text-shadow:0 2px 18px rgba(0,0,0,.55); max-width:70%; }
/* hero carousel slide (classic: tam-kanama arka plan + metin overlay) — metin okunurluğu için cover */
.hero-cbanner { position:relative; aspect-ratio:16/6; border-radius:var(--r-lg); overflow:hidden; background:var(--surface2); box-shadow:var(--shadow); }
.hero-cbanner img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-c-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; gap:10px; padding:clamp(24px,5vw,64px); background:linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.12) 58%, transparent); color:#fff; }
.hero-c-tag { font-size:12px; letter-spacing:.14em; text-transform:uppercase; opacity:.92; }
.hero-c-title { font-size:clamp(24px,4vw,46px); font-weight:700; letter-spacing:-.02em; max-width:62%; text-shadow:0 2px 18px rgba(0,0,0,.5); }
.hero-c-sub { font-size:clamp(14px,1.6vw,18px); max-width:52%; opacity:.95; line-height:1.5; }
.hero-c-cta { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
@media (max-width:680px) { .hero-c-title, .hero-c-sub { max-width:92%; } }   /* banner ratio TÜM boyutlarda 16/6 korunur (mobilde de değişmez) */
@media (prefers-reduced-motion: reduce) { .cat-promo-fullimg, .hero-imgbanner img, .hero-cbanner img { animation:none; } }   /* hareket hassasiyeti → drift kapalı */
@media (max-width:680px) { .cat-promo-img { display:none; } .feat-media { flex-basis:42%; padding:14px; } .feat-body { padding:16px 18px; gap:5px; } .feat-code, .feat-brand { display:none; } .feat-swatches { margin:2px 0; } .feat-badge { font-size:10px; padding:4px 9px; } .feat-cta { margin-top:6px; padding:9px 16px; font-size:13px; } }
/* ---- MOBİL (≤560): ana sayfa + banner sıkışıklığını aç ---- */
@media (max-width:560px) {
  .wrap { padding:0 16px; }
  .hero { padding:22px 0 28px; }
  .section { padding:42px 0; }
  .bnr-arrow { display:none; } .bnr-car { padding:0; }  /* dar ekranda okları gizle (swipe+nokta) + yan boşluğu kaldır → banner tam genişlik */
  .bnr-dots { bottom:8px; }
  /* ürün banner'ı mobilde DİKEY kart (görsel üst, detay alt) → yatay sıkışıklık biter, ürün adı tam sığar */
  .feat-banner { flex-direction:column; aspect-ratio:auto; }
  .feat-media { flex:none; width:100%; max-width:none; aspect-ratio:16/10; padding:16px; }
  .feat-body { padding:14px 16px 16px; gap:7px; }
  .feat-brand, .feat-code { display:block; }            /* dikey kartta marka/kod geri gelsin (grid kartıyla tutarlı) */
  .feat-name { -webkit-line-clamp:2; font-size:17px; }
  .feat-price b { font-size:22px; }
  .feat-cta { align-self:stretch; justify-content:center; padding:11px 16px; font-size:13.5px; }
}

/* katalog araç çubuğu + filtre sidebar */
.sortsel { padding:11px 14px; border-radius:11px; border:1px solid var(--border2); background:var(--surface); color:var(--text); font-size:13.5px; font-weight:600; font-family:inherit; cursor:pointer; outline:none; }
.sortsel:hover { border-color:var(--text); }
.filt-toggle { display:none; position:relative; }
.filt-toggle[data-n]:not([data-n=""])::after { content:attr(data-n); position:absolute; top:-6px; right:-6px; min-width:18px; height:18px; border-radius:9px; background:var(--accent); color:#fff; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; }
.cat-layout { display:grid; grid-template-columns:248px minmax(0,1fr); gap:24px; align-items:start; }
.cat-layout .grid { grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); }
.filters { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:6px 18px; position:sticky; top:84px; max-height:calc(100vh - 104px); overflow:auto; }
.filt-top { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:16px 0 14px; border-bottom:1px solid var(--hair); }
.filt-top .ttl { font-family:'Space Grotesk',sans-serif; font-size:15px; font-weight:700; letter-spacing:-.01em; }
.filt-group { padding:16px 0; border-bottom:1px solid var(--hair); }
.filt-group:last-of-type { border-bottom:none; }
.filt-h { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--faint); margin-bottom:12px; }
.filt-price { display:flex; align-items:center; gap:8px; }
.filt-price .input { padding:9px 11px; font-size:13.5px; text-align:center; }
.filt-price span { color:var(--faint); flex:none; }
.filt-check { display:flex; align-items:center; gap:10px; padding:6px 0; font-size:13.5px; cursor:pointer; border-radius:8px; transition:color .15s ease; }
.filt-check:hover { color:var(--accent); }
.filt-check input { width:17px; height:17px; accent-color:var(--accent); cursor:pointer; flex:none; }
.filt-colors { display:flex; flex-wrap:wrap; gap:7px; }
.fcolor { display:inline-flex; align-items:center; gap:7px; padding:6px 11px; border-radius:9px; border:1px solid var(--border2); background:var(--surface); color:var(--text); font-size:12.5px; font-weight:500; cursor:pointer; font-family:inherit; transition:border-color .15s ease, background .15s ease, color .15s ease; }
.fcolor:hover { border-color:var(--text); }
.fcolor[data-on] { border-color:var(--accent); color:var(--accent); background:var(--accent-soft); font-weight:600; }
.fcolor .swatch { width:13px; height:13px; }

/* kart: favori (kalp) + fiyat-CTA */
.pcard .fav { position:absolute; top:10px; right:10px; width:32px; height:32px; border-radius:50%; border:1px solid var(--border); background:rgba(255,255,255,.92); color:var(--muted); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:color .2s ease, transform .15s ease; z-index:2; }
.pcard .fav:hover { color:var(--red); transform:scale(1.08); }
.pcard .fav svg { width:17px; height:17px; }
.pcard .fav[data-on] { color:var(--red); }
.pcard .fav[data-on] svg { fill:var(--red); }
.price-cta { font-size:13px; font-weight:600; color:var(--accent); }
.price-cta:hover { color:var(--accent2); }

@media (max-width:860px) {
  .cat-layout { grid-template-columns:1fr; }
  .filters { display:none; position:static; margin-bottom:18px; }
  .filters.open { display:block; }
  .filt-toggle { display:inline-flex; }
}

/* ---- drawer ---- */
.scrim { position:fixed; inset:0; z-index:90; background:rgba(6,6,9,.6); backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .3s ease; }
.scrim[data-open] { opacity:1; pointer-events:auto; }
.drawer { position:fixed; top:0; right:0; bottom:0; width:min(520px,96vw); z-index:91; background:var(--bg2); border-left:1px solid var(--border); box-shadow:var(--shadow); transform:translateX(100%); transition:transform .34s cubic-bezier(.22,1,.36,1); display:flex; flex-direction:column; }
.drawer[data-open] { transform:none; }
.dr-head { display:flex; align-items:center; gap:12px; padding:18px 22px; border-bottom:1px solid var(--border); flex:none; }
.dr-head .closeb { margin-left:auto; width:38px; height:38px; border-radius:11px; border:1px solid var(--border2); background:transparent; color:var(--text); cursor:pointer; font-size:16px; }
.dr-head .closeb:hover { border-color:var(--text); }
.dr-body { flex:1; overflow-y:auto; padding:22px; }
.dr-foot { border-top:1px solid var(--border); padding:16px 22px; display:flex; gap:10px; align-items:center; background:var(--surface); flex:none; }
/* sipariş çekmecesi aksiyonları (iptal / iade / destek) */
.dr-actions { margin-top:20px; padding-top:18px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:9px; }
.dr-actions .btn { justify-content:flex-start; }
.det-gallery { aspect-ratio:1/1; border-radius:var(--r); background:transparent; overflow:hidden; margin-bottom:14px; position:relative; }   /* PDP beyaz → görsel arkasındaki gri kutu kaldırıldı */
.gal-nav { position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:50%; border:1px solid var(--border); background:rgba(255,255,255,.92); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; transition:border-color .2s ease, color .2s ease; }
.gal-nav:hover { border-color:var(--accent); color:var(--accent); }
.gal-nav svg { width:18px; height:18px; }
.gal-nav.gprev { left:10px; }
.gal-nav.gnext { right:10px; transform:translateY(-50%) rotate(180deg); }
.pdp-login { margin:6px 0 20px; }
.pdp-login p { color:var(--muted); font-size:14px; margin:0 0 12px; line-height:1.5; }
.det-gallery img { width:100%; height:100%; object-fit:contain; object-position:center; padding:22px; }   /* tam görsel — üstten kırpma yok (kartlarla tutarlı) */
/* seçili rengin görsel sayacı (alt-orta hap) — tek görselde gösterilmez */
.gal-count { position:absolute; left:50%; bottom:12px; transform:translateX(-50%); z-index:2; padding:4px 11px; border-radius:100px; background:rgba(20,20,22,.6); color:#fff; font-size:11.5px; font-weight:600; font-family:'JetBrains Mono',monospace; letter-spacing:.02em; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.det-thumbs { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.det-thumb { width:70px; height:70px; padding:0; border-radius:13px; overflow:hidden; border:1px solid var(--border); cursor:pointer; background:var(--surface2); transition:border-color .18s ease, transform .15s ease; }
.det-thumb:hover { border-color:var(--border2); transform:translateY(-2px); }
.det-thumb[data-on] { border-color:var(--accent); }
.det-thumb img { width:100%; height:100%; object-fit:cover; }
.det-colors { display:flex; gap:8px; flex-wrap:wrap; margin:10px 0 18px; }
.det-colors button { display:inline-flex; align-items:center; gap:7px; padding:7px 13px; border-radius:9px; border:1px solid var(--border2); background:var(--surface); color:var(--text); font-size:13px; cursor:pointer; font-family:inherit; }
.det-colors button[data-on] { border-color:var(--accent); color:var(--accent); }
.det-colors .swatch-img { width:34px; height:34px; border-radius:7px; border:none; }   /* daha görünür + bordersiz */
.det-colors button { padding:6px 13px 6px 7px; }   /* görsel sola yaklaşsın, dikeyde sıkışmasın */
.qty { display:inline-flex; align-items:center; border:1px solid var(--border2); border-radius:11px; overflow:hidden; }
.qty button { width:38px; height:42px; border:none; background:transparent; color:var(--text); font-size:18px; font-weight:700; cursor:pointer; }
.qty button:hover { background:var(--surface2); }
.qty span { min-width:42px; text-align:center; font-family:'Space Grotesk',sans-serif; font-weight:700; }
.spec { width:100%; border-collapse:collapse; margin-top:8px; font-size:13.5px; }
.spec td { padding:11px 0; border-bottom:1px solid var(--hair); }
.spec td:first-child { color:var(--muted); width:42%; }
.spec td:last-child { color:var(--text); font-weight:600; }
.spec tr:last-child td { border-bottom:none; }

/* ---- ürün sayfası (urun.html) ---- */
.crumb { font-size:13px; color:var(--faint); margin-bottom:22px; display:flex; gap:6px; flex-wrap:wrap; align-items:center; }
.crumb a { color:var(--muted); } .crumb a:hover { color:var(--accent); } .crumb b { color:var(--text); font-weight:600; }
.pdp { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
.pdp-gallery { position:sticky; top:90px; }
.pdp-info h1 { font-family:'Space Grotesk',sans-serif; font-size:30px; font-weight:700; letter-spacing:-.02em; margin:8px 0 0; line-height:1.15; }
.pdp-price-row { display:flex; align-items:center; gap:12px; margin:18px 0 20px; }
.pdp-price { font-family:'Space Grotesk',sans-serif; font-size:30px; font-weight:700; color:var(--accent); }
.pdp-price-old { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:600; color:var(--faint); text-decoration:line-through; }
.pdp-buy { display:flex; align-items:center; gap:12px; margin:6px 0 20px; }
.pdp-buy .btn { flex:1; }
.pdp-titlerow { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
.pdp-fav { flex:none; width:46px; height:46px; border-radius:50%; border:1px solid var(--border2); background:var(--surface); color:var(--muted); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:color .2s ease, border-color .2s ease, transform .15s ease; }
.pdp-fav:hover { color:var(--red); border-color:var(--red); transform:scale(1.05); }
.pdp-fav svg { width:21px; height:21px; }
.pdp-fav[data-on] { color:var(--red); border-color:var(--red); }
.pdp-fav[data-on] svg { fill:var(--red); }
.pdp-notify { margin:6px 0 20px; gap:9px; }
.pdp-notify svg { width:19px; height:19px; }
.pdp-notify.is-on { background:var(--accent-soft); color:var(--accent); border-color:transparent; }
.pdp-desc { color:var(--muted); font-size:14.5px; line-height:1.7; margin:4px 0 18px; }
.pdp-desc p { margin:0 0 10px; } .pdp-desc p:last-child { margin-bottom:0; }
.pdp-desc ul, .pdp-desc ol { margin:8px 0; padding-left:20px; } .pdp-desc li { margin:3px 0; }
.pdp-desc strong, .pdp-desc b { font-weight:700; color:var(--text); }
.pdp-desc a { color:var(--accent); text-decoration:underline; }
.spec-h { font-family:'Space Grotesk',sans-serif; font-size:15px; font-weight:700; letter-spacing:-.01em; margin:24px 0 2px; }
/* ürün görsellerini indir (ZIP) — bayiye özel */
.imgdl-btn { width:100%; justify-content:center; gap:9px; margin-top:18px; border:1px solid var(--border2); background:var(--surface); color:var(--text); font-weight:600; }
.imgdl-btn:hover:not(:disabled) { border-color:var(--accent); color:var(--accent); background:var(--accent-soft); }
.imgdl-btn:disabled { opacity:.7; cursor:default; }
.imgdl-note { font-size:11.5px; color:var(--faint); margin-top:8px; text-align:center; line-height:1.5; }
@media (max-width:860px) { .pdp { grid-template-columns:1fr; gap:24px; } .pdp-gallery { position:static; } }

/* ======================================================================
   HESABIM
   ====================================================================== */
.auth-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:880px; margin:0 auto; align-items:start; }
.auth-single { max-width:460px; margin:0 auto; }
.authcard { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:28px; }
.authcard h1 { font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:700; }
.authcard .sub { color:var(--muted); font-size:13.5px; margin:6px 0 20px; line-height:1.5; }
.authcard .alt { text-align:center; font-size:13px; color:var(--muted); margin-top:16px; }
.authcard .alt a { color:var(--accent); font-weight:600; text-decoration:underline; text-underline-offset:3px; }

.pending { max-width:520px; margin:24px auto; text-align:center; }
.pending .ic { width:64px; height:64px; border-radius:18px; background:var(--surface2); border:1px solid var(--border); color:var(--muted); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.pending .ic svg { width:30px; height:30px; }

/* dashboard */
.acct { display:grid; grid-template-columns:240px 1fr; gap:24px; align-items:start; }
.acct-side { border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); padding:16px; position:sticky; top:84px; }
.acct-who { display:flex; align-items:center; gap:11px; padding:6px 6px 16px; border-bottom:1px solid var(--border); margin-bottom:10px; }
.acct-who .av { width:42px; height:42px; border-radius:50%; background:var(--ink); color:var(--ink-text); font-family:'Space Grotesk',sans-serif; font-weight:700; display:flex; align-items:center; justify-content:center; flex:none; }
.acct-who .nm { font-weight:700; font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.acct-who .sub { font-size:11.5px; color:var(--muted); }
.navbtn { display:flex; align-items:center; gap:11px; width:100%; padding:11px 12px; border-radius:11px; border:none; background:transparent; color:var(--text); font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; text-align:left; margin-bottom:2px; }
.navbtn svg { width:18px; height:18px; color:var(--muted); }
.navbtn:hover { background:var(--surface2); }
.navbtn[data-on] { background:var(--accent-soft); color:var(--accent); }
.navbtn[data-on] svg { color:var(--accent); }
.navbtn .ct { margin-left:auto; min-width:20px; height:20px; padding:0 6px; border-radius:10px; background:var(--accent); color:#fff; font-size:11px; font-weight:700; display:none; align-items:center; justify-content:center; }
.acct-main { min-width:0; }
.acct-h1 { font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:700; }
.acct-lead { color:var(--muted); font-size:14.5px; margin:6px 0 22px; }
.mob-tabs { display:none; gap:8px; flex-wrap:wrap; margin-bottom:20px; }

.stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; margin-bottom:24px; }
.stat { border:1px solid var(--border); border-radius:var(--r); background:var(--surface); padding:18px; }
.stat .k { font-size:12.5px; color:var(--faint); }
.stat .v { font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:700; margin-top:6px; }

.co-line { display:flex; align-items:flex-start; gap:13px; padding:14px 0; border-bottom:1px solid var(--hair); }
.co-line .im { width:52px; height:52px; border-radius:11px; background:var(--surface2); overflow:hidden; flex:none; }
.co-line .im img { width:100%; height:100%; object-fit:cover; }
.co-line .body { flex:1; min-width:0; }
.co-ctl { display:flex; align-items:center; gap:12px; margin-top:9px; }
.co-step { display:inline-flex; align-items:center; border:1px solid var(--border2); border-radius:9px; overflow:hidden; background:var(--surface); }
.co-step button { width:29px; height:29px; border:none; background:transparent; color:var(--text); font-size:16px; font-weight:700; cursor:pointer; line-height:1; display:inline-flex; align-items:center; justify-content:center; }
.co-step button:hover { background:var(--surface2); color:var(--accent); }
.co-step span { min-width:32px; text-align:center; font-size:13.5px; font-weight:700; font-family:'Space Grotesk',sans-serif; color:var(--text); }
.co-rm { border:none; background:transparent; color:var(--faint); cursor:pointer; font-size:12.5px; font-weight:600; display:inline-flex; align-items:center; gap:5px; padding:4px 2px; }
.co-rm svg { width:13px; height:13px; }
.co-rm:hover { color:#E5484D; }
.co-clear { width:100%; margin-top:10px; padding:11px; border-radius:12px; background:transparent; border:1px solid var(--border2); color:var(--muted); font-weight:600; font-size:13px; font-family:inherit; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; gap:7px; transition:border-color .18s ease, color .18s ease; }
.co-clear svg { width:14px; height:14px; }
.co-clear:hover { border-color:#E5484D; color:#E5484D; }
.co-tot { display:flex; justify-content:space-between; font-size:14px; color:var(--muted); padding:6px 0; }
.co-tot.grand { border-top:1px solid var(--border); margin-top:8px; padding-top:14px; font-size:16px; color:var(--text); }
.co-tot.grand b { font-family:'Space Grotesk',sans-serif; font-size:22px; color:var(--accent); }
.co-ok { text-align:center; padding:34px 8px; }
.co-ok .ic { width:60px; height:60px; border-radius:50%; background:var(--green-soft); color:var(--green); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.co-ok .ic svg { width:30px; height:30px; }

.otable { width:100%; border-collapse:collapse; font-size:13.5px; }
.otable th { text-align:left; font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--faint); font-weight:600; padding:0 12px 12px; }
.otable td { padding:13px 12px; border-top:1px solid var(--hair); }
.otable tr.row { cursor:pointer; }
.otable tr.row:hover td { background:var(--surface2); }
.pill { display:inline-flex; align-items:center; gap:6px; padding:4px 11px; border-radius:100px; font-size:12px; font-weight:600; background:var(--surface2); color:var(--muted); }
.pill::before { content:""; width:6px; height:6px; border-radius:50%; background:currentColor; }
.pill-blue { background:var(--blue-soft); color:var(--blue); }
.pill-green { background:var(--green-soft); color:var(--green); }
.pill-amber { background:var(--amber-soft); color:var(--amber); }
.pill-gray { background:var(--surface2); color:var(--muted); }

.grid2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* panel başlığı (form/panel üst yazısı) */
.panel-h { font-family:'Space Grotesk',sans-serif; font-size:16px; font-weight:700; letter-spacing:-.01em; margin-bottom:16px; }
select.input { cursor:pointer; appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239A9AA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 13px center; padding-right:38px; }
textarea.input { resize:vertical; min-height:96px; line-height:1.55; }
.ln { color:var(--accent); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.ln:hover { color:var(--accent2); }

/* destek & talepler */
.req-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:start; }
.req-item { display:flex; align-items:center; gap:12px; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--hair); }
.req-item:last-child { border-bottom:none; }
.req-subj { font-weight:700; font-size:13.5px; line-height:1.35; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width:860px) { .req-grid { grid-template-columns:1fr; } }

/* ---- merkez modal (toplu sipariş vb.) ---- */
.modal-scrim { position:fixed; inset:0; z-index:350; display:flex; align-items:center; justify-content:center; padding:20px; background:rgba(8,8,12,.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .25s ease; }
.modal-scrim[data-open] { opacity:1; pointer-events:auto; }
.modal-card { width:min(520px,100%); max-height:90vh; overflow:auto; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); box-shadow:var(--shadow); padding:22px; transform:translateY(14px) scale(.98); transition:transform .28s cubic-bezier(.22,1,.36,1); }
.modal-scrim[data-open] .modal-card { transform:none; }
.modal-head { display:flex; align-items:flex-start; gap:12px; justify-content:space-between; margin-bottom:14px; }
.modal-foot { display:flex; gap:10px; justify-content:flex-end; margin-top:16px; }
.closeb { width:36px; height:36px; flex:none; border-radius:10px; border:1px solid var(--border2); background:transparent; color:var(--text); cursor:pointer; font-size:15px; line-height:1; }
.closeb:hover { border-color:var(--accent); color:var(--accent); }
.bulk-res { margin-top:12px; display:flex; flex-direction:column; gap:7px; }
.bulk-res:empty { display:none; }
.bulk-ok { font-size:13px; font-weight:600; color:var(--green); background:var(--green-soft); padding:9px 12px; border-radius:10px; }
.bulk-err { font-size:13px; font-weight:600; color:var(--red); background:var(--red-soft); padding:9px 12px; border-radius:10px; }
/* Toplu sipariş — engellemeyen kalıcı panel (yalnız butonla açılır; açıkken site gezilebilir; içerik localStorage'da) */
.bulk-panel { position:fixed; right:20px; bottom:20px; z-index:80; width:min(400px,94vw); max-height:min(74vh,620px); display:none; flex-direction:column; background:var(--surface); border:1px solid var(--border); border-radius:16px; box-shadow:0 18px 50px rgba(0,0,0,.22); overflow:hidden; }
.bulk-panel[data-open] { display:flex; animation:bulkIn .22s cubic-bezier(.22,1,.36,1); }
@keyframes bulkIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }
.bulk-head { display:flex; align-items:flex-start; gap:12px; padding:15px 16px 12px; border-bottom:1px solid var(--border); }
.bulk-title { font-weight:700; font-size:15px; }
.bulk-hint { font-size:12px; color:var(--faint); margin:3px 0 0; line-height:1.4; }
.bulk-ta { margin:12px 16px 0; width:calc(100% - 32px); box-sizing:border-box; resize:vertical; min-height:104px; font-family:'Space Grotesk',ui-monospace,monospace; font-size:13px; line-height:1.6; }
.bulk-panel .bulk-res { margin:10px 16px 0; overflow-y:auto; }
.bulk-foot { display:flex; gap:8px; justify-content:flex-end; padding:12px 16px 16px; margin-top:auto; }
@media (max-width:560px) { .bulk-panel { right:10px; left:10px; bottom:10px; width:auto; max-height:80vh; } }

/* ---- toast ---- */
.toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%,20px); background:var(--elev); border:1px solid var(--border2); color:var(--text); padding:13px 20px; border-radius:12px; box-shadow:var(--shadow); font-size:14px; font-weight:600; opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease; z-index:300; }
.toast[data-show] { opacity:1; transform:translate(-50%,0); }

/* ---- CLS + sticky: display:contents → sticky header kısa sarmalayıcıya hapsolmaz,
   sayfa boyunca YAPIŞIK kalır. Yükseklik .sc-ph placeholder + enjekte .sc-hdr'den gelir. ---- */
[data-site-header] { display:contents; }
[data-hero-cta] { min-height:50px; }
/* kabuk yüklenene kadar gösterilen statik logo şeridi → topbar geçişlerde boş kalmaz */
.sc-ph { height:68px; border-bottom:1px solid var(--border); display:flex; align-items:center; max-width:1320px; margin:0 auto; padding:0 28px; }
.sc-ph img { height:30px; width:auto; }

/* ---- skeleton (yükleniyor) + giriş animasyonu ---- */
@keyframes sk-shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
.sk { background:linear-gradient(90deg,var(--surface2) 25%,var(--hair) 37%,var(--surface2) 63%); background-size:200% 100%; animation:sk-shimmer 1.4s ease infinite; border-radius:8px; }
.skcard { border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; background:var(--surface); }
.skcard .sk-img { aspect-ratio:1/1; border-radius:0; }
.skcard .sk-b { padding:13px 14px 16px; display:flex; flex-direction:column; gap:9px; }
.sk-line { height:11px; }
.sk-tile { border-radius:var(--r-lg); aspect-ratio:4/3; }
.sk-catcard { border-radius:var(--r-lg); height:94px; }   /* gerçek .cat-card yüksekliğiyle eşleşir → kategori bölümü yüklenince kaymaz (CLS) */
@keyframes fade-up { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.enter { animation:fade-up .4s cubic-bezier(.22,1,.36,1) both; }
/* scroll-reveal: kaydırdıkça yumuşak beliren bölümler */
html { scroll-behavior:smooth; }
[data-reveal] { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .sk { animation:none; }
  .enter { animation:none; }
  [data-reveal] { opacity:1; transform:none; transition:none; }
  .add svg { transition:none; }
  .add.added, .iwc-bump { animation:none; }
  html { scroll-behavior:auto; }
}

/* sipariş yazdırma/PDF: #iway-print ekranda gizli; yazdırırken sayfadaki her şey gizlenip yalnız bu belge basılır */
#iway-print { display:none; }
@media print {
  body > * { display:none !important; }
  #iway-print { display:block !important; }
  @page { margin:14mm; }
}

/* ---- logo / tag (legal + 404) ---- */
.logo { height:28px; width:auto; }
.tag { font-size:9px; font-weight:700; letter-spacing:.14em; color:var(--muted); border:1px solid var(--border2); border-radius:5px; padding:2px 6px; }

/* ---- legal pages + mini footer ---- */
.legal { max-width:760px; margin:0 auto; padding:48px 24px 80px; }
.legal h1 { font-family:'Space Grotesk',sans-serif; font-size:30px; font-weight:700; letter-spacing:-.02em; }
.legal h2 { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:700; margin:28px 0 8px; }
.legal .upd { color:var(--faint); font-size:13px; margin:8px 0 18px; }
.legal p, .legal li { color:var(--muted); font-size:14.5px; line-height:1.7; }
.legal ul { padding-left:20px; margin:8px 0; }
.legal a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; }
/* hukuk sayfası not kutusu — ESKİDEN .ph idi; kart foto container'ı .ph ile çakışıp karta border/margin sızdırıyordu → .ph-note */
.ph-note { background:var(--surface2); border:1px solid var(--border); border-radius:12px; padding:13px 16px; font-size:13.5px; color:var(--text); margin:16px 0; line-height:1.6; }
.mini-foot { border-top:1px solid var(--border); background:var(--bg2); }
.mini-foot-in { max-width:1240px; margin:0 auto; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:13px; color:var(--faint); }
.mini-foot .lk { display:flex; gap:16px; flex-wrap:wrap; }
.mini-foot a:hover { color:var(--accent); }

/* ---- responsive ---- */
@media (max-width:860px) {
  .acct { grid-template-columns:1fr; }
  .acct-side { display:none; }
  .mob-tabs { display:flex; }
  .auth-grid { grid-template-columns:1fr; }
  .grid2 { grid-template-columns:1fr; }
}
@media (max-width:560px) {
  .section { padding:48px 0; }
  .hero { padding:48px 0 40px; }
  .hero .facts { gap:22px; }
  .wrap { padding:0 16px; }
}
