/* ==========================================================================
   EVİA — Ağıllı Ev Texnikası
   Tamamilə orijinal premium dizayn sistemi
   ========================================================================== */

:root {
    /* Rəng palitrası */
    --ink:        #12141d;
    --ink-2:      #3a3f52;
    --muted:      #6b7185;
    --line:       #e9ebf2;
    --line-2:     #f1f2f7;
    --bg:         #ffffff;
    --bg-soft:    #f6f7fb;
    --bg-soft-2:  #eef1f8;

    --brand:      #2f8f77;
    --brand-600:  #26775f;
    --brand-700:  #1f6350;
    --brand-soft: #e4f2ee;
    --band:       #73b5a1;
    --band-dark:  #5c9e8a;

    --accent:     #ff6a3d;     /* CTA / vurğu */
    --accent-600: #f0521f;

    --sale:       #e8384f;     /* endirim / qiymət */
    --sale-soft:  #ffeef0;
    --success:    #12b886;
    --success-soft:#e6f8f1;
    --gold:       #ffb703;

    /* Kölgələr */
    --sh-xs: 0 1px 2px rgba(18,20,29,.06);
    --sh-sm: 0 4px 14px rgba(18,20,29,.06);
    --sh-md: 0 10px 30px rgba(18,20,29,.08);
    --sh-lg: 0 20px 55px rgba(18,20,29,.12);
    --sh-brand: 0 12px 26px rgba(47,143,119,.30);

    /* Radiuslar */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-pill: 999px;

    --container: 1280px;
    --header-h: 84px;

    --ease: cubic-bezier(.22,.61,.36,1);
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--brand); color: #fff; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Köməkçi siniflər ------------------------------------------------------- */
.muted { color: var(--muted); }
.hide  { display: none !important; }
.text-center { text-align: center; }

.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}
.section-head h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -.02em;
}
.section-head p { color: var(--muted); margin-top: 4px; font-size: 14px; }
.section-head .link-all {
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s var(--ease);
}
.section-head .link-all:hover { gap: 10px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
}

/* Düymələr --------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { background: var(--brand-600); transform: translateY(-2px); }

.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(255,106,61,.32); }
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

.btn--ghost { background: var(--bg-soft); color: var(--ink); }
.btn--ghost:hover { background: var(--bg-soft-2); }

.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn--block { width: 100%; }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--sm { padding: 9px 15px; font-size: 13px; }

/* Nişanlar --------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}
.badge--sale    { background: var(--sale); color: #fff; }
.badge--new     { background: var(--success); color: #fff; }
.badge--best    { background: var(--ink); color: #fff; }
.badge--soft    { background: var(--brand-soft); color: var(--brand); }
.badge--gold    { background: #fff6e0; color: #a9730a; }

.stock-dot { display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700; }
.stock-dot::before { content:''; width:8px; height:8px; border-radius:50%; }
.stock-dot.in::before  { background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); }
.stock-dot.out::before { background: #c2c7d6; box-shadow: 0 0 0 3px #eef0f5; }
.stock-dot.in  { color: var(--success); }
.stock-dot.out { color: var(--muted); }

/* ==========================================================================
   HEADER
   ========================================================================== */
/* Üst panel (ağ) */
.topbar {
    background: #fff;
    color: var(--ink-2);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; justify-content: flex-start; gap: clamp(12px, 1.8vw, 26px); height: 50px; }
.topbar a { color: var(--ink-2); transition: color .2s; }
.topbar a:hover { color: var(--brand); }
/* top nav linklər */
.topbar-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.topbar-nav a { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-2); }
.topbar-nav a:hover { color: var(--brand); }
/* header məzmunu bir az sola / geniş */
.topbar .container, .header .container { max-width: 1440px; }
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-left a { position: relative; font-weight: 600; padding: 9px 14px; border-radius: var(--r-pill); transition: background .18s, color .18s; }
.topbar-left a:hover { background: var(--bg-soft); color: var(--brand); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right .divider { width: 1px; height: 22px; background: var(--line); }
.tb-socials { display: flex; gap: 11px; }
.tb-socials a { width: 46px; height: 46px; border-radius: 13px; background: var(--bg-soft); color: var(--ink-2); display: grid; place-items: center; transition: background .2s, color .2s, transform .2s; }
.tb-socials a svg { width: 22px; height: 22px; }
.tb-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.tb-phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; padding: 9px 14px; border-radius: var(--r-pill); transition: background .18s; }
.tb-phone:hover { background: var(--bg-soft); }
.tb-phone svg { width: 18px; height: 18px; }

/* Dil seçimi — kursoru üzərinə gətirəndə səliqəli açılır; bayraqlar mətndən solda */
.lang-switch { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.lang-current { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 15px; font-weight: 700; padding: 9px 14px; border-radius: var(--r-pill); transition: background .18s, color .18s; }
.lang-current .ico { transition: transform .25s var(--ease); }
.lang-switch:hover .lang-current { color: var(--brand); background: var(--bg-soft); }
.lang-switch:hover .lang-current .ico { transform: rotate(180deg); }
.flag-svg { width: 24px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(18,20,29,.08); flex-shrink: 0; }
.lang-menu {
    position: absolute; top: calc(100% + 4px); right: 0; min-width: 224px;
    background: #fff; border-radius: 16px; box-shadow: var(--sh-lg);
    border: 1px solid var(--line);
    z-index: 140; padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97); transform-origin: top right;
    transition: opacity .2s var(--ease), transform .22s var(--ease), visibility .22s;
}
.lang-switch:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition-delay: .06s; }
.lang-menu a { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 11px; color: var(--ink); font-size: 15px; font-weight: 600; transition: background .15s; }
.lang-menu a:hover { background: var(--bg-soft); }
.lang-menu a.active { color: var(--brand); background: var(--brand-soft); }
/* Header dil seçici — yanındakı ikonlara uyğun kiçik + açılan dillər kiçik */
.header-util .lang-current { font-size: 12.5px; padding: 7px 8px; gap: 6px; }
.header-util .lang-current .flag-svg { width: 20px; height: 13px; }
.header-util .lang-menu { min-width: 150px; padding: 6px; }
.header-util .lang-menu a { font-size: 12.5px; padding: 7px 10px; gap: 9px; }
.header-util .lang-menu a .flag-svg { width: 20px; height: 13px; }

/* Main header — scroll zamanı SABİT QALMIR (adi axın) */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
/* nav sırası da fixed (əsas sıranın altında) */
.topbar { position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 199; }
/* fixed header üçün məzmun yuxarıdan boşluq (ana səhifədə hero header-in altında) */
body { padding-top: calc(var(--header-h) + 50px); }
body.has-hero { padding-top: 0; }
@media (max-width: 720px) { body { padding-top: var(--header-h); } body.has-hero { padding-top: 0; } }
.header-main { display: flex; align-items: center; justify-content: flex-start; gap: clamp(12px, 1.6vw, 22px); height: var(--header-h); }

/* Loqo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
    width: 44px; height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--brand), #6fc7ae);
    display: grid; place-items: center;
    box-shadow: var(--sh-brand);
    overflow: hidden;
}
.logo-mark svg { width: 25px; height: 25px; }
.logo-text { line-height: 1; }
.logo-text b { font-size: 23px; font-weight: 800; letter-spacing: -.03em; display: block; }
.logo-text small { font-size: 10.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

/* Header ikonları — sadə, etiketsiz (Haier kimi) */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.hicon {
    position: relative; width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center; color: var(--ink-2);
    transition: background .2s, color .2s;
}
.hicon svg { width: 25px; height: 25px; }
.hicon:hover { background: var(--bg-soft); color: var(--brand); }
.hicon.heart:hover { color: var(--sale); }
.hicon .count {
    position: absolute; top: 3px; right: 3px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 800; border-radius: 999px;
    display: grid; place-items: center; border: 2px solid #fff;
    transform: scale(0); transition: transform .25s var(--ease);
}
.hicon .count.show { transform: scale(1); }
.hicon.heart .count { background: var(--sale); }

/* Nav sırası (sıra 3 — ПОКУПАТЕЛЯМ kimi linklər) */
.navbar { border-top: 1px solid var(--line); }
.navbar-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); height: 48px; }
.navbar-nav a { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-2); transition: color .2s; }
.navbar-nav a:hover { color: var(--brand); }
/* Utility çatdırılma qeydi */
.tb-note { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: var(--ink-2); }
.tb-note svg { color: var(--brand); }
/* header-util (telefon · sosial · dil) — axtarışdan sağda */
.header-util { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: auto; }
.header-util .tb-phone { font-size: 14px; font-weight: 700; color: var(--ink); padding: 8px 10px; }
.header-util .tb-phone svg { color: var(--brand); }
.header-util .tb-socials { gap: 2px; }
.header-util .tb-socials a { width: 40px; height: 40px; border-radius: 11px; background: transparent; color: var(--ink-2); }
.header-util .tb-socials a svg { width: 19px; height: 19px; }
.header-util .tb-socials a:hover { background: var(--bg-soft); color: var(--brand); transform: none; }
/* nav sırasındakı ikonlar — sağda, kiçik (nav mətninə uyğun) */
.topbar .header-actions { margin-left: auto; gap: 2px; }
.topbar .header-actions .hicon { width: 34px; height: 34px; }
.topbar .header-actions .hicon svg { width: 20px; height: 20px; }
.topbar .header-actions .hicon .count { top: -1px; right: -1px; min-width: 16px; height: 16px; font-size: 10px; }

/* Burger (mobil) */
.icon-btn { position: relative; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--ink-2); transition: background .2s, color .2s, transform .15s; }
.icon-btn svg { width: 24px; height: 24px; }
.icon-btn:hover { background: var(--bg-soft); color: var(--brand); }
.icon-btn:active { transform: scale(.92); }
.burger { display: none; }

/* Katalog düyməsi — ağ header içində (Haier formasında teal düymə) */
.catbar { display: none; }
.cat-wrap { position: relative; flex-shrink: 0; }
.catalog-btn {
    display: flex; align-items: center; gap: 9px;
    background: var(--brand); color: #fff;
    padding: 13px 20px; border-radius: 12px;
    font-weight: 700; font-size: 14.5px;
    box-shadow: 0 8px 20px rgba(47,143,119,.28);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.catalog-btn svg { width: 18px; height: 18px; color: #fff; }
.catalog-btn .cb-chev { transition: transform .25s var(--ease); }
.cat-wrap.active .cb-chev { transform: rotate(180deg); }
.catalog-btn:hover { background: var(--brand-600); transform: translateY(-1px); }
.catalog-btn:active { transform: scale(.98); }

/* Axtarış — ağ header-də, çevik enli */
.search { position: relative; flex: 1 1 auto; max-width: 620px; }
.search-box { display: flex; align-items: center; width: 100%; background: var(--bg-soft); border: 2px solid var(--line); border-radius: 12px; padding: 2px 2px 2px 16px; transition: box-shadow .2s, border-color .2s, background .2s; }
.search-box:focus-within { background: #fff; border-color: var(--brand); }
.search-box:focus-within { box-shadow: 0 0 0 4px rgba(255,255,255,.55); }
.search-box input { flex: 1; min-width: 0; border: none; outline: none; background: none; padding: 10px 8px; font-size: 14px; }
.search-box .search-submit { width: 42px; height: 38px; background: var(--brand); color: #fff; border-radius: 8px; display: grid; place-items: center; transition: background .2s; flex-shrink: 0; }
.search-box .search-submit:hover { background: var(--brand-600); }

.search-panel {
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    background: #fff; border-radius: var(--r-lg);
    box-shadow: var(--sh-lg); border: 1px solid var(--line);
    padding: 10px; z-index: 120; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    max-height: 70vh; overflow-y: auto;
}
.search-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-panel .sp-head { display:flex; justify-content:space-between; align-items:center; padding: 6px 10px 10px; font-size:12.5px; color:var(--muted); font-weight:600; }
.sp-item { display: flex; align-items: center; gap: 13px; padding: 9px 10px; border-radius: 12px; transition: background .15s; }
.sp-item:hover { background: var(--bg-soft); }
.sp-thumb { width: 50px; height: 50px; border-radius: 11px; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.sp-thumb svg { width: 84%; height: 84%; }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-info { flex: 1; min-width: 0; }
.sp-info b { font-size: 13.5px; font-weight: 700; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-info small { color: var(--muted); font-size: 12px; }
.sp-price { font-weight: 800; color: var(--ink); font-size: 14px; white-space: nowrap; }
.sp-price s { color: var(--muted); font-weight: 500; font-size: 12px; margin-right: 4px; }
.sp-all { display:block; text-align:center; padding: 12px; color: var(--brand); font-weight: 700; font-size: 13.5px; border-top: 1px solid var(--line-2); margin-top: 6px; }
.sp-empty { padding: 30px; text-align: center; color: var(--muted); font-size: 14px; }

/* Header ikon düymələri */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.icon-btn {
    position: relative;
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid; place-items: center;
    color: var(--ink-2);
    transition: background .2s, color .2s, transform .15s;
}
.icon-btn svg { width: 23px; height: 23px; }
.icon-btn:hover { background: var(--bg-soft); color: var(--brand); }
.icon-btn:active { transform: scale(.92); }
.icon-btn .count {
    position: absolute; top: 5px; right: 5px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 800;
    border-radius: 999px;
    display: grid; place-items: center;
    border: 2px solid #fff;
    transform: scale(0); transition: transform .25s var(--ease);
}
.icon-btn .count.show { transform: scale(1); }
.icon-btn.heart .count { background: var(--sale); }

.burger { display: none; }

/* Mega menu (Kataloq) — yalnız kateqoriyalar; hover-də istehsalçılar sağda açılır */
.megamenu {
    position: absolute; top: calc(100% + 92px); left: 0;
    background: #fff; border-radius: 16px;
    box-shadow: var(--sh-lg); border: 1px solid var(--line);
    padding: 14px; z-index: 130;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.megamenu.open { opacity: 1; visibility: visible; transform: translateY(0); }

.mm-title {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted); padding: 6px 12px 10px;
}

/* Kateqoriya siyahısı — geniş menyu (əvvəlki hal): kateqoriyalar sol sütun,
   kursor gətirəndə istehsalçılar sağ paneldə SABİT yerdə açılır (aşağı düşmür, kənara çıxmır) */
.megamenu--flyout { width: min(787px, calc(100vw - 210px)); overflow: hidden; max-height: min(580px, calc(86vh - 160px)); display: flex; flex-direction: column; align-items: flex-start; }
.megamenu--flyout .mm-count { display: none; }   /* rəqəmlər silindi */
/* kateqoriyalar sol sütun — scroll YALNIZ burada (istehsalçılar dəyişmir) */
.mm-scroll { width: 344px; flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden; }
.megamenu--flyout .mm-cat { position: static; max-width: none; }
.mm-cat { position: relative; }
/* istehsalçılar — menyuya görə SABİT sağ panel (kateqoriya scroll-undan təsirlənmir) */
.megamenu--flyout .mm-flyout {
    position: absolute; top: 14px; left: 362px; right: 14px; bottom: 14px;
    width: auto; max-height: none; overflow-y: auto;
    transform: none; box-shadow: none; border: none; border-left: 1px solid var(--line);
    border-radius: 0; padding: 4px 6px 4px 18px;
}
.mm-cat:hover .mm-flyout { transform: none; }
.mm-cat-link {
    display: flex; align-items: center; gap: 12px;
    padding: 7px 12px; border-radius: 11px;
    font-weight: 600; font-size: 14px; color: var(--ink);
    transition: background .15s;
}
.mm-cat-link:hover { background: var(--bg-soft); }
.mm-ico { width: 34px; height: 34px; border-radius: 10px; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; }
.mm-ico svg { width: 22px; height: 22px; }
.mm-cat-link .mm-count { margin-left: auto; font-size: 12px; color: var(--muted); font-weight: 700; }
.mm-arrow { color: var(--muted); opacity: 0; transition: opacity .15s; margin-left: 4px; }
.mm-cat:hover .mm-arrow { opacity: 1; }

/* İstehsalçılar qutusu — kateqoriyaya hover edəndə sağda açılan ayrıca qutu */
.mm-flyout {
    position: absolute; top: -8px; left: calc(100% + 8px);
    width: 300px; max-height: 420px; overflow-y: auto;
    background: #fff; border-radius: 16px; padding: 12px;
    box-shadow: var(--sh-lg); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateX(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
    z-index: 10;
}
.mm-cat:hover .mm-flyout { opacity: 1; visibility: visible; transform: translateX(0); }
.mm-flyout a {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 12px; border-radius: 12px;
    font-weight: 600; font-size: 14px; color: var(--ink);
    transition: background .15s;
}
.mm-flyout a:hover { background: var(--brand-soft); }
.mm-brand {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; font-weight: 800; font-size: 16px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 30px 0 10px; }
.hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 20px; }
.hero-main {
    position: relative; overflow: hidden;
    border-radius: var(--r-xl);
    background: linear-gradient(120deg, #101533 0%, #23306e 55%, #2b59ff 130%);
    color: #fff; padding: 54px 56px; min-height: 380px;
    display: flex; flex-direction: column; justify-content: center;
}
.hero-main::after {
    content: ''; position: absolute; right: -60px; bottom: -60px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,106,61,.32), transparent 62%);
}
.hero-main::before {
    content: ''; position: absolute; right: 30px; top: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(107,139,255,.35), transparent 60%);
}
.hero-main > * { position: relative; z-index: 2; }
.hero-main .eyebrow { color: #9fb4ff; }
.hero-main h1 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 16px 0 14px; max-width: 15ch; }
.hero-main p { color: #c4cbe6; font-size: 16px; max-width: 42ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 34px; }
.hero-stats b { font-size: 26px; font-weight: 800; display: block; letter-spacing: -.02em; }
.hero-stats span { font-size: 12.5px; color: #9aa4c8; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.hero-card {
    position: relative; overflow: hidden;
    border-radius: var(--r-xl); padding: 28px 30px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 178px;
    transition: transform .3s var(--ease);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card.c1 { background: linear-gradient(130deg, #fff0e9, #ffe1d4); color: #7a2e12; }
.hero-card.c2 { background: linear-gradient(130deg, #e6f8f1, #d3f2e6); color: #0d6b4d; }
.hero-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.hero-card p { font-size: 13px; opacity: .85; margin-top: 3px; }
.hero-card .hc-art { position: absolute; right: -10px; bottom: -14px; width: 120px; height: 120px; opacity: .9; }
.hero-card .hc-link { font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; z-index: 2; }

/* Etibar zolağı */
.trust { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ti-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.trust-item svg { width: 24px; height: 24px; }
.trust-item b { font-size: 14px; font-weight: 700; display: block; }
.trust-item span { font-size: 12.5px; color: var(--muted); }

/* ==========================================================================
   KATEQORIYA TILE-LARI
   ========================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile {
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--r-lg);
    padding: 22px 16px;
    text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.cat-tile:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--sh-md); border-color: var(--line); }
.cat-tile .ct-art { width: 92px; height: 92px; margin: 0 auto 12px; transition: transform .3s var(--ease); }
.cat-tile:hover .ct-art { transform: scale(1.08) rotate(-3deg); }
.cat-tile b { font-size: 13.5px; font-weight: 700; display: block; letter-spacing: -.01em; }
.cat-tile span { font-size: 11.5px; color: var(--muted); }

/* ==========================================================================
   MƏHSUL KARTI
   ========================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
    position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }

.card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: grid; place-items: center;
    overflow: hidden;
}
.card-media > a { display: block; width: 100%; height: 100%; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .4s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .appliance-svg { width: 78%; height: 78%; filter: drop-shadow(0 16px 22px rgba(18,20,29,.14)); transition: transform .4s var(--ease); }
.card:hover .card-media .appliance-svg { transform: translateY(-4px) scale(1.05); }

.card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 3; }

.card-tools { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.card-tool {
    width: 38px; height: 38px; border-radius: 12px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
    box-shadow: var(--sh-sm);
    display: grid; place-items: center; color: var(--ink-2);
    opacity: 0; transform: translateX(10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s, color .2s;
}
.card:hover .card-tool { opacity: 1; transform: translateX(0); }
/* Ürək ikonu şəkil üzərində həmişə görünür (sabit) */
.card-tool.heart { opacity: 1; transform: translateX(0); }
.card-tool:nth-child(2) { transition-delay: .05s; }
.card-tool svg { width: 19px; height: 19px; }
.card-tool:hover { background: var(--brand); color: #fff; }
.card-tool.active { color: var(--sale); }
.card-tool.active:hover { background: var(--sale); color: #fff; }
.card-tool.active svg { fill: currentColor; }
.card-tool.compare.active { color: var(--brand); }

.card-body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.card-brand { font-size: 11.5px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
.card-title { font-size: 14.5px; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; }
.card-title:hover { color: var(--brand); }
.card-rating { display: flex; align-items: center; gap: 5px; margin: 8px 0; font-size: 12.5px; color: var(--muted); }
.card-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }
.card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding-top: 12px; }
.card-price .now { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.card-price .now .cur { font-size: 14px; font-weight: 700; }
.card-price s { color: var(--muted); font-size: 13px; font-weight: 500; }
.card-add {
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; flex-shrink: 0;
    transition: background .2s, color .2s, transform .15s;
}
.card-add svg { width: 22px; height: 22px; }
.card-add:hover { background: var(--brand); color: #fff; transform: scale(1.06); }
.card-add:active { transform: scale(.9); }
.card-add.done { background: var(--success); color: #fff; }

/* Kartın alt hissəsində müqayisə + səbət (müqayisə səbətin solunda) */
.card-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.card-cmp {
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--bg-soft); color: var(--ink-2);
    display: grid; place-items: center; flex-shrink: 0;
    transition: background .2s, color .2s, transform .15s;
}
.card-cmp svg { width: 21px; height: 21px; }
.card-cmp:hover { background: var(--brand-soft); color: var(--brand); transform: scale(1.06); }
.card-cmp:active { transform: scale(.9); }
.card-cmp.active { background: var(--brand); color: #fff; }

/* Yatay (banner) promo blok */
.promo-band {
    border-radius: var(--r-xl); overflow: hidden; position: relative;
    background: linear-gradient(115deg, #fff4e8, #ffe8dc 60%, #ffd9c6);
    padding: 44px 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.promo-band .pb-txt { max-width: 60%; position: relative; z-index: 2; }
.promo-band h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; color: #7a2e12; }
.promo-band p { color: #a24a25; margin: 8px 0 20px; font-size: 15px; }
.promo-band .pb-art { display: flex; gap: 10px; }
.promo-band .pb-art .appliance-svg { width: 130px; height: 130px; filter: drop-shadow(0 18px 22px rgba(122,46,18,.2)); }

/* ==========================================================================
   VITRIN (showcase) — kateqoriya + 4 məhsul
   ========================================================================== */
.showcase { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: stretch; }
.showcase-side {
    border-radius: var(--r-xl); padding: 34px 30px; color: #fff;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden; min-height: 320px;
    background: linear-gradient(150deg, #1b2140, #2b3570);
}
.showcase-side::after { content:''; position:absolute; right:-40px; bottom:-40px; width:200px; height:200px; background: radial-gradient(circle, rgba(43,89,255,.5), transparent 65%); }
.showcase-side .ss-art { width: 130px; height: 130px; margin-bottom: 14px; position: relative; z-index: 2; }
.showcase-side h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 2; }
.showcase-side p { color: #b7c0e6; font-size: 13.5px; margin: 8px 0 20px; position: relative; z-index: 2; }
.showcase-side .btn { position: relative; z-index: 2; align-self: flex-start; }
.showcase-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ==========================================================================
   BRENDLƏR
   ========================================================================== */
.brand-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.brand-chip {
    border: 1.5px solid var(--line); border-radius: var(--r);
    padding: 20px 14px; text-align: center;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
    background: #fff;
}
.brand-chip:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--sh-sm); }
.brand-chip b { font-size: 16px; font-weight: 800; letter-spacing: -.02em; display: block; }
.brand-chip span { font-size: 11.5px; color: var(--muted); }

/* ==========================================================================
   BREADCRUMB + SƏHIFƏ BAŞLIĞI
   ========================================================================== */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 18px 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { opacity: .5; }
.crumbs .cur { color: var(--ink); font-weight: 600; }

.page-head { margin-bottom: 8px; }
.page-head h1 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.025em; }
.page-head p { color: var(--muted); margin-top: 6px; }

/* ==========================================================================
   KATEQORIYA SƏHIFƏSI (filtrlər + grid)
   ========================================================================== */
.shop { display: grid; grid-template-columns: 274px 1fr; gap: 26px; align-items: start; }

.filters {
    position: sticky; top: 16px;
    background: #fff; border: 1.5px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
}
.filter-block { padding: 20px; border-bottom: 1px solid var(--line-2); }
.filter-block:last-child { border-bottom: none; }
.filter-block h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; color: var(--ink); }
.filter-opt { display: flex; align-items: center; gap: 11px; padding: 7px 0; cursor: pointer; font-size: 14px; color: var(--ink-2); transition: color .15s; }
.filter-opt:hover { color: var(--ink); }
.filter-opt input { position: absolute; opacity: 0; }
.filter-opt .box { width: 20px; height: 20px; border-radius: 7px; border: 2px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all .15s; }
.filter-opt .box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: all .15s; }
.filter-opt input:checked + .box { background: var(--brand); border-color: var(--brand); }
.filter-opt input:checked + .box svg { opacity: 1; transform: scale(1); }
.filter-opt .cnt { margin-left: auto; font-size: 12px; color: var(--muted); }
.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs input { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 14px; outline: none; transition: border-color .15s; }
.price-inputs input:focus { border-color: var(--brand); }
.price-inputs span { color: var(--muted); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.shop-toolbar .res-count { font-size: 14px; color: var(--muted); }
.shop-toolbar .res-count b { color: var(--ink); }
.sort-select { display: flex; align-items: center; gap: 10px; }
.sort-select select { border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 10px 16px; font-weight: 600; font-size: 13.5px; outline: none; cursor: pointer; background: #fff; }
.sort-select select:focus { border-color: var(--brand); }

.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--brand-soft); color: var(--brand);
    padding: 7px 12px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
}
.chip a { display: grid; place-items: center; }
.chip svg { width: 14px; height: 14px; }

.filter-toggle-mobile { display: none; }
.filter-mobile-head { display: none; align-items: center; justify-content: space-between; }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .es-ico { width: 90px; height: 90px; margin: 0 auto 20px; border-radius: 26px; background: var(--bg-soft); display: grid; place-items: center; color: var(--muted); }
.empty-state .es-ico svg { width: 44px; height: 44px; }
.empty-state h3 { font-size: 20px; font-weight: 800; }
.empty-state p { color: var(--muted); margin: 8px 0 22px; }

/* Səhifələmə */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 38px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 13px; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; transition: all .15s; }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .active span, .pagination span[aria-current] { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .disabled span { opacity: .4; }

/* ==========================================================================
   MƏHSUL SƏHIFƏSI
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }

/* Qalereya — sol şaquli miniatür sütunu + böyük əsas şəkil (Haier kimi) */
.gallery { position: sticky; top: 16px; display: flex; gap: 14px; align-items: flex-start; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; flex: none; width: 84px; }
.gallery-main {
    flex: 1; aspect-ratio: 1/1; border-radius: var(--r-xl);
    background: #fff;
    display: grid; place-items: center; position: relative; overflow: hidden;
    border: 1.5px solid var(--line);
}
#galleryStage { width: 100%; height: 100%; padding: clamp(18px, 2.4vw, 34px); }
#galleryStage img { width: 100%; height: 100%; object-fit: contain; }
#galleryImg { transition: opacity .42s var(--ease), transform .42s var(--ease); }
#galleryImg.swap-out { opacity: 0; transform: translateX(-32px); }
#galleryImg.swap-in-init { opacity: 0; transform: translateX(32px); transition: none; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 0; display: block; }
.gallery-badges { position: absolute; top: 20px; left: 20px; z-index: 2; display: flex; gap: 8px; }
.gallery-thumb {
    width: 84px; height: 84px; border-radius: 14px; background: #fff;
    overflow: hidden; padding: 0; cursor: pointer;
    border: 2px solid var(--line); transition: border-color .2s, transform .2s, box-shadow .2s;
    -webkit-appearance: none; appearance: none;
}
.gallery-thumb:hover { transform: translateY(-2px); border-color: var(--brand); }
.gallery-thumb.active { border-color: var(--brand); background: #fff; box-shadow: 0 6px 16px rgba(47,143,119,.18); }
@media (max-width: 820px) {
    .gallery { flex-direction: column-reverse; }
    .gallery-thumbs { flex-direction: row; width: 100%; overflow-x: auto; scrollbar-width: none; }
    .gallery-thumbs::-webkit-scrollbar { display: none; }
    .gallery-thumb { flex: none; }
}

.pdp-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; }
.pdp h1 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; margin: 10px 0 12px; }
.pdp-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13.5px; color: var(--muted); }
.pdp-meta .stars { color: var(--gold); }
.pdp-meta .divider { width: 1px; height: 14px; background: var(--line); }

.price-box { background: var(--bg-soft); border-radius: var(--r-lg); padding: 22px 24px; margin-bottom: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.price-box .pb-now { font-size: 34px; font-weight: 800; letter-spacing: -.03em; }
.price-box .pb-now .cur { font-size: 22px; }
.price-box .pb-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.price-box .pb-save { background: var(--sale-soft); color: var(--sale); padding: 6px 12px; border-radius: var(--r-pill); font-weight: 800; font-size: 13px; }

.pdp-short { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }

.pdp-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
.pdp-feature { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: var(--bg-soft); border-radius: 14px; }
.pdp-feature .pf-ico { width: 38px; height: 38px; border-radius: 11px; background: #fff; color: var(--brand); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--sh-xs); }
.pdp-feature svg { width: 20px; height: 20px; }
.pdp-feature b { font-size: 13.5px; font-weight: 700; display: block; }
.pdp-feature span { font-size: 12px; color: var(--muted); }

.pdp-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.qty button { width: 46px; height: 52px; font-size: 20px; color: var(--ink-2); transition: background .15s; }
.qty button:hover { background: var(--bg-soft); }
.qty input { width: 44px; text-align: center; border: none; outline: none; font-weight: 800; font-size: 16px; background: transparent; }
/* say xanası yazıla biləndir — number spinner oxları gizlədilir */
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button,
.cd-qty input::-webkit-outer-spin-button, .cd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type=number], .cd-qty input[type=number] { -moz-appearance: textfield; appearance: textfield; }

.pdp-secondary { display: flex; gap: 10px; margin-bottom: 22px; }
.pdp-secondary .btn { flex: 1; }
.pdp-secondary .btn.active { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
.pdp-secondary .btn.active svg { fill: currentColor; }

.pdp-assure { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line-2); padding-top: 20px; }
.assure-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-2); }
.assure-row svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* Tab-lar (təsvir / xüsusiyyətlər) */
.pdp-tabs { margin-top: 56px; }
.tab-nav { display: flex; gap: 6px; border-bottom: 2px solid var(--line-2); margin-bottom: 26px; }
.tab-nav button { padding: 14px 22px; font-weight: 700; font-size: 15px; color: var(--muted); position: relative; transition: color .2s; }
.tab-nav button.active { color: var(--ink); }
.tab-nav button.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--brand); border-radius: 3px; }
.tab-pane { display: none; animation: fadeUp .4s var(--ease); }
.tab-pane.active { display: block; }
.tab-pane p { color: var(--ink-2); line-height: 1.8; font-size: 15px; max-width: 70ch; margin-bottom: 12px; }
/* Təsvir tabı — oxunaqlı xüsusiyyət siyahısı */
.desc-sub { margin: 20px 0 10px; font-size: 16px; font-weight: 800; }
.desc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; list-style: none; padding: 0; margin: 0; max-width: 860px; }
.desc-list li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.desc-list li b { color: var(--ink); font-weight: 700; }
@media (max-width: 680px) { .desc-list { grid-template-columns: 1fr; } }

.spec-table { width: 100%; border-collapse: collapse; max-width: 720px; }
.spec-table tr { border-bottom: 1px solid var(--line-2); }
.spec-table tr:nth-child(odd) { background: var(--bg-soft); }
.spec-table td { padding: 13px 18px; font-size: 14px; }
.spec-table td:first-child { color: var(--muted); font-weight: 600; width: 45%; }
.spec-table td:last-child { font-weight: 700; }

/* ==========================================================================
   SƏBƏT / SEVIMLILƏR / MÜQAYISƏ (dinamik)
   ========================================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 14px;
    transition: box-shadow .2s;
}
.cart-item:hover { box-shadow: var(--sh-sm); }
.cart-thumb { width: 96px; height: 96px; border-radius: 14px; background: #fff; border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; padding: 0; }
.cart-thumb .appliance-svg { width: 100%; height: 100%; }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.ci-info b { font-size: 15px; font-weight: 700; display: block; letter-spacing: -.01em; }
.ci-info .ci-brand { font-size: 12px; color: var(--brand); font-weight: 700; text-transform: uppercase; }
.ci-info .ci-price { font-size: 17px; font-weight: 800; margin-top: 6px; }
.ci-info .ci-price s { font-size: 13px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.ci-remove { color: var(--muted); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; transition: background .15s, color .15s; }
.ci-remove:hover { background: var(--sale-soft); color: var(--sale); }
.ci-remove svg { width: 18px; height: 18px; }

.summary { position: sticky; top: 16px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.summary h3 { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink-2); }
.summary-row.total { border-top: 1.5px solid var(--line-2); margin-top: 8px; padding-top: 16px; font-size: 20px; font-weight: 800; color: var(--ink); }
.summary .wa-note { display: flex; gap: 10px; align-items: flex-start; background: var(--success-soft); color: #0d6b4d; padding: 13px 15px; border-radius: 14px; font-size: 12.5px; margin: 16px 0; line-height: 1.5; }
.summary .wa-note svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.32); }
.btn--whatsapp:hover { background: #1eb955; transform: translateY(-2px); }

/* Müqayisə cədvəli */
.compare-scroll { overflow-x: auto; border: 1.5px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.compare-table td:not(.row-label) { text-align: center; }
.compare-table thead th { position: relative; min-width: 190px; max-width: 260px; }
/* məhsul başlığı — mərkəzləşmiş, ad 2 sətrə qısaldılır ki sütunlar bərabər olsun */
.compare-table thead th.cmp-head { text-align: center; vertical-align: bottom; padding-top: 40px; }
.compare-table .cmp-name b { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
/* künc xanası — qiymət sütununun üstü boş görünməsin */
.compare-table thead th.cmp-corner { vertical-align: bottom; font-weight: 700; color: var(--muted); font-size: 13px; }
.compare-table .cmp-thumb { width: 100%; aspect-ratio: 1/1; max-width: 130px; border-radius: 14px; background: #fff; border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; padding: 10px; margin: 0 auto 10px; }
.compare-table .cmp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.compare-table .row-label { font-weight: 700; color: var(--muted); font-size: 13px; background: var(--bg-soft); width: 180px; position: sticky; left: 0; }
.compare-table .cmp-remove { position: absolute; top: 6px; right: 6px; width: 28px; height: 28px; border-radius: 8px; background: var(--bg-soft); display: grid; place-items: center; color: var(--muted); }
.compare-table .cmp-remove:hover { background: var(--sale-soft); color: var(--sale); }

/* ==========================================================================
   ÜSTÜNLÜKLƏR (feature blokları)
   ========================================================================== */
.features { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-box {
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
    padding: 34px 26px; text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature-box:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.fb-ico {
    width: 84px; height: 84px; margin: 0 auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-soft), #d3ece5);
    color: var(--brand);
    display: grid; place-items: center;
    transition: transform .3s var(--ease);
}
.fb-ico svg { width: 42px; height: 42px; stroke-width: 1.8; }
.feature-box:hover .fb-ico { transform: scale(1.08) rotate(-4deg); }
.feature-box h3 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.feature-box p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Haqqımızda — rəngli banner (sayt dizaynına uyğun teal) */
.about-hero {
    position: relative; overflow: hidden;
    border-radius: var(--r-xl);
    background: linear-gradient(125deg, #1f6350 0%, #2f8f77 55%, #73b5a1 130%);
    color: #fff; margin: 12px 0 40px;
    padding: 54px 56px; min-height: 300px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.about-hero::after { content: ''; position: absolute; right: -70px; bottom: -70px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%); }
.about-hero::before { content: ''; position: absolute; left: 40%; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%); }
.about-hero-inner { position: relative; z-index: 2; max-width: 60%; }
.about-hero-inner h1 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin: 14px 0 14px; max-width: 20ch; }
.about-hero-inner p { color: #e6f4ef; font-size: 16px; line-height: 1.7; max-width: 54ch; }
.about-hero-art { position: relative; z-index: 2; width: 200px; flex-shrink: 0; opacity: .95; filter: drop-shadow(0 20px 30px rgba(0,0,0,.18)); }
.about-hero-art .appliance-svg { width: 100%; height: auto; }

/* ==========================================================================
   SİFARİŞ (checkout) — addımlar, form, xülasə, təşəkkür
   ========================================================================== */
/* Addım göstəricisi */
.steps { display: flex; align-items: center; gap: 10px; list-style: none; padding: 0; margin: 18px 0 4px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--muted); }
.step:not(:last-child)::after { content: ''; width: 34px; height: 2px; background: var(--line); margin-left: 4px; border-radius: 2px; }
.step-n { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); border: 1.5px solid var(--line); font-size: 13px; font-weight: 800; color: var(--muted); }
.step.is-active { color: var(--ink); }
.step.is-active .step-n { background: var(--brand); border-color: var(--brand); color: #fff; }
.step.is-done { color: var(--ink-2); }
.step.is-done .step-n { background: var(--success); border-color: var(--success); color: #fff; }
.step.is-done:not(:last-child)::after { background: var(--success); }

/* Xəbərdarlıq qutusu */
.form-alert { display: flex; align-items: center; gap: 10px; background: #fdecef; border: 1px solid #f6c6d0; color: var(--sale); padding: 12px 16px; border-radius: var(--r); font-size: 14px; font-weight: 600; margin-bottom: 18px; }

/* Checkout düzülüş */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.checkout-form { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.co-block-title { font-size: 17px; font-weight: 800; margin: 0 0 18px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.field > span i { color: var(--sale); font-style: normal; }
.field input, .field textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
    font: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg-soft); transition: border-color .18s, background .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(47,143,119,.1); }
.field textarea { resize: vertical; min-height: 76px; }

/* Checkout xülasə */
.checkout-summary { position: sticky; top: 16px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.checkout-summary h3 { font-size: 17px; font-weight: 800; margin: 0 0 16px; }
.co-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; max-height: 320px; overflow-y: auto; }
.co-item { display: flex; align-items: center; gap: 11px; }
.co-thumb { width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.co-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-info b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.co-qty { font-size: 12.5px; color: var(--muted); }
.co-line { font-size: 14px; font-weight: 800; white-space: nowrap; }
.co-rows { border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 18px; }
.co-rows .summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--ink-2); }
.co-rows .summary-row.total { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 800; color: var(--ink); }
.co-privacy { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; line-height: 1.5; }

/* Təşəkkür səhifəsi */
.co-done { max-width: 560px; margin: 20px auto 60px; text-align: center; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 46px 34px; }
.co-done__ico { width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(18,184,134,.12); color: var(--success); }
.co-done h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; }
.co-done__num { font-size: 16px; color: var(--ink-2); margin: 0 0 6px; }
.co-done__num b { color: var(--brand); font-weight: 800; }
.co-done__desc { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 44ch; margin: 0 auto 26px; }
.co-done__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 860px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; order: -1; }
}
@media (max-width: 560px) {
    .co-grid { grid-template-columns: 1fr; }
    .step:not(:last-child)::after { width: 18px; }
    .co-done { padding: 34px 20px; }
    .co-done__actions .btn { width: 100%; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: linear-gradient(180deg, #1a4c41 0%, #143b33 100%); margin-top: 80px; color: #cdd4de; }
.footer-bar {
    display: flex; align-items: center; gap: 24px;
    padding: 22px 0;
}
/* WhatsApp düyməsi — sol aşağıda sabit (hər scroll-da görünür) */
.wa-fab {
    position: fixed; left: 24px; bottom: 24px; z-index: 200;
    flex-shrink: 0;
    width: 60px; height: 60px; border-radius: 18px;
    background: #25d366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 26px rgba(37,211,102,.4);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(37,211,102,.5); }
.wa-fab svg { width: 32px; height: 32px; }
.wa-badge {
    position: absolute; top: -6px; right: -6px;
    min-width: 20px; height: 20px; padding: 0 5px;
    background: var(--sale); color: #fff;
    font-size: 12px; font-weight: 800; border-radius: 999px;
    display: grid; place-items: center; border: 2px solid #fff;
}
.copyright { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.footer-links { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.footer-links a {
    padding: 9px 15px; border-radius: var(--r-pill);
    font-size: 13.5px; font-weight: 600; color: var(--ink-2);
    transition: background .18s, color .18s;
}
.footer-links a:hover { background: var(--brand-soft); color: var(--brand); }

/* Çoxsütunlu footer (Haier üslubu) */
.foot-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding: 54px 0 42px;
}
.foot-brand { max-width: 330px; }
.foot-logo { margin-bottom: 16px; }
.foot-logo .logo-text b { color: #fff; }
.foot-logo .logo-text small { color: #8bab9f; }
.foot-blurb { font-size: 13.5px; line-height: 1.65; color: #a7c3ba; margin-bottom: 18px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.07); color: #cdd4de;
    display: grid; place-items: center;
    transition: background .2s, color .2s, transform .2s;
}
.foot-social a svg { width: 18px; height: 18px; }
.foot-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.foot-col h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a { font-size: 13.5px; color: #a7c3ba; transition: color .18s, padding-left .18s; }
.foot-col ul a:hover { color: #fff; padding-left: 3px; }
.foot-ci { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: #a7c3ba; margin-bottom: 12px; }
.foot-ci svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--band); }
a.foot-ci:hover, a.foot-ci:hover span { color: #fff; }
.foot-wa {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
    padding: 11px 18px; border-radius: 12px;
    background: #25d366; color: #fff; font-weight: 700; font-size: 13.5px;
    transition: transform .2s, box-shadow .2s;
}
.foot-wa svg { width: 18px; height: 18px; }
.foot-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,.35); }
/* Copyright — altda, üstündə xətt */
.foot-bottom {
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
    padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.foot-bottom .copyright { color: #8bab9f; font-size: 13px; font-weight: 500; }
/* Kompakt xəritə — əlaqə sütununda (səliqəli) */
.foot-map-mini { margin-top: 16px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); line-height: 0; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.foot-map-mini iframe { width: 100%; height: 140px; border: 0; display: block; filter: grayscale(.15); }
@media (max-width: 1024px) {
    .foot-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .foot-brand { grid-column: 1 / -1; max-width: none; }
    .foot-contact { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .foot-top { grid-template-columns: 1fr 1fr; gap: 26px 20px; padding: 38px 0 30px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==========================================================================
   MOBIL DRAWER
   ========================================================================== */
.overlay { position: fixed; inset: 0; background: rgba(10,12,20,.5); backdrop-filter: blur(3px); z-index: 200; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.overlay.open { opacity: 1; visibility: visible; }

.drawer {
    position: fixed; top: 0; left: 0; bottom: 0; width: min(88vw, 360px);
    background: #fff; z-index: 210; transform: translateX(-100%);
    transition: transform .35s var(--ease); display: flex; flex-direction: column;
    overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; z-index: 2; }
.drawer-close { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-nav { padding: 12px; }
.drawer-nav a { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-radius: 13px; font-weight: 600; font-size: 15px; transition: background .15s; }
.drawer-nav a:hover { background: var(--bg-soft); }
.drawer-nav .dn-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft); display: grid; place-items: center; color: var(--brand); flex-shrink: 0; }
.drawer-nav .dn-ico svg { width: 22px; height: 22px; }
.drawer-section-label { padding: 16px 16px 8px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* ===================== SƏBƏT DRAWER (sağdan) ===================== */
.cart-drawer {
    left: auto; right: 0; width: min(94vw, 430px);
    transform: translateX(100%); overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }
.cd-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.cd-title { font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.cd-count { font-size: 14px; font-weight: 600; color: var(--muted); }
.cd-head-actions { display: flex; align-items: center; gap: 8px; }
.cd-head-actions .drawer-close { width: 38px; height: 38px; border-radius: 11px; color: var(--ink-2); }
.cd-head-actions .drawer-close:hover { background: var(--line); }
#cdClear:hover { background: #fdecef; color: var(--sale); }

.cd-body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.cd-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cd-item:last-child { border-bottom: none; }
.cd-left { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cd-thumb { width: 74px; height: 74px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; display: block; }
.cd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.cd-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.cd-qty button { width: 30px; height: 30px; font-size: 17px; font-weight: 700; color: var(--ink-2); display: grid; place-items: center; transition: background .15s, color .15s; }
.cd-qty button:hover { background: var(--brand); color: #fff; }
.cd-qty span { min-width: 26px; text-align: center; font-size: 14px; font-weight: 800; }
.cd-qty input { width: 34px; text-align: center; border: none; outline: none; font-weight: 800; font-size: 14px; background: transparent; font-family: inherit; }
/* səbətdə say dəyişəndə görünən "say × vahid qiymət" izahı */
.ci-unit { display: inline-block; margin-left: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.cd-item-body { position: relative; padding-right: 26px; }
.cd-remove { position: absolute; top: -2px; right: -4px; width: 26px; height: 26px; border-radius: 8px; color: var(--muted); display: grid; place-items: center; transition: background .15s, color .15s; }
.cd-remove:hover { background: #fdecef; color: var(--sale); }
.cd-remove svg { width: 15px; height: 15px; }
.cd-brand { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); margin-bottom: 3px; }
.cd-name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--ink); }
.cd-name:hover { color: var(--brand); }
.cd-vol { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.cd-item-price { display: block; font-size: 17px; font-weight: 800; margin-top: 8px; letter-spacing: -.02em; }

.cd-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; min-height: 60%; padding: 60px 20px; color: var(--muted); }
.cd-empty-ico { width: 92px; height: 92px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--line); }
.cd-empty-ico svg { color: var(--muted); opacity: .5; }
.cd-empty p { font-size: 15.5px; font-weight: 600; color: var(--ink-2); }

.cd-foot { flex-shrink: 0; padding: 16px 20px 20px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 20px rgba(15,22,32,.04); }
.cd-ship { margin-bottom: 14px; }
.cd-ship[hidden] { display: none; }
.cd-ship-txt { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.cd-ship.is-free .cd-ship-txt { color: var(--success); }
.cd-ship-bar { height: 7px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; }
.cd-ship-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--band), var(--brand)); transition: width .4s var(--ease); }
.cd-ship.is-free .cd-ship-bar i { background: var(--success); }
.cd-promo { display: flex; gap: 8px; margin-bottom: 14px; }
.cd-promo input { flex: 1; min-width: 0; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--bg-soft); font: inherit; font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em; transition: border-color .18s, background .18s; }
.cd-promo input:focus { outline: none; border-color: var(--brand); background: #fff; }
.cd-promo button { flex-shrink: 0; padding: 0 18px; border-radius: var(--r); background: var(--ink); color: #fff; font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; transition: background .18s; }
.cd-promo button:hover { background: var(--brand); }
.cd-rows { margin-bottom: 14px; }
.cd-rows .summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--ink-2); }
.cd-rows .summary-row.total { border-top: 1.5px solid var(--ink); margin-top: 8px; padding-top: 12px; font-size: 19px; font-weight: 800; color: var(--ink); }
.cd-checkout.is-disabled { opacity: .5; pointer-events: none; }
@media (max-width: 480px) {
    .cd-body { padding: 4px 16px; }
    .cd-head, .cd-foot { padding-left: 16px; padding-right: 16px; }
    .cd-thumb { width: 64px; height: 64px; }
}

/* Mobil alt panel */
.tabbar { display: none; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.toast {
    display: flex; align-items: center; gap: 12px;
    background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 14px;
    box-shadow: var(--sh-lg); font-size: 14px; font-weight: 600;
    transform: translateX(120%); transition: transform .4s var(--ease); max-width: 340px;
}
.toast.show { transform: translateX(0); }
.toast .t-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.toast.ok .t-ico { background: var(--success); }
.toast.info .t-ico { background: var(--brand); }
.toast.warn .t-ico { background: var(--accent); }
.toast svg { width: 18px; height: 18px; }

/* ==========================================================================
   ANIMASIYALAR
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { 0% { transform: scale(1); } 50% { transform: scale(1.25); } 100% { transform: scale(1); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .6s var(--ease) forwards; }
.pop { animation: pop .4s var(--ease); }

/* ==========================================================================
   RESPONSIV
   ========================================================================== */
@media (max-width: 1200px) {
    .cat-grid { grid-template-columns: repeat(5, 1fr); }
    .footer-top { grid-template-columns: 1.4fr 1fr 1.2fr; }
    .footer-col.fc-hide { display: none; }
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
    .product-grid, .showcase-products { grid-template-columns: repeat(3, 1fr); }
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .brand-strip { grid-template-columns: repeat(4, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase { grid-template-columns: 1fr; }
    .showcase-side { min-height: auto; flex-direction: row; align-items: center; }
    .showcase-side .ss-art { margin-bottom: 0; }
    .pdp { grid-template-columns: 1fr; gap: 26px; }
    .gallery { position: static; }
    .subnav { display: none; }
    /* Header — tablet-də Haier mobil forması: burger + logo + axtarış + ikonlar */
    .action-item { flex-direction: row; gap: 0; min-width: 0; padding: 9px; }
    .action-item .ai-label { display: none; }
    .burger { display: grid; place-items: center; }
    .cat-wrap { display: none; }
    .search { flex: 1 1 0; min-width: 0; max-width: none; }
    .header-actions { gap: 4px; border-left: none; padding-left: 0; margin-left: 0; }
    .header-util { margin-left: 4px; }
    .header-util .tb-phone, .header-util .tb-socials { display: none; }
}
@media (max-width: 860px) {
    .topbar-left span.hide-sm { display: none; }
    .cart-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .summary { position: static; }
    .shop { grid-template-columns: 1fr; }
    .filters { position: fixed; top: 0; left: 0; bottom: 0; width: min(88vw, 340px); z-index: 210; border-radius: 0; transform: translateX(-100%); transition: transform .35s var(--ease); overflow-y: auto; }
    .filters.open { transform: translateX(0); }
    .filter-toggle-mobile { display: inline-flex; }
    .filter-mobile-head { display: flex; }
    .trust .container { grid-template-columns: 1fr 1fr; }
    .topbar-left { display: none; }
    .topbar-nav { display: none; }
    .topbar .container { justify-content: flex-end; }
    .navbar { display: none; }
}
@media (max-width: 720px) {
    .topbar { display: none; }
    .cat-toggle span, .search-submit span { display: none; }
    .search { max-width: none; }
    .header-main { gap: 12px; }
    .subnav { display: none; }
    .burger { display: grid; place-items: center; }
    .desktop-only { display: none !important; }
    .tb-socials { display: none; }
    .lang-name { display: none; }
    .topbar-right .divider { display: none; }
    .topbar-right { gap: 14px; }
    .header-actions { gap: 2px; }
    .action-item { min-width: 0; padding: 6px 8px; }
    .action-item .ai-label { display: none; }
    .action-item { padding: 8px; }
    .cat-wrap { display: none; }
    .search { margin-left: 0; flex: 1 1 auto; min-width: 0; width: auto; max-width: none; }
    .logo-text small { display: none; }
    .logo-text b { font-size: 19px; }
    .header-main { gap: 10px; }
    .ai-ico svg { width: 23px; height: 23px; }
    /* Mobil: yalnız kateqoriyalar; brend qutusu açılmır (kateqoriyaya keç) */
    .megamenu--flyout { width: min(340px, calc(100vw - 24px)); max-height: 74vh; overflow-y: auto; }
    .mm-flyout, .mm-arrow { display: none; }
    .product-grid, .showcase-products, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-strip { grid-template-columns: repeat(3, 1fr); }
    .pdp-features { grid-template-columns: 1fr; }
    .hero-main { padding: 38px 30px; }
    .promo-band { flex-direction: column; text-align: center; }
    .promo-band .pb-txt { max-width: 100%; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .footer-bar { flex-direction: column; text-align: center; gap: 16px; }
    .footer-links { margin-left: 0; justify-content: center; }
    .about-hero { flex-direction: column; text-align: center; padding: 36px 26px; min-height: 0; }
    .about-hero-inner { max-width: 100%; }
    .about-hero-art { width: 140px; }
    .section { padding: 40px 0; }
    .tabbar {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
        background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
        border-top: 1px solid var(--line); padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
        justify-content: space-around;
    }
    .tabbar a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 600; color: var(--muted); padding: 5px 12px; position: relative; }
    .tabbar a.active { color: var(--brand); }
    .tabbar svg { width: 23px; height: 23px; }
    .tabbar .count { position: absolute; top: 0; right: 8px; min-width: 16px; height: 16px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }
    body { padding-bottom: 66px; }
    .wa-fab { bottom: 78px; left: 16px; width: 52px; height: 52px; border-radius: 15px; }
    .wa-fab svg { width: 28px; height: 28px; }
    .toast-wrap { bottom: 140px; left: 16px; right: 16px; }
    .toast { max-width: none; }
}
@media (max-width: 480px) {
    .hero-side { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 20px; }
    .price-box .pb-now { font-size: 28px; }
    .feature-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANA SƏHİFƏ — header videoya birləşik (şəffaf overlay, Haier kimi)
   ========================================================================== */
body.has-hero .header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: transparent; border-bottom: none;
}
body.has-hero .topbar {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 199;
    background: transparent; border-top: 1px solid rgba(255,255,255,.16); border-bottom: none;
}
/* ===== Scroll: yuxarı sıra gizlənir, nav sırası sabit qalır (kondensləşən header) ===== */
body.scrolled .header { transform: translateY(-100%); pointer-events: none; }
body.scrolled .topbar { top: 0; box-shadow: 0 6px 22px rgba(15,22,32,.09); }
body.has-hero.scrolled .topbar { background: #fff; border-bottom: 1px solid var(--line); }
/* has-hero: scroll-da nav mətn/ikonlar tünd olur */
body.has-hero.scrolled .topbar-nav a,
body.has-hero.scrolled .topbar .hicon { color: var(--ink-2); text-shadow: none; }
body.has-hero.scrolled .topbar .hicon svg { filter: none; }
/* kompakt brend (logo + kataloq) — yalnız scroll-da görünür */
.topbar-brand { display: none; align-items: center; gap: clamp(16px, 1.8vw, 24px); flex-shrink: 0; order: 1; }
body.scrolled .topbar-brand { display: flex; }
/* kataloq menyusu içi həmişə normal tünd (solğun olmasın — has-hero ağ qaydasını ləğv et) */
body.has-hero .topbar .megamenu .mm-cat-link,
body.has-hero .topbar .megamenu .mm-flyout a,
body.has-hero .megamenu .mm-cat-link,
body.has-hero .megamenu .mm-flyout a { color: var(--ink) !important; text-shadow: none !important; }
body.has-hero .topbar .megamenu .mm-title { color: var(--muted) !important; }
/* EVİA ən solda, kataloq onun sağında, nav sonra, ikonlar sağda */
.topbar-brand .logo { order: 1; }
.topbar-brand .cat-wrap { order: 2; }
.topbar-nav { order: 2; }
.topbar .header-actions { order: 3; }
.topbar-brand .logo-mark { width: 36px; height: 36px; }
.topbar-brand .logo-mark svg { width: 21px; height: 21px; }
.topbar-brand .logo-text b { font-size: 19px; }
body.has-hero .topbar-brand .logo-text b { color: var(--ink); text-shadow: none; }
/* kataloq — yalnız ikon (söz və ox yox) */
.topbar-brand .catalog-btn { padding: 10px; }
.topbar-brand .catalog-btn span,
.topbar-brand .catalog-btn .cb-chev { display: none; }
/* sticky bar yuxarı-aşağı biraz boşluq */
body.scrolled .topbar .container { height: 62px; }
/* sticky bar-dakı megamenu düymənin altında açılır */
.topbar .megamenu { top: calc(100% + 14px); }
/* top nav linklər videoda ağ */
body.has-hero .topbar-nav a { color: rgba(255,255,255,.94); text-shadow: 0 1px 4px rgba(0,0,0,.45); }
body.has-hero .topbar-nav a:hover { color: #fff; }
/* header bir az sola / geniş */
body.has-hero .header .container, body.has-hero .topbar .container { max-width: 1440px; }
/* mətn və ikonlar ağ + videoda oxunması üçün yüngül kölgə */
body.has-hero .topbar,
body.has-hero .topbar a,
body.has-hero .tb-phone,
body.has-hero .lang-current,
body.has-hero .lang-name,
body.has-hero .logo-text b,
body.has-hero .icon-btn,
body.has-hero .hicon { color: #fff; }
body.has-hero .topbar a,
body.has-hero .tb-phone,
body.has-hero .lang-current,
body.has-hero .logo-text b,
body.has-hero .logo-text small { text-shadow: 0 1px 4px rgba(0,0,0,.45); }
body.has-hero .icon-btn svg,
body.has-hero .hicon svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
body.has-hero .logo-text small { color: rgba(255,255,255,.72); }
/* header-util videoda ağ */
body.has-hero .header-util .tb-phone,
body.has-hero .header-util .tb-phone svg,
body.has-hero .tb-socials a { color: #fff; }
body.has-hero .header-util .tb-phone svg,
body.has-hero .tb-socials a svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
body.has-hero .header-util .tb-socials a:hover { background: rgba(255,255,255,.16); color: #fff; }
body.has-hero .header-actions { border-left-color: rgba(255,255,255,.22); }
body.has-hero .topbar a:hover { color: #fff; }
body.has-hero .topbar-left a:hover { background: rgba(255,255,255,.16); color: #fff; }
body.has-hero .topbar-right .divider { background: rgba(255,255,255,.32); }
body.has-hero .icon-btn:hover,
body.has-hero .hicon:hover { background: rgba(255,255,255,.16); color: #fff; }
body.has-hero .hicon.heart:hover { color: #fff; }
/* axtarış — şüşəvari sahə */
body.has-hero .search-box { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.34); }
body.has-hero .search-box input { color: #fff; }
body.has-hero .search-box input::placeholder { color: rgba(255,255,255,.72); }
body.has-hero .search-box:focus-within { background: #fff; border-color: #fff; }
body.has-hero .search-box:focus-within input { color: var(--ink); }
body.has-hero .search-box:focus-within input::placeholder { color: var(--muted); }
/* count badge sərhədi videoda seçilsin */
body.has-hero .hicon .count { border-color: transparent; }
/* açılan menyular ağ fonludur — mətnləri tünd qalsın */
body.has-hero .lang-menu a { color: var(--ink-2); }
body.has-hero .lang-menu a.active,
body.has-hero .lang-menu a:hover { color: var(--brand); }
/* nav sırası + çatdırılma qeydi — videoda ağ */
body.has-hero .navbar { border-top-color: rgba(255,255,255,.22); }
body.has-hero .navbar-nav a { color: rgba(255,255,255,.94); text-shadow: 0 1px 4px rgba(0,0,0,.45); }
body.has-hero .navbar-nav a:hover { color: #fff; }
body.has-hero .tb-note { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.45); }
body.has-hero .tb-note svg { color: #fff; }

/* ==========================================================================
   ANA SƏHİFƏ — üst açıq scrim üçün header mətni/ikonları TÜND (yuxarıdakı ağ qaydaları ləğv edir)
   ========================================================================== */
body.has-hero .topbar,
body.has-hero .topbar a,
body.has-hero .tb-phone,
body.has-hero .lang-current,
body.has-hero .lang-name,
body.has-hero .icon-btn,
body.has-hero .hicon,
body.has-hero .topbar-nav a,
body.has-hero .navbar-nav a,
body.has-hero .header-util .tb-phone,
body.has-hero .header-util .tb-phone svg,
body.has-hero .tb-socials a { color: var(--ink-2); text-shadow: none; }
body.has-hero .logo-text b { color: var(--ink); text-shadow: none; }
body.has-hero .logo-text small { color: var(--muted); text-shadow: none; }
body.has-hero .icon-btn svg,
body.has-hero .hicon svg,
body.has-hero .header-util .tb-phone svg,
body.has-hero .tb-socials a svg { filter: none; }
body.has-hero .topbar { border-top-color: rgba(0,0,0,.08); }
body.has-hero .navbar { border-top-color: rgba(0,0,0,.08); }
body.has-hero .header-actions { border-left-color: rgba(0,0,0,.12); }
body.has-hero .topbar-nav a:hover,
body.has-hero .navbar-nav a:hover { color: var(--brand); }
body.has-hero .icon-btn:hover,
body.has-hero .hicon:hover { background: rgba(0,0,0,.05); color: var(--ink); }
body.has-hero .header-util .tb-socials a:hover { background: rgba(0,0,0,.05); color: var(--brand); }
/* axtarış sahəsi — açıq scrim üstündə */
body.has-hero .search-box { background: rgba(255,255,255,.72); border-color: rgba(0,0,0,.14); }
body.has-hero .search-box input { color: var(--ink); }
body.has-hero .search-box input::placeholder { color: var(--muted); }
body.has-hero .tb-note { color: var(--ink-2); text-shadow: none; }
body.has-hero .tb-note svg { color: var(--brand); }

/* ==========================================================================
   HEADER HOVER — kursor gətirəndə rəng #73B5A1 (həm ana səhifə, həm digər)
   ========================================================================== */
.topbar-nav a:hover,
body.has-hero .topbar-nav a:hover,
.topbar .header-actions .hicon:hover,
body.has-hero .topbar .header-actions .hicon:hover,
.topbar .header-actions .hicon.heart:hover,
body.has-hero .topbar .header-actions .hicon.heart:hover,
.header-util .tb-phone:hover,
body.has-hero .header-util .tb-phone:hover,
.header-util .lang-current:hover,
body.has-hero .header-util .lang-current:hover,
.header-util .tb-socials a:hover,
body.has-hero .header-util .tb-socials a:hover { color: #73B5A1; }
/* ikonların hover fonu qarışıq/blend — yarı-şəffaf teal (video ilə qarışır) */
.topbar .header-actions .hicon:hover,
body.has-hero .topbar .header-actions .hicon:hover,
.header-util .tb-socials a:hover,
body.has-hero .header-util .tb-socials a:hover { background: rgba(115, 181, 161, .2); transform: none; }
.header-util .tb-phone:hover,
body.has-hero .header-util .tb-phone:hover { background: rgba(115, 181, 161, .18); }

/* ==========================================================================
   ÖDƏNİŞ & ÇATDIRILMA + ZƏMANƏT + MAĞAZALAR + HAQQIMIZDA (yeni səhifələr)
   ========================================================================== */
/* ümumi ikon rəng çipləri */
.pd-ico--green { background: #e6f4ee; color: #1f9d76; }
.pd-ico--blue  { background: #e8f0fe; color: #2f6bff; }
.pd-ico--gold  { background: #fef3e0; color: #e0900f; }
.pd-ico--red   { background: #fdeaed; color: #e0455e; }

/* Ödəniş/çatdırılma banner + funksional zəmanət qutusu */
.pd-hero { display: flex; flex-direction: column; gap: clamp(22px, 3vw, 30px); background: linear-gradient(125deg, #1f6350 0%, #2f8f77 60%, #73b5a1 130%); color: #fff; border-radius: var(--r-xl); padding: clamp(26px, 4vw, 44px); margin: 12px 0 40px; overflow: hidden; }
.pd-hero__top { max-width: 640px; }
.pd-hero__k { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 10px; }
.pd-hero h1 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
.pd-hero p { color: rgba(255,255,255,.9); font-size: clamp(14px, 1.4vw, 17px); line-height: 1.6; max-width: 540px; }
.pd-hero__feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pd-feat { display: flex; align-items: flex-start; gap: 13px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 15px; padding: 16px 18px; }
.pd-feat__ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.17); display: grid; place-items: center; }
.pd-feat__ico svg { width: 23px; height: 23px; color: #fff; }
.pd-feat b { display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.pd-feat span { font-size: 12.5px; color: rgba(255,255,255,.82); line-height: 1.45; }
@media (max-width: 760px) { .pd-hero__feats { grid-template-columns: 1fr; } }

.pd-block { margin-bottom: 46px; }
.pd-block__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.pd-block__ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.pd-block__ico svg { width: 26px; height: 26px; }
.pd-block__head h2 { font-size: clamp(20px, 2.4vw, 27px); font-weight: 800; letter-spacing: -.02em; }
.pd-block__head p { font-size: 14px; color: var(--muted); margin-top: 2px; }

.pd-grid { display: grid; gap: 16px; }
.pd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pd-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pd-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.pd-card:hover { box-shadow: 0 14px 34px rgba(15,22,32,.08); transform: translateY(-3px); border-color: transparent; }
.pd-card__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.pd-card__ico svg { width: 26px; height: 26px; }
.pd-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.pd-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.pd-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.pd-pill { font-size: 12px; font-weight: 700; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; }

.pd-faq { display: flex; flex-direction: column; gap: 10px; }
.pd-q { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; }
.pd-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0; font-weight: 700; font-size: 15.5px; color: var(--ink); }
.pd-q summary::-webkit-details-marker { display: none; }
.pd-q__mark { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; transition: transform .2s, background .2s, color .2s; }
.pd-q__mark svg { width: 16px; height: 16px; }
.pd-q[open] .pd-q__mark { transform: rotate(45deg); background: var(--brand); color: #fff; }
.pd-q__a { padding: 0 0 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 780px; }

.pd-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 22px 26px; }
.pd-cta b { display: block; font-size: 17px; font-weight: 800; }
.pd-cta span { font-size: 14px; color: var(--muted); }

/* Zəmanət səhifəsi */
.wr-hero { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 46px); background: linear-gradient(125deg, #1f6350 0%, #2f8f77 58%, #73b5a1 130%); color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 4vw, 52px); margin: 12px 0 40px; }
.wr-hero__txt { position: relative; z-index: 2; max-width: 56%; }
.wr-hero__k { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.17); padding: 7px 14px; border-radius: 999px; margin-bottom: 16px; }
.wr-hero__k svg { width: 15px; height: 15px; }
.wr-hero__txt h1 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 14px; color: #fff; }
.wr-hero__txt p { font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,.9); line-height: 1.6; margin-bottom: 20px; max-width: 460px; }
.wr-hero__badges { display: flex; flex-wrap: wrap; gap: 11px 18px; }
.wr-hero__badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; }
.wr-hero__badges svg { width: 20px; height: 20px; color: #fff; padding: 3px; background: rgba(255,255,255,.2); border-radius: 6px; }
.wr-hero__img { position: relative; z-index: 2; width: 40%; flex-shrink: 0; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 54px rgba(0,0,0,.28); }
.wr-hero__img img { width: 100%; height: 100%; object-fit: cover; }
/* Zəmanət möhürü (seal) — şəkil əvəzinə */
.wr-seal { position: relative; z-index: 2; flex: none; width: 210px; height: 210px; display: grid; place-items: center; }
.wr-seal::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(255,255,255,.4); }
.wr-seal::after { content: ''; position: absolute; inset: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.wr-seal__inner { width: 158px; height: 158px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.wr-seal__inner svg { width: 38px; height: 38px; color: #fff; margin-bottom: 5px; }
.wr-seal__inner b { font-size: 34px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.wr-seal__inner span { font-size: 12px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .12em; margin-top: 3px; }
@media (max-width: 1024px) { .wr-seal { margin: 4px auto 0; } }

/* Haqqımızda — şəkil mozaikası (tək şəkil əvəzinə) */
.about-hero-mosaic { position: relative; z-index: 2; width: 42%; flex-shrink: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-hero-mosaic img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 15px; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.about-hero-mosaic img:nth-child(1) { transform: translateY(-14px); }
.about-hero-mosaic img:nth-child(4) { transform: translateY(-14px); }
.about-stats--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .about-hero-mosaic { width: 100%; margin-top: 22px; } .about-hero-mosaic img:nth-child(1), .about-hero-mosaic img:nth-child(4) { transform: none; } }
@media (max-width: 560px) { .about-stats--3 { grid-template-columns: 1fr; } }
.wr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.wr-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.wr-card:hover { box-shadow: 0 14px 34px rgba(15,22,32,.08); transform: translateY(-3px); border-color: transparent; }
.wr-card__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.wr-card__ico svg { width: 26px; height: 26px; }
.wr-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 7px; }
.wr-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.wr-note { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--brand-soft); border-radius: 18px; padding: 24px 26px; }
.wr-note__ico { flex: none; width: 52px; height: 52px; border-radius: 14px; background: #fff; color: var(--brand); display: grid; place-items: center; }
.wr-note__ico svg { width: 26px; height: 26px; }
.wr-note > div { flex: 1; min-width: 220px; }
.wr-note h3 { font-size: 17px; font-weight: 800; }
.wr-note p { font-size: 14px; color: var(--ink-2); margin-top: 3px; }

/* Haqqımızda — sağda real şəkil + stat zolağı */
.about-hero-img { position: relative; z-index: 2; width: 42%; flex-shrink: 0; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 54px rgba(0,0,0,.28); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-extra { color: #e6f4ef !important; font-size: 15px !important; line-height: 1.65 !important; margin-top: 14px !important; max-width: 54ch; }
.about-hero-inner .btn { margin-top: 22px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.about-stat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: box-shadow .2s, transform .2s, border-color .2s; }
.about-stat:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: transparent; }
.about-stat__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px; }
.about-stat__ico svg { width: 25px; height: 25px; }
.about-stat b { display: block; font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.about-stat span { font-size: 13px; color: var(--muted); margin-top: 7px; display: block; }

/* Mağazalar */
.stores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.store-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s, border-color .2s; }
.store-card:hover { box-shadow: 0 16px 38px rgba(15,22,32,.09); transform: translateY(-3px); border-color: transparent; }
.store-card__img { position: relative; aspect-ratio: 16/10; background: var(--bg-soft); }
.store-card__img img { width: 100%; height: 100%; object-fit: cover; }
.store-card__body { padding: 34px 24px 24px; display: flex; flex-direction: column; flex: 1; position: relative; }
.store-card__badge { position: absolute; bottom: -27px; left: 22px; z-index: 2; flex: none; width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg, var(--brand), var(--band)); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(47,143,119,.35); border: 3px solid #fff; }
.store-card__badge svg { width: 24px; height: 24px; }
.store-card__top { display: flex; align-items: center; margin-bottom: 16px; }
.store-card__ttl h3 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.store-card__area { font-size: 12.5px; font-weight: 700; color: var(--brand); }
.store-card__info { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.store-card__info li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--ink-2); }
.store-card__info li svg { width: 18px; height: 18px; flex: none; color: var(--brand); margin-top: 1px; }
.store-card__info a { color: var(--ink-2); }
.store-card__info a:hover { color: var(--brand); }
.store-card__btn { margin-top: auto; }

/* Əlaqə səhifəsi */
.ct-wrap { display: grid; grid-template-columns: 1fr 1.35fr; gap: 26px; align-items: start; }
.ct-info { display: flex; flex-direction: column; gap: 14px; }
.ct-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.ct-item:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: transparent; }
.ct-ico { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.ct-ico svg { width: 23px; height: 23px; }
.ct-ico--brand { background: var(--brand-soft); color: var(--brand); }
.ct-ico--wa { background: var(--success-soft); color: var(--success); }
.ct-tx { display: flex; flex-direction: column; min-width: 0; }
.ct-tx b { font-size: 14px; font-weight: 800; color: var(--ink); }
.ct-tx span { font-size: 13.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
a.ct-item:hover .ct-tx span { color: var(--brand); }
.ct-form { padding: clamp(24px, 4vw, 34px); }
.ct-form__head { margin-bottom: 22px; }
.ct-form__head h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.ct-form__head p { font-size: 14px; margin-top: 4px; }
.ct-fields { display: flex; flex-direction: column; gap: 16px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; }
.ct-field label { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink-2); }
.ct-field input, .ct-field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; outline: none; font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, background .2s, box-shadow .2s; }
.ct-field input:focus, .ct-field textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-soft); }
.ct-field textarea { resize: vertical; min-height: 130px; }
@media (max-width: 900px) { .ct-wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ct-row { grid-template-columns: 1fr; } }

/* Giriş / Qeydiyyat */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; max-width: 940px; margin: 16px auto 44px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-lg); background: #fff; }
.auth-aside { background: linear-gradient(150deg, #1f6350, #2f8f77 60%, #73b5a1 130%); color: #fff; padding: clamp(30px, 4vw, 48px); display: flex; align-items: center; }
.auth-aside__in { width: 100%; }
.auth-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.auth-logo .logo-mark { width: 40px; height: 40px; background: rgba(255,255,255,.16); border-radius: 11px; display: grid; place-items: center; }
.auth-logo .logo-mark svg { width: 24px; height: 24px; }
.auth-logo b { font-size: 22px; font-weight: 800; color: #fff; }
.auth-aside h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 12px; }
.auth-aside__in > p { color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.6; margin-bottom: 24px; }
.auth-benefits { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.auth-benefits li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; }
.auth-benefits li svg { width: 22px; height: 22px; flex: none; padding: 4px; background: rgba(255,255,255,.18); border-radius: 7px; }
.auth-main { padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.auth-head { margin-bottom: 24px; }
.auth-head h1 { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.auth-head p { color: var(--muted); font-size: 14.5px; margin-top: 5px; }
.auth-form { display: flex; flex-direction: column; gap: 15px; }
.auth-form .ct-row { gap: 14px; }
.auth-error { display: flex; align-items: center; gap: 8px; background: var(--sale-soft); color: var(--sale); border: 1px solid #f7c9cf; border-radius: 12px; padding: 12px 15px; font-size: 13.5px; font-weight: 600; margin-bottom: 18px; }
.auth-error svg { width: 16px; height: 16px; flex: none; }
.auth-remember { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; user-select: none; }
.auth-remember input { width: 16px; height: 16px; accent-color: var(--brand); }
.auth-ok { display: flex; align-items: center; gap: 8px; background: #e7f8f1; color: #0c8f63; border: 1px solid #b6ecd8; border-radius: 12px; padding: 12px 15px; font-size: 13.5px; font-weight: 600; margin-bottom: 18px; }
.auth-ok svg { width: 16px; height: 16px; flex: none; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.auth-forgot { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.auth-forgot:hover { color: var(--brand-600); text-decoration: underline; }
/* Hesab — e-poçt təsdiqi banneri */
.acc-verify { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; background: #fff8ec; border: 1px solid #ffe2b0; color: #9a6a12; border-radius: var(--r-lg); padding: 14px 20px; margin: 12px 0 18px; font-size: 14px; font-weight: 600; }
.acc-verify.ok { background: #e7f8f1; border-color: #b6ecd8; color: #0c8f63; }
.acc-verify span { display: flex; align-items: center; gap: 8px; }
.acc-verify svg { width: 18px; height: 18px; flex: none; }
.acc-verify .btn { background: #9a6a12; color: #fff; padding: 8px 16px; }
.acc-verify .btn:hover { background: #7d560d; }
.auth-alt { margin-top: 20px; font-size: 14px; color: var(--muted); text-align: center; }
.auth-alt a { color: var(--brand); font-weight: 700; }
@media (max-width: 760px) { .auth-wrap { grid-template-columns: 1fr; max-width: 460px; } .auth-aside { display: none; } }

/* Hesab */
.acc-hero { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: linear-gradient(120deg, #1f6350, #2f8f77 70%); color: #fff; border-radius: var(--r-xl); padding: clamp(24px, 3.5vw, 40px); margin: 12px 0 26px; }
.acc-avatar { flex: none; width: 66px; height: 66px; border-radius: 20px; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 30px; font-weight: 800; }
.acc-hero h1 { font-size: clamp(21px, 2.6vw, 29px); font-weight: 800; letter-spacing: -.02em; }
.acc-hero p { color: rgba(255,255,255,.85); font-size: 14.5px; margin-top: 3px; }
.acc-hero__info { min-width: 0; }
.acc-hero__actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.acc-hero__actions .btn { background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.acc-hero__actions .btn:hover { background: rgba(255,255,255,.24); }
.acc-hero__actions .btn--primary { background: #fff; border-color: #fff; color: var(--brand-700); }
.acc-hero__actions .btn--primary:hover { background: #fff; color: var(--brand); transform: translateY(-1px); }
.acc-info { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 24px; max-width: 560px; }
.acc-info h3 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.acc-info__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.acc-info__row:last-child { border-bottom: none; }
.acc-info__row span { color: var(--muted); }
.acc-info__row b { font-weight: 700; }
/* Brendlər səhifəsi */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.brand-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 18px 20px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.brand-card:hover { border-color: var(--band); box-shadow: 0 14px 30px rgba(15,22,32,.08); transform: translateY(-3px); }
.brand-card__logo { height: 56px; display: grid; place-items: center; margin-bottom: 10px; }
/* loqolar əsas səhifədəki kimi rəngli göstərilir */
.brand-card__logo img { max-height: 44px; max-width: 130px; width: auto; object-fit: contain; }
.brand-card__letter { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft, #eaf4f0); color: var(--brand); font-size: 24px; font-weight: 800; display: grid; place-items: center; }
.brand-card__name { font-size: 15px; font-weight: 800; color: var(--ink); }
.brand-card__count { font-size: 12.5px; color: var(--muted); }
/* Alt-kateqoriya çipləri */
.subcats { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.subcat-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--r-pill); background: #fff; border: 1.5px solid var(--line); font-size: 14px; font-weight: 700; color: var(--ink-2); transition: border-color .18s, color .18s, background .18s; }
.subcat-chip:hover { border-color: var(--brand); color: var(--brand); }
.subcat-chip span { font-size: 12px; font-weight: 700; color: var(--muted); background: var(--bg-soft); padding: 1px 8px; border-radius: 999px; }
/* Cart drawer — promokod sil düyməsi */
.cd-promo-x { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(47,143,119,.15); color: var(--brand); font-size: 14px; line-height: 1; margin-left: 4px; vertical-align: middle; }
.cd-promo-x:hover { background: var(--sale); color: #fff; }
/* ===================== RƏYLƏR (məhsul səhifəsi) ===================== */
.rev-flash { display: flex; align-items: center; gap: 8px; background: #e7f8f1; color: #0c8f63; border: 1px solid #b6ecd8; border-radius: var(--r); padding: 12px 16px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.rev-flash.err { background: #fdecef; color: var(--sale); border-color: #f6c6d0; }
.rev-flash svg { width: 18px; height: 18px; }
.rev-layout { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.rev-items { display: flex; flex-direction: column; gap: 16px; }
.rev-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px; }
.rev-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rev-item__av { width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; flex: none; }
.rev-item__who b { display: block; font-size: 14.5px; font-weight: 700; }
.rev-item__stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rev-item__date { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.rev-item p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.rev-empty { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 34px 20px; text-align: center; color: var(--muted); font-weight: 600; }
.rev-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; position: sticky; top: 16px; }
.rev-form h3 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.rev-form .ct-field { margin-bottom: 14px; }
.rev-stars-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; margin-bottom: 6px; }
.rev-stars-input input { display: none; }
.rev-stars-input label { font-size: 28px; color: var(--line); cursor: pointer; padding: 0 2px; transition: color .12s; }
.rev-stars-input input:checked ~ label,
.rev-stars-input label:hover,
.rev-stars-input label:hover ~ label { color: var(--gold); }
@media (max-width: 820px) { .rev-layout { grid-template-columns: 1fr; } .rev-form { position: static; } }
/* Hesab statistikası */
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.acc-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; }
.acc-stat__v { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.acc-stat__l { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 4px; }
/* Sifariş tarixçəsi */
.acc-orders { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.acc-orders__head { padding: 18px 24px; border-bottom: 1px solid var(--line); }
.acc-orders__head h3 { font-size: 16px; font-weight: 800; }
.acc-order { display: flex; align-items: center; gap: 16px; padding: 15px 24px; border-bottom: 1px solid var(--line); }
.acc-order:last-child { border-bottom: none; }
.acc-order__main { flex: 1; min-width: 0; }
.acc-order__main b { display: block; font-size: 14.5px; font-weight: 700; }
.acc-order__main span { font-size: 12.5px; color: var(--muted); }
.acc-order__status { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.pill-new { background: #e7efff; color: #3355d1; }
.pill-confirmed { background: #fff3e0; color: #d9770a; }
.pill-done { background: #e7f8f1; color: #0c8f63; }
.pill-cancelled { background: #fdecef; color: var(--sale); }
.acc-order__total { font-size: 16px; font-weight: 800; white-space: nowrap; }
.acc-empty { text-align: center; padding: 48px 24px; }
.acc-empty__ico { width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--muted); }
.acc-empty__ico svg { width: 32px; height: 32px; opacity: .6; }
.acc-empty p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
@media (max-width: 900px) { .acc-hero__actions { margin-left: 0; width: 100%; } .acc-hero__actions .btn, .acc-hero__actions form { flex: 1; } .acc-hero__actions form .btn { width: 100%; } }
@media (max-width: 560px) { .acc-stats { grid-template-columns: 1fr; } .acc-order { flex-wrap: wrap; gap: 8px 12px; } }
.acc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.acc-tile { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.acc-tile:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: transparent; }
.acc-tile__ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 12px; }
.acc-tile__ico svg { width: 24px; height: 24px; }
.acc-tile b { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.acc-tile span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .acc-grid { grid-template-columns: 1fr 1fr; } .acc-logout { margin-left: 0; width: 100%; } .acc-logout .btn { width: 100%; } }
@media (max-width: 480px) { .acc-grid { grid-template-columns: 1fr; } }
.acc-sec-head { margin-bottom: 14px; }
.acc-sec-head h2 { display: flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.acc-sec-head h2 svg { width: 22px; height: 22px; color: var(--brand); }
.acc-sec-head p { font-size: 14px; color: var(--muted); margin-top: 3px; }
.acc-cart-count { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.acc-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .acc-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .acc-grid--3 { grid-template-columns: 1fr; } }

/* Logo şəkli (rəngli / ağ versiya konteksdən asılı) */
.logo--img { gap: 0; }
.logo-svg { height: 58px; width: auto; display: block; }
.logo-svg--white, .logo-svg--hero { display: none; }
.topbar-brand .logo-svg { height: 46px; }
.footer .logo-svg { height: 64px; }
.drawer-head .logo-svg { height: 48px; }
.auth-logo .logo-svg { height: 54px; }
@media (max-width: 560px) { .logo-svg { height: 48px; } }
/* tünd / yaşıl fonlar (footer, auth) → ağ logo */
.footer .logo-svg--dark,
.auth-aside .logo-svg--dark { display: none; }
.footer .logo-svg--white,
.auth-aside .logo-svg--white { display: block; }
/* ana səhifə header videonun üstündə → yaşıl nişan + ağ söz-marka (dizayn görünsün) */
body.has-hero .header .logo-svg--dark { display: none; }
body.has-hero .header .logo-svg--hero { display: block; }

/* Səhifələmə (təmiz) */
.pagination { margin-top: 8px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 34px; }
.pager-btn { min-width: 40px; height: 40px; padding: 0 11px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink-2); font-size: 14px; font-weight: 700; transition: border-color .2s, background .2s, color .2s, transform .15s; }
.pager-btn svg { width: 18px; height: 18px; }
.pager-btn:hover { border-color: var(--brand); color: var(--brand); }
.pager-btn.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.pager-btn.is-disabled { opacity: .4; pointer-events: none; }
.pager-dots { padding: 0 3px; color: var(--muted); font-weight: 700; }

/* Filtr — açılan bölmələr (oxlarla) */
.filter-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; list-style: none; margin: 0 0 12px; user-select: none; }
.filter-head::-webkit-details-marker { display: none; }
.filter-head h4 { margin: 0; }
.filter-chev { width: 16px; height: 16px; color: var(--ink); transition: transform .25s var(--ease); flex: none; }
details.filter-block[open] > .filter-head .filter-chev { transform: rotate(180deg); }
.filter-extra { display: none; }
.filter-body.is-open .filter-extra { display: flex; }
.filter-more { background: none; border: none; color: var(--brand); font-weight: 700; font-size: 13px; cursor: pointer; padding: 6px 0 2px; text-decoration: underline; text-underline-offset: 3px; }
.filter-more:hover { color: var(--brand-600); }

/* Qiymət — iki-tutacaqlı slayder */
.pr-vals { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 13.5px; font-weight: 800; color: var(--ink); }
.price-range { position: relative; height: 26px; }
.pr-track { position: absolute; top: 11px; left: 2px; right: 2px; height: 4px; border-radius: 4px; background: var(--line); }
.pr-fill { position: absolute; top: 0; bottom: 0; background: var(--brand); border-radius: 4px; }
.pr-input { position: absolute; top: 4px; left: 0; width: 100%; height: 18px; margin: 0; background: none; pointer-events: none; -webkit-appearance: none; appearance: none; }
.pr-input.pr-min { z-index: 3; }
.pr-input.pr-max { z-index: 2; }
.pr-input::-webkit-slider-runnable-track { background: none; border: none; }
.pr-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2.5px solid var(--brand); box-shadow: 0 2px 6px rgba(0,0,0,.22); cursor: grab; }
.pr-input::-webkit-slider-thumb:active { cursor: grabbing; }
.pr-input::-moz-range-track { background: none; border: none; }
.pr-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2.5px solid var(--brand); box-shadow: 0 2px 6px rgba(0,0,0,.22); cursor: grab; }

/* Kataloq — filtr paneli axtarış qutusu */
.cat-search { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: 12px; padding: 0 12px; background: var(--bg-soft); transition: border-color .2s, background .2s; }
.cat-search:focus-within { border-color: var(--brand); background: #fff; }
.cat-search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.cat-search input { flex: 1; min-width: 0; border: none; background: none; outline: none; padding: 11px 0; font-size: 14px; font-family: inherit; color: var(--ink); }

/* Header istifadəçi initial-ı */
.hicon--me .hicon-initial { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 13.5px; font-weight: 800; }
body.has-hero .hicon--me .hicon-initial { box-shadow: 0 0 0 1.5px rgba(255,255,255,.5); }

@media (max-width: 1024px) {
    .pd-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .wr-grid { grid-template-columns: repeat(2, 1fr); }
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .wr-hero { flex-direction: column; align-items: flex-start; }
    .wr-hero__txt { max-width: none; }
    .wr-hero__img { width: 100%; aspect-ratio: 16/8; }
    .about-hero-img { width: 100%; margin-top: 22px; }
}
@media (max-width: 640px) {
    .pd-hero__top { max-width: none; }
    .pd-grid--3, .pd-grid--4 { grid-template-columns: 1fr; }
    .wr-grid { grid-template-columns: 1fr 1fr; }
    .stores-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .pd-cta { flex-direction: column; align-items: flex-start; }
    .wr-note { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
   LORD düzəlişlər (2026-07-25): mobil tabbar badge gizlət + responsive şəkil
   ============================================================================ */
@media (max-width: 720px) {
    .tabbar .count { display: none; }
    .tabbar .count.show { display: grid; }
    .card-media img { padding: 20px; }
    .hx-pcard__media a { padding: clamp(18px, 5vw, 26px); }
}
@media (max-width: 480px) {
    .card-media img { padding: 22px; }
    .hx-pcard__media a { padding: 20px; }
}