/* ============================================================
 * NexaStore — Woodmart Theme v1
 * Drop-in replacement preserving every original class name.
 * Bilingual (Arabic RTL / English LTR), mobile-first.
 * ============================================================ */

/* ─── Custom Arabic font (optional, drop files in /assets/fonts/) ─── */
@font-face { font-family: 'AirArabia'; src: url('../fonts/AirArabia-Light.woff2') format('woff2'),
    url('../fonts/AirArabia-Light.woff') format('woff'), url('../fonts/AirArabia-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'AirArabia'; src: url('../fonts/AirArabia-Light.woff2') format('woff2'),
    url('../fonts/AirArabia-Light.woff') format('woff'), url('../fonts/AirArabia-Light.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'AirArabia'; src: url('../fonts/AirArabia-Bold.woff2') format('woff2'),
    url('../fonts/AirArabia-Bold.woff') format('woff'), url('../fonts/AirArabia-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap; }

/* ============================================================
 * 1. TOKENS — overridable via :root in store-header.php
 * ============================================================ */
:root {
    /* Brand palette — settings drive these via inline overrides */
    --primary: #3858E9;
    --primary-dark: #2645D7;
    --primary-soft: #E8EDFE;
    --accent: #FFD66B;          /* yellow nav strip + highlights */
    --accent-warm: #FBE9C9;
    --cta: #FF8C00;             /* orange action buttons */
    --cta-dark: #EB6F00;
    --success: #2FBE7E;
    --danger: #E11D48;
    --warning: #F59E0B;

    /* Section accent palette (multi-color promo blocks) */
    --tile-purple: #6B5DD3;
    --tile-green: #2FBE7E;
    --tile-dark: #0F3F4F;
    --tile-blue: #3858E9;
    --tile-coral: #FF7A6B;

    /* Neutrals */
    --text: #1A1F2E;
    --text-muted: #6B7280;
    --text-soft: #9CA3AF;
    --border: #E5E7EB;
    --border-soft: #F1F2F4;
    --bg: #FFFFFF;
    --bg-soft: #F7F8FA;
    --bg-warm: #FAF8F5;

    /* Header tokens (admin-overridable) */
    --search-bg: #F4F5F8;
    --search-text: #1A1F2E;
    --nav-bg: #FFFFFF;
    --nav-text: #1A1F2E;
    --subnav-bg: var(--accent);
    --subnav-text: #1A1F2E;

    /* Geometry */
    --radius: 12px;
    --radius-card: 16px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.12);

    /* Typography */
    --font-body: 'Inter', 'AirArabia', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', 'AirArabia', 'Cairo', -apple-system, sans-serif;

    /* Layout */
    --container: 1280px;
    --gutter: 20px;
    --header-h: 78px;
    --subnav-h: 48px;
}

/* ============================================================
 * 2. RESET & BASE
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding-inline-start: 0; list-style: none; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); margin: 0; line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.4vw, 22px); }
p { margin: 0 0 12px; }

/* RTL Arabic font enforcement (light bodies + bold headings) */
body[dir="rtl"], body[dir="rtl"] p, body[dir="rtl"] span, body[dir="rtl"] a,
body[dir="rtl"] li, body[dir="rtl"] td, body[dir="rtl"] th, body[dir="rtl"] input,
body[dir="rtl"] textarea, body[dir="rtl"] select, body[dir="rtl"] label, body[dir="rtl"] option,
body[dir="rtl"] button {
    font-family: 'AirArabia', 'Cairo', var(--font-body) !important;
    font-weight: 400;
}
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3, body[dir="rtl"] h4,
body[dir="rtl"] h5, body[dir="rtl"] h6, body[dir="rtl"] strong, body[dir="rtl"] b,
body[dir="rtl"] .btn, body[dir="rtl"] .btn-primary, body[dir="rtl"] .btn-cta {
    font-family: 'AirArabia', 'Cairo', var(--font-heading) !important;
    font-weight: 800;
}

/* ============================================================
 * 3. UTILITIES
 * ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: 48px; }
.section-tight { padding-block: 28px; }
.section-heading { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin: 0 0 6px; letter-spacing: -0.01em; }
.section-sub { color: var(--text-muted); font-size: 15px; margin: 0 0 24px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.section-head-row .section-heading { margin: 0; }
.section-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.section-link:hover { color: var(--primary-dark); }
.text-muted { color: var(--text-muted); }
.desktop-only { display: inline-block; }
@media (max-width: 768px) { .desktop-only { display: none !important; } }
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: block; } }

/* ============================================================
 * 4. BUTTONS — pill shape signature
 * ============================================================ */
.btn, .btn-primary, .btn-secondary, .btn-cta, .btn-ghost, .btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-pill);
    font-weight: 700; font-size: 14px; line-height: 1;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-align: center; white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn:hover, .btn-primary:hover, .btn-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-cta { background: var(--cta); color: #fff; }
.btn-cta:hover { background: var(--cta-dark); }
.btn-secondary { background: var(--text); color: #fff; }
.btn-secondary:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ============================================================
 * 5. FORMS
 * ============================================================ */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.form-control, input[type="text"].form-control, input[type="email"].form-control,
input[type="tel"].form-control, input[type="password"].form-control, textarea.form-control, select.form-control {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); background: #fff; font-size: 14px; color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

/* ============================================================
 * 6. ANNOUNCEMENT BAR
 * ============================================================ */
.announcement-bar {
    text-align: center; padding: 9px 16px; font-size: 13px; font-weight: 600;
    background: var(--text); color: #fff; letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--accent); text-decoration: underline; }

/* ============================================================
 * 7. HEADER — two-tier (white + yellow subnav)
 * ============================================================ */
.store-header { background: var(--nav-bg); border-bottom: 1px solid var(--border-soft); position: sticky; top: 0; z-index: 90; }
.header-inner {
    max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
    height: var(--header-h);
}
.header-left { display: flex; align-items: center; gap: 12px; }
.header-logo { display: inline-flex; align-items: center; }
.header-logo img { max-height: 38px; max-width: 160px; object-fit: contain; }
.header-logo .logo-text { font-size: 22px; font-weight: 900; color: var(--nav-text); letter-spacing: -0.02em; }

.search-wrapper { position: relative; max-width: 520px; width: 100%; margin: 0 auto; }
.header-search {
    display: flex; background: var(--search-bg); border-radius: var(--radius-pill);
    padding: 4px 6px 4px 18px; align-items: center; transition: box-shadow .15s ease;
}
.header-search:focus-within { box-shadow: 0 0 0 3px var(--primary-soft); background: #fff; }
.header-search input { flex: 1; border: 0; background: transparent; padding: 10px 0; font-size: 14px; outline: 0; color: var(--search-text); }
.header-search input::placeholder { color: var(--text-soft); }
.header-search button { background: var(--primary); color: #fff; width: 38px; height: 38px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; justify-content: center; }
.header-search button:hover { background: var(--primary-dark); }

.header-right { display: flex; align-items: center; gap: 8px; }
.header-nav { display: none; }   /* Nav moved to subnav strip */
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action-btn, .header-lang {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius-pill);
    color: var(--nav-text); position: relative; transition: background .15s ease;
}
.header-action-btn:hover, .header-lang:hover { background: var(--bg-soft); }
.header-action-btn svg { width: 22px; height: 22px; }
.header-lang { width: auto; padding: 0 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.header-action-btn .badge-count, .badge-count {
    position: absolute; top: 4px; inset-inline-end: 2px;
    background: var(--cta); color: #fff; font-size: 10px; font-weight: 700;
    min-width: 18px; height: 18px; padding: 0 5px; border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.cart-amount { font-weight: 700; color: var(--primary); padding: 0 10px; font-size: 13px; display: none; }
@media (min-width: 1024px) { .cart-amount { display: inline; } }

.mobile-menu-btn { display: none; width: 42px; height: 42px; border-radius: var(--radius-pill); align-items: center; justify-content: center; color: var(--nav-text); }
.mobile-menu-btn:hover { background: var(--bg-soft); }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* ─── Subnav strip (yellow) ─── */
.store-subnav { background: var(--subnav-bg); border-bottom: 1px solid rgba(0,0,0,0.04); }
.subnav-inner {
    max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    height: var(--subnav-h); overflow-x: auto;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-left, .subnav-right { display: flex; align-items: center; gap: 4px; }
.subnav-link {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
    color: var(--subnav-text); font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
    border-radius: var(--radius-pill); white-space: nowrap; transition: background .15s ease, color .15s ease;
}
.subnav-link:hover { background: rgba(0,0,0,0.06); }
.subnav-link.active { background: rgba(0,0,0,0.1); }
.subnav-link svg { width: 18px; height: 18px; }
.subnav-divider { width: 1px; height: 22px; background: rgba(0,0,0,0.12); margin-inline: 8px; flex-shrink: 0; }

@media (max-width: 1024px) {
    .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; height: 64px; }
    .mobile-menu-btn { display: inline-flex; }
    .header-search { display: none; }
    .header-action-btn[title*="Wishlist"], .header-action-btn[title*="قائمة"] { display: none; }
    .store-subnav { display: none; }
}

/* Mobile search bar (under header on mobile) */
.mobile-search-bar { display: none; padding: 10px var(--gutter); background: var(--bg); border-bottom: 1px solid var(--border-soft); }
.mobile-search-bar .search-wrapper { max-width: 100%; }
.mobile-search-bar form { display: flex; background: var(--search-bg); border-radius: var(--radius-pill); padding: 4px 6px 4px 16px; align-items: center; }
.mobile-search-bar input { flex: 1; border: 0; background: transparent; padding: 10px 0; font-size: 14px; outline: 0; color: var(--search-text); }
.mobile-search-bar button { background: var(--primary); color: #fff; width: 36px; height: 36px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 1024px) { .mobile-search-bar { display: block; } }

/* ─── Search dropdown (live results) ─── */
.search-dropdown {
    position: absolute; top: calc(100% + 8px); inset-inline-start: 0; right: 0; left: 0;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    max-height: 70vh; overflow-y: auto; z-index: 200; display: none;
}
.search-dropdown.show { display: block; }
.search-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); }
.search-dropdown-item:hover { background: var(--bg-soft); }
.search-dropdown-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; background: var(--bg-soft); }
.search-dropdown-name { font-size: 14px; font-weight: 600; }
.search-dropdown-price { color: var(--primary); font-weight: 700; font-size: 13px; }
.search-dropdown-empty { padding: 18px; text-align: center; color: var(--text-muted); font-size: 13px; }

/* ============================================================
 * 8. MOBILE SLIDE MENU — drawer with Categories/Menu tabs
 * ============================================================ */
.mobile-menu-overlay {
    display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45);
    z-index: 200; backdrop-filter: blur(2px);
}
.mobile-menu-overlay.show { display: block; }
.mobile-slide-menu {
    position: fixed; top: 0; bottom: 0; inset-inline-start: -100%;
    width: 86%; max-width: 380px; background: #fff; z-index: 210;
    display: flex; flex-direction: column; transition: inset-inline-start .28s ease;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}
body[dir="rtl"] .mobile-slide-menu { right: -100%; left: auto; transition: right .28s ease; }
body[dir="ltr"] .mobile-slide-menu { left: -100%; right: auto; transition: left .28s ease; }
.mobile-slide-menu.show { inset-inline-start: 0; }
body[dir="rtl"] .mobile-slide-menu.show { right: 0; left: auto; }
body[dir="ltr"] .mobile-slide-menu.show { left: 0; right: auto; }

.mm-search { display: flex; gap: 10px; padding: 16px; align-items: center; border-bottom: 1px solid var(--border-soft); }
.mm-search form { flex: 1; display: flex; background: var(--search-bg); border-radius: var(--radius-pill); padding: 4px 4px 4px 14px; align-items: center; }
.mm-search input { flex: 1; border: 0; background: transparent; padding: 10px 0; font-size: 14px; outline: 0; }
.mm-search form button { background: var(--primary); color: #fff; width: 36px; height: 36px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; justify-content: center; }
.mm-close { width: 38px; height: 38px; border-radius: var(--radius-pill); background: var(--bg-soft); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

.mm-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-soft); }
.mm-tab {
    padding: 14px 12px; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-muted); border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.mm-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.mobile-menu-panel { display: none; flex: 1; overflow-y: auto; padding: 8px 0; }
.mobile-menu-panel.active { display: block; }
.mm-cat-link, .mm-menu-link {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 14px 20px; font-size: 15px; font-weight: 600; color: var(--text);
    border-bottom: 1px solid var(--border-soft);
}
.mm-cat-link span:first-child, .mm-menu-link span { display: inline-flex; align-items: center; gap: 12px; }
.mm-cat-link:hover, .mm-menu-link:hover { background: var(--bg-soft); color: var(--primary); }
.mm-cat-link .mm-arrow { color: var(--text-soft); font-size: 20px; line-height: 1; }
.mm-divider { height: 8px; background: var(--bg-soft); margin: 8px 0; }
.mm-section-label { padding: 10px 20px 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
 * 9. CART SIDEBAR
 * ============================================================ */
.cart-overlay {
    display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45);
    z-index: 220; backdrop-filter: blur(2px);
}
.cart-overlay.show { display: block; }
.cart-sidebar {
    position: fixed; top: 0; bottom: 0; inset-inline-end: -100%;
    width: 92%; max-width: 420px; background: #fff; z-index: 230;
    display: flex; flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.12); transition: inset-inline-end .3s ease;
}
body[dir="rtl"] .cart-sidebar { left: -100%; right: auto; transition: left .3s ease; }
body[dir="ltr"] .cart-sidebar { right: -100%; left: auto; transition: right .3s ease; }
.cart-sidebar.show { inset-inline-end: 0; }
body[dir="rtl"] .cart-sidebar.show { left: 0; right: auto; }
body[dir="ltr"] .cart-sidebar.show { right: 0; left: auto; }

.cart-sidebar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid var(--border);
}
.cart-sidebar-header h3 { font-size: 18px; font-weight: 800; }
.cart-sidebar-header button {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
    border-radius: var(--radius-pill); background: var(--bg-soft); font-weight: 600; font-size: 13px;
}
.cart-sidebar-header button:hover { background: var(--border-soft); }

.cart-sidebar-items { flex: 1; overflow-y: auto; padding: 12px 0; }
.cart-sidebar-item {
    display: flex; gap: 14px; padding: 14px 22px;
    border-bottom: 1px solid var(--border-soft); align-items: flex-start;
}
.cart-item-img { width: 70px; height: 70px; border-radius: var(--radius); object-fit: cover; background: var(--bg-soft); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 14px; line-height: 1.4; margin-bottom: 4px; color: var(--text); }
.cart-item-sku, .cart-item-opts { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.cart-item-price { font-weight: 800; color: var(--primary); font-size: 15px; }
.cart-item-qty-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.cart-qty-mini { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); border-radius: var(--radius-pill); padding: 4px; }
.cart-qty-mini button { width: 26px; height: 26px; border-radius: var(--radius-pill); background: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.cart-qty-mini button:hover { background: var(--primary); color: #fff; }
.cart-qty-mini span { min-width: 20px; text-align: center; font-weight: 700; font-size: 13px; }
.cart-item-remove { color: var(--text-soft); font-size: 12px; font-weight: 600; padding: 4px 8px; border-radius: var(--radius-pill); }
.cart-item-remove:hover { color: var(--danger); background: #FEF2F2; }
.cart-empty-msg { text-align: center; padding: 60px 24px; color: var(--text-muted); font-size: 14px; }

.cart-sidebar-freeship {
    background: var(--bg-soft); padding: 12px 22px; font-size: 13px; color: var(--text);
    border-block: 1px solid var(--border-soft);
}
.cart-sidebar-freeship strong { color: var(--primary); font-weight: 800; }
.cart-sidebar-freeship .freeship-bar { height: 6px; background: var(--border-soft); border-radius: var(--radius-pill); margin-top: 8px; overflow: hidden; }
.cart-sidebar-freeship .freeship-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--success)); border-radius: var(--radius-pill); transition: width .4s ease; }

.cart-sidebar-footer { padding: 18px 22px; border-top: 1px solid var(--border); background: var(--bg); }
.cart-sidebar-subtotal {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 18px; font-weight: 800; margin-bottom: 14px;
}
.cart-sidebar-subtotal strong { color: var(--primary); font-size: 22px; font-weight: 900; }
.cart-sidebar-checkout, .cart-sidebar-viewcart {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px; border-radius: var(--radius-pill); font-weight: 700;
    margin-bottom: 8px; font-size: 14px;
}
.cart-sidebar-checkout { background: var(--primary); color: #fff; }
.cart-sidebar-checkout:hover { background: var(--primary-dark); }
.cart-sidebar-viewcart { background: var(--bg-soft); color: var(--text); }
.cart-sidebar-viewcart:hover { background: var(--border-soft); }

/* ============================================================
 * 10. HERO SECTION
 * ============================================================ */
.hero-section { padding: 12px var(--gutter) 0; max-width: var(--container); margin: 0 auto; }
.hero-slider { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 32/13; background: var(--primary); min-height: 320px; }
@media (max-width: 768px) { .hero-slider { aspect-ratio: 4/5; min-height: 460px; } }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .5s ease; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-img.mobile-img { display: none; }
@media (max-width: 768px) {
    .hero-slide-img.desktop-img { display: none; }
    .hero-slide-img.mobile-img { display: block; }
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content {
    position: relative; z-index: 3;
    padding-inline-start: clamp(24px, 6vw, 80px); padding-block: 40px;
    max-width: 56%;
}
@media (max-width: 768px) {
    .hero-content { max-width: 90%; padding: 32px 22px; text-align: start; }
}
.hero-tag {
    display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px); border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff; margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(32px, 5vw, 60px); line-height: 1.05; font-weight: 900;
    color: #fff; margin: 0 0 14px; letter-spacing: -0.02em;
}
.hero-title .hero-pill {
    display: inline-block; background: var(--accent-warm); color: var(--text);
    padding: 0 18px; border-radius: var(--radius-pill); margin-inline-start: 4px;
}
.hero-subtitle { color: rgba(255,255,255,0.92); font-size: clamp(14px, 1.6vw, 17px); margin: 0 0 22px; max-width: 460px; line-height: 1.55; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-row .btn-cta, .hero-cta-row .btn-primary {
    background: var(--cta); color: #fff; padding: 14px 26px; font-size: 15px;
}
.hero-cta-row .btn-cta:hover { background: var(--cta-dark); }

.hero-dots { position: absolute; bottom: 18px; inset-inline-start: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.4); transition: background .15s ease, width .15s ease; cursor: pointer; }
.hero-dot.active { background: #fff; width: 28px; }

/* ============================================================
 * 11. FEATURES BAR
 * ============================================================ */
.features-bar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px; padding: 30px var(--gutter); max-width: var(--container); margin: 0 auto;
}
.feature-item {
    display: flex; align-items: center; gap: 14px; padding: 18px 20px;
    background: var(--bg-soft); border-radius: var(--radius-card);
}
.feature-item-icon {
    width: 48px; height: 48px; border-radius: var(--radius-pill); flex-shrink: 0;
    background: var(--primary-soft); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
}
.feature-item-icon svg { width: 24px; height: 24px; }
.feature-item-body strong { display: block; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.feature-item-body span, .feature-item-body small { font-size: 12px; color: var(--text-muted); }

/* Trust badges variant (used on product page / homepage features section) */
.feature-item.trust { padding: 14px 16px; }
.feature-item.trust .feature-item-icon { background: var(--accent-warm); color: var(--text); }

/* ============================================================
 * 12. CATEGORY CARDS — asymmetric colorful grid
 * ============================================================ */
.categories-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) 24px;
}
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
    position: relative; aspect-ratio: 1/1.05; border-radius: var(--radius-card);
    overflow: hidden; padding: 20px 18px; display: flex; flex-direction: column; justify-content: space-between;
    background: var(--accent-warm); color: var(--text);
    transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card .category-info { position: relative; z-index: 2; }
.category-card .category-info h3 { font-size: clamp(15px, 1.6vw, 20px); font-weight: 800; margin: 0; line-height: 1.15; }
.category-card .category-info .cat-count { display: inline-block; background: rgba(0,0,0,0.06); padding: 2px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; margin-top: 6px; }
.category-card .category-img {
    position: absolute; inset-inline-end: -10%; bottom: -10%; width: 75%; height: 75%;
    object-fit: contain; z-index: 1;
}
/* Color variants for category cards (sequential, automatic) */
.category-card:nth-child(5n+1) { background: #FBE9C9; }
.category-card:nth-child(5n+2) { background: #FFE0A8; }
.category-card:nth-child(5n+3) { background: #FFD66B; }
.category-card:nth-child(5n+4) { background: #FFC857; }
.category-card:nth-child(5n+5) { background: #F9CB55; }

/* ============================================================
 * 13. PROMO BANNER GRID — multi-color asymmetric blocks
 * ============================================================ */
.promo-grid {
    display: grid; gap: 16px; max-width: var(--container); margin: 0 auto;
    padding: 24px var(--gutter); grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 768px) { .promo-grid { grid-template-columns: 1fr; } }
.promo-tile {
    position: relative; padding: 28px; border-radius: var(--radius-card);
    color: #fff; min-height: 200px; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform .2s ease;
}
.promo-tile:hover { transform: translateY(-3px); }
.promo-tile h3 { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.2; max-width: 70%; position: relative; z-index: 2; }
.promo-tile .promo-shop-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #fff; }
.promo-tile .promo-shop-link::after { content: '→'; }
body[dir="rtl"] .promo-tile .promo-shop-link::after { content: '←'; }
.promo-tile .promo-img { position: absolute; inset-inline-end: -5%; bottom: -10%; max-width: 55%; max-height: 100%; z-index: 1; pointer-events: none; }

.promo-tile.purple { background: var(--tile-purple); }
.promo-tile.green  { background: var(--tile-green); }
.promo-tile.dark   { background: var(--tile-dark); }
.promo-tile.blue   { background: var(--tile-blue); }
.promo-tile.coral  { background: var(--tile-coral); }
.promo-tile.warm   { background: var(--accent); color: var(--text); }
.promo-tile.warm .promo-shop-link { color: var(--text); }

.promo-grid-3 { grid-template-columns: 1.1fr 1.5fr 1.1fr; }
@media (max-width: 768px) { .promo-grid-3 { grid-template-columns: 1fr; } }

/* Promo strip (yellow rotating offers bar) */
.promo-strip {
    background: var(--accent); padding: 12px 0; overflow: hidden; position: relative;
}
.promo-strip-track {
    display: flex; gap: 64px; white-space: nowrap; animation: promoStrip 30s linear infinite;
    color: var(--text); font-weight: 700; font-size: 14px;
}
@keyframes promoStrip { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.promo-strip-item { display: inline-flex; align-items: center; gap: 10px; }
.promo-strip-item::before { content: '🐾'; font-size: 14px; }

/* ============================================================
 * 14. PRODUCT CARDS
 * ============================================================ */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
@media (max-width: 600px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.product-card {
    background: #fff; border: 1px solid var(--border-soft);
    border-radius: var(--radius-card); overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }

.card-image, .card-image-slider {
    position: relative; aspect-ratio: 1/1; background: var(--bg-soft);
    overflow: hidden; border-radius: calc(var(--radius-card) - 4px); margin: 4px;
}
.card-image img, .card-image-slider img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-image img { transform: scale(1.05); }

.card-badges { position: absolute; top: 10px; inset-inline-start: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.card-badge {
    display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
    color: #fff; background: var(--primary);
}
.card-badge.new { background: var(--primary); }
.card-badge.sale, .card-badge.discount { background: var(--cta); }
.card-badge.hot { background: var(--danger); }
.card-badge.featured { background: var(--success); }

.card-actions { position: absolute; top: 10px; inset-inline-end: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.card-actions button, .card-actions a {
    width: 36px; height: 36px; border-radius: var(--radius-pill); background: #fff;
    box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; justify-content: center;
    color: var(--text); transition: background .15s ease, color .15s ease;
}
.card-actions button:hover, .card-actions a:hover { background: var(--primary); color: #fff; }
.card-actions button.active { background: var(--danger); color: #fff; }
.card-actions svg { width: 18px; height: 18px; }

.card-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 32px; height: 32px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.92); display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.product-card:hover .card-slider-btn { display: inline-flex; }
.card-slider-btn.prev { inset-inline-start: 8px; }
.card-slider-btn.next { inset-inline-end: 8px; }

.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.card-category { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.card-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--text); margin: 0; min-height: 38px; }
.card-title:hover { color: var(--primary); }
.card-rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.card-rating .stars { color: #F59E0B; }
.card-sku { font-size: 11px; color: var(--text-soft); }

.card-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card-price { font-size: 18px; font-weight: 900; color: var(--primary); }
.compare-price { font-size: 13px; color: var(--text-soft); text-decoration: line-through; }
.card-stock { font-size: 11px; color: var(--success); font-weight: 700; }
.card-stock.out { color: var(--danger); }

.card-color-swatches, .color-swatches { display: flex; gap: 5px; margin-top: 4px; }
.card-color-swatches .swatch, .color-swatches .swatch {
    width: 18px; height: 18px; border-radius: var(--radius-pill); border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--border); cursor: pointer; transition: box-shadow .15s ease;
}
.card-color-swatches .swatch:hover, .color-swatches .swatch.active { box-shadow: 0 0 0 2px var(--primary); }

.card-options { font-size: 11px; color: var(--text-muted); }

.card-add-btn, .card-select-btn {
    margin-top: 10px; padding: 11px 14px; border-radius: var(--radius-pill);
    background: var(--primary); color: #fff; font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: background .15s ease, transform .15s ease;
}
.card-add-btn:hover, .card-select-btn:hover { background: var(--primary-dark); }
.card-select-btn { background: var(--bg-soft); color: var(--text); }
.card-select-btn:hover { background: var(--text); color: #fff; }

/* Bestseller section uses horizontal scroll on mobile */
.products-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
@media (max-width: 1024px) { .products-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .products-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
    .products-row::-webkit-scrollbar { display: none; }
    .products-row > * { flex: 0 0 70%; scroll-snap-align: start; }
}

/* ============================================================
 * 15. BRAND SLIDER / GRID
 * ============================================================ */
.brands-section { padding: 36px 0; }
.brands-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px;
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
.brand-tile {
    background: var(--bg-soft); border-radius: var(--radius-card);
    aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center; padding: 16px;
    transition: background .15s ease, transform .15s ease;
}
.brand-tile:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-tile img { max-height: 60%; max-width: 80%; object-fit: contain; filter: grayscale(0.2); transition: filter .15s ease; }
.brand-tile:hover img { filter: none; }

.brands-slider {
    display: flex; gap: 14px; overflow-x: auto; padding: 8px var(--gutter);
    scroll-snap-type: x mandatory; max-width: var(--container); margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}
.brands-slider::-webkit-scrollbar { display: none; }
.brand-slide-card {
    flex: 0 0 200px; background: var(--bg-soft); border-radius: var(--radius-card);
    padding: 22px; text-align: center; scroll-snap-align: start;
    transition: background .15s ease, transform .15s ease;
}
.brand-slide-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-slide-img { max-width: 80%; max-height: 60px; margin: 0 auto 10px; object-fit: contain; }
.brand-slide-icon { font-size: 32px; margin-bottom: 8px; }

/* Brand page header */
.brand-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 60px 0; }
.brand-header-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.brand-logo-wrap { width: 120px; height: 120px; border-radius: var(--radius-card); background: #fff; display: inline-flex; align-items: center; justify-content: center; padding: 16px; }
.brand-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-info h1 { font-size: 36px; margin-bottom: 6px; }
.brand-info p { color: rgba(255,255,255,0.86); }
.brand-count { display: inline-block; background: rgba(255,255,255,0.18); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; margin-top: 8px; }
.brand-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.brand-cats a { display: inline-flex; padding: 8px 14px; background: rgba(255,255,255,0.12); border-radius: var(--radius-pill); color: #fff; font-size: 13px; font-weight: 600; }
.brand-cats a:hover { background: rgba(255,255,255,0.22); }
.brand-toolbar { padding: 18px var(--gutter); display: flex; justify-content: space-between; align-items: center; max-width: var(--container); margin: 0 auto; flex-wrap: wrap; gap: 12px; }
.product-brand-link { font-size: 12px; color: var(--primary); font-weight: 700; }
.product-brand-link:hover { text-decoration: underline; }

/* ============================================================
 * 16. STORY / FULL-WIDTH CTA BANNER
 * ============================================================ */
.story-banner {
    max-width: var(--container); margin: 32px auto; padding: 0 var(--gutter);
}
.story-banner-inner {
    background: var(--primary); border-radius: var(--radius-card); padding: 48px;
    color: #fff; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
    align-items: center; position: relative; overflow: hidden;
}
@media (max-width: 768px) { .story-banner-inner { grid-template-columns: 1fr; padding: 32px 24px; } }
.story-banner-tag { display: inline-block; padding: 4px 12px; background: var(--cta); color: #fff; border-radius: var(--radius-pill); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.story-banner h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; margin: 0 0 14px; font-weight: 900; }
.story-banner p { color: rgba(255,255,255,0.86); font-size: 15px; margin-bottom: 22px; max-width: 480px; }
.story-banner .btn-cta { background: var(--cta); }
.story-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); margin-inline-start: 8px; }
.story-banner-img { border-radius: var(--radius); width: 100%; max-height: 320px; object-fit: cover; }

/* ============================================================
 * 17. BLOG CARDS
 * ============================================================ */
.blog-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: #fff; border: 1px solid var(--border-soft);
    border-radius: var(--radius-card); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease;
    display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--bg-soft); }
.blog-card-body { padding: 16px 18px 20px; }
.blog-card-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.04em; }
.blog-card-title { font-size: 16px; font-weight: 800; line-height: 1.35; margin: 0 0 8px; color: var(--text); }
.blog-card-title:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.blog-card-link { font-size: 13px; color: var(--primary); font-weight: 700; }
.blog-card-link:hover { text-decoration: underline; }

/* Single blog post */
.blog-post-hero { padding: 40px var(--gutter); max-width: 900px; margin: 0 auto; text-align: center; }
.blog-post-hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 12px 0; }
.blog-post-content { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter) 60px; font-size: 16px; line-height: 1.8; }
.blog-post-content img { border-radius: var(--radius); margin: 20px 0; }
.blog-post-content h2, .blog-post-content h3 { margin: 28px 0 12px; }

/* ============================================================
 * 18. WITH LOVE / PRE-FOOTER ILLUSTRATED SECTION
 * ============================================================ */
.with-love {
    background: var(--bg); padding: 60px var(--gutter);
    text-align: center; border-top: 1px solid var(--border-soft);
}
.with-love-inner {
    max-width: 880px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
@media (max-width: 768px) { .with-love-inner { grid-template-columns: 1fr; gap: 12px; } }
.with-love-illustration { font-size: 80px; line-height: 1; }
.with-love-text { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.1; }
.with-love-text em { color: var(--primary); font-style: normal; }
.with-love-pill { display: inline-block; background: var(--accent-warm); padding: 0 18px; border-radius: var(--radius-pill); }

/* 3-col features bar (above footer) */
.pre-footer-features {
    background: var(--bg-soft); padding: 36px var(--gutter); border-top: 1px solid var(--border-soft);
}
.pre-footer-features-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) { .pre-footer-features-inner { grid-template-columns: 1fr; gap: 16px; } }
.pf-feature { text-align: center; padding: 20px; }
.pf-feature-icon {
    width: 56px; height: 56px; border-radius: var(--radius-pill);
    background: var(--primary-soft); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.pf-feature-icon svg { width: 28px; height: 28px; }
.pf-feature h4 { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
.pf-feature p { font-size: 13px; color: var(--text-muted); margin: 0 0 8px; }
.pf-feature a { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
 * 19. FOOTER
 * ============================================================ */
.store-footer {
    background: var(--text); color: rgba(255,255,255,0.7); padding: 60px 0 0;
    margin-top: 0;
}
.footer-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px;
}
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #fff; margin: 0 0 14px; letter-spacing: 0.02em; }
.footer-col p { font-size: 13px; line-height: 1.65; margin: 0 0 8px; }
.footer-col a {
    display: block; padding: 5px 0; font-size: 13px; color: rgba(255,255,255,0.7);
    transition: color .15s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center;
    color: #fff; padding: 0; transition: background .15s ease;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-newsletter-form { display: flex; background: rgba(255,255,255,0.08); border-radius: var(--radius-pill); padding: 4px; }
.footer-newsletter-form input { flex: 1; padding: 10px 16px; background: transparent; border: 0; color: #fff; outline: 0; font-size: 13px; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter-form button { padding: 0 18px; border-radius: var(--radius-pill); background: var(--primary); color: #fff; font-weight: 700; font-size: 13px; }
.footer-newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
    margin-top: 40px; padding: 18px var(--gutter); border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between; max-width: var(--container);
    margin-inline: auto; font-size: 12px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px;
}

/* ============================================================
 * 20. WHATSAPP FLOAT
 * ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 80px; inset-inline-end: 18px; width: 56px; height: 56px;
    background: #25D366; border-radius: var(--radius-pill); display: inline-flex;
    align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 50; transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@media (max-width: 768px) { .whatsapp-float { bottom: 90px; width: 50px; height: 50px; } }

/* ============================================================
 * 21. MOBILE BOTTOM NAV
 * ============================================================ */
.mobile-bottom-nav {
    display: none; position: fixed; bottom: 0; inset-inline: 0;
    background: #fff; border-top: 1px solid var(--border); z-index: 80;
    padding: 6px 0 calc(env(safe-area-inset-bottom, 0px) + 4px);
}
.mobile-bottom-nav .nav-items { display: flex; justify-content: space-around; max-width: 540px; margin: 0 auto; }
.mobile-bottom-nav .nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 10px; font-weight: 600; color: var(--text-muted);
    padding: 6px 8px; white-space: nowrap; position: relative;
}
.mobile-bottom-nav .nav-item.active { color: var(--primary); }
.mobile-bottom-nav .nav-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.mobile-bottom-nav .nav-item .badge-count {
    position: absolute; top: 0; inset-inline-end: -4px;
    background: var(--cta); color: #fff; min-width: 16px; height: 16px;
    padding: 0 4px; font-size: 9px; font-weight: 700;
    border-radius: var(--radius-pill); display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) {
    .mobile-bottom-nav { display: block; }
    body { padding-bottom: 64px; }
}

/* ============================================================
 * 22. LEAD CAPTURE POPUP
 * ============================================================ */
#leadpop-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.55); z-index: 250; backdrop-filter: blur(2px); }
#leadpop {
    display: none; position: fixed; top: 50%; inset-inline-start: 50%;
    transform: translate(-50%, -50%); z-index: 260;
    background: #fff; border-radius: var(--radius-card); padding: 36px 28px 28px;
    width: 92%; max-width: 440px; flex-direction: column; gap: 12px;
    box-shadow: var(--shadow-lg);
}
body[dir="rtl"] #leadpop { transform: translate(50%, -50%); }
.leadpop-close { position: absolute; top: 12px; inset-inline-end: 12px; width: 32px; height: 32px; border-radius: var(--radius-pill); background: var(--bg-soft); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.leadpop-heading { font-size: 22px; font-weight: 800; margin: 0; line-height: 1.2; }
.leadpop-sub { color: var(--text-muted); font-size: 14px; margin: 0; }
.leadpop-form { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.leadpop-form input { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-size: 14px; outline: 0; }
.leadpop-form input:focus { border-color: var(--primary); }
.leadpop-btn { padding: 13px 18px; border-radius: var(--radius-pill); background: var(--cta); color: #fff; font-weight: 800; font-size: 14px; }
.leadpop-btn:hover { background: var(--cta-dark); }
.leadpop-coupon-reveal { background: var(--accent-warm); padding: 18px; border-radius: var(--radius); text-align: center; }
.leadpop-coupon-code { font-family: monospace; font-size: 20px; font-weight: 800; color: var(--text); padding: 10px 16px; background: #fff; border-radius: var(--radius-pill); display: inline-block; margin: 8px 0; letter-spacing: 0.1em; }
.leadpop-copy { padding: 10px 18px; border-radius: var(--radius-pill); background: var(--text); color: #fff; font-size: 13px; font-weight: 700; }
.leadpop-wa-msg { background: #DCF8C6; color: #128C7E; padding: 16px; border-radius: var(--radius); text-align: center; font-weight: 600; }

/* ============================================================
 * 23. CUSTOM SECTIONS (cs-*)
 * ============================================================ */
.cs-section { padding: 48px 0; }
.cs-section-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.cs-section-head { text-align: center; margin-bottom: 36px; }
.cs-section-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin: 0 0 8px; }
.cs-section-head p { color: var(--text-muted); font-size: 15px; margin: 0; max-width: 640px; margin-inline: auto; }

.cs-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.cs-card {
    background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-card);
    padding: 22px; transition: box-shadow .2s ease, transform .2s ease;
}
.cs-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cs-card-icon { font-size: 32px; margin-bottom: 12px; }
.cs-card-img { width: 100%; border-radius: var(--radius); margin-bottom: 14px; aspect-ratio: 16/10; object-fit: cover; }
.cs-card-body h3, .cs-card-body strong { font-size: 17px; font-weight: 800; margin: 0 0 6px; display: block; }
.cs-card-body p { color: var(--text-muted); font-size: 14px; margin: 0 0 12px; line-height: 1.55; }
.cs-card-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--primary); color: #fff; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; }
.cs-card-btn:hover { background: var(--primary-dark); }

/* Story split */
.cs-story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 768px) { .cs-story-layout { grid-template-columns: 1fr; } }
.cs-story-media { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-soft); }
.cs-story-media img, .cs-story-media video { width: 100%; height: 100%; object-fit: cover; }
.cs-story-body h2 { font-size: clamp(24px, 3vw, 36px); margin: 0 0 14px; }
.cs-story-btn { display: inline-flex; padding: 12px 24px; background: var(--primary); color: #fff; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; margin-top: 14px; }

/* Carousel */
.cs-carousel { display: flex; gap: 16px; overflow-x: auto; padding: 4px var(--gutter); scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.cs-carousel::-webkit-scrollbar { height: 6px; }
.cs-carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.cs-carousel > * { flex: 0 0 280px; scroll-snap-align: start; }

/* Stats */
.cs-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.cs-stat { background: var(--bg-soft); border-radius: var(--radius-card); padding: 28px 20px; text-align: center; transition: transform .15s ease; }
.cs-stat:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow); }
.cs-stat-icon { font-size: 28px; margin-bottom: 8px; }
.cs-stat-number { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.cs-stat-value { font-size: 36px; font-weight: 900; color: var(--primary); }
.cs-stat-suffix { font-size: 22px; font-weight: 800; color: var(--primary); margin-inline-start: 2px; }
.cs-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* Timeline */
.cs-timeline { position: relative; padding: 20px 0; }
.cs-timeline-rail { position: absolute; top: 0; bottom: 0; inset-inline-start: 50%; width: 2px; background: var(--border); }
@media (max-width: 768px) { .cs-timeline-rail { inset-inline-start: 16px; } }
.cs-timeline-entry { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; padding: 18px 0; align-items: center; }
@media (max-width: 768px) { .cs-timeline-entry { grid-template-columns: 32px 1fr; } .cs-timeline-entry.left, .cs-timeline-entry.right { direction: ltr; } }
.cs-timeline-entry.left .cs-timeline-card { grid-column: 1; text-align: end; }
.cs-timeline-entry.right .cs-timeline-card { grid-column: 3; }
.cs-timeline-dot { width: 14px; height: 14px; border-radius: var(--radius-pill); background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.cs-timeline-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-card); padding: 18px 20px; }
.cs-timeline-card:hover { box-shadow: var(--shadow); }
.cs-timeline-year { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.cs-timeline-img { border-radius: var(--radius); margin-top: 10px; max-height: 140px; }

/* Testimonials */
.cs-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.cs-testimonial {
    background: var(--bg-soft); border-radius: var(--radius-card); padding: 24px;
    position: relative; transition: transform .15s ease;
}
.cs-testimonial:hover { transform: translateY(-3px); }
.cs-testimonial::before { content: '"'; position: absolute; top: 8px; inset-inline-start: 18px; font-size: 60px; line-height: 1; color: var(--primary); opacity: 0.18; font-family: serif; }
.cs-testimonial-rating { color: #F59E0B; margin-bottom: 8px; }
.cs-testimonial-text { font-size: 14px; line-height: 1.6; color: var(--text); margin: 8px 0 14px; }
.cs-testimonial-author { font-weight: 800; font-size: 14px; }
.cs-testimonial-meta { font-size: 12px; color: var(--text-muted); }

.cs-feature-body strong { font-size: 16px; font-weight: 800; }

/* Video */
.cs-video { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 16/9; background: var(--text); }
.cs-video video, .cs-video iframe { width: 100%; height: 100%; }
.cs-video-thumb { position: relative; cursor: pointer; }
.cs-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-play-btn {
    position: absolute; top: 50%; inset-inline-start: 50%; transform: translate(-50%, -50%);
    width: 72px; height: 72px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.92);
    display: inline-flex; align-items: center; justify-content: center; transition: transform .15s ease;
}
.cs-video-thumb:hover .cs-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.cs-play-btn::before { content: ''; border-style: solid; border-width: 12px 0 12px 18px; border-color: transparent transparent transparent var(--primary); margin-inline-start: 4px; }

/* ============================================================
 * 24. SHOP PAGE / FILTERS
 * ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter); }
@media (max-width: 1024px) { .shop-layout { grid-template-columns: 1fr; } .shop-sidebar { display: none; } .shop-sidebar.show { display: block; } }
.shop-sidebar { background: var(--bg-soft); border-radius: var(--radius-card); padding: 22px; align-self: start; position: sticky; top: 100px; }
.shop-sidebar h4 { font-size: 14px; font-weight: 800; margin: 0 0 12px; }
.shop-filter-group { padding: 14px 0; border-bottom: 1px solid var(--border); }
.shop-filter-group:last-child { border-bottom: 0; }
.shop-filter-list a, .shop-filter-list label { display: block; padding: 4px 0; font-size: 13px; color: var(--text-muted); }
.shop-filter-list a:hover, .shop-filter-list a.active { color: var(--primary); font-weight: 700; }
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-bottom: 18px; flex-wrap: wrap;
}
.shop-toolbar .toolbar-info { font-size: 13px; color: var(--text-muted); }
.shop-toolbar select { padding: 8px 14px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-size: 13px; }
.shop-toolbar button { padding: 8px 14px; border-radius: var(--radius-pill); background: var(--bg-soft); font-size: 13px; font-weight: 600; }

/* ============================================================
 * 25. PRODUCT PAGE
 * ============================================================ */
.product-layout {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px;
    max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter);
}
@media (max-width: 1024px) { .product-layout { grid-template-columns: 1fr; } }
.product-gallery { position: relative; }
.product-gallery-main { background: var(--bg-soft); border-radius: var(--radius-card); aspect-ratio: 1/1; overflow: hidden; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.product-gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden; cursor: pointer; flex-shrink: 0; border: 2px solid transparent; }
.product-gallery-thumb.active { border-color: var(--primary); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-info .product-brand-link { display: inline-block; margin-bottom: 8px; font-weight: 700; }
.product-info h1 { font-size: clamp(24px, 3vw, 36px); margin: 0 0 12px; line-height: 1.2; }
.product-info .big-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 13px; }
.product-info .big-rating .stars { color: #F59E0B; }
.product-info .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.product-info .price-row .card-price { font-size: 32px; }
.product-info .product-desc { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }

.product-options-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.product-options-list .option-group { padding: 14px; background: var(--bg-soft); border-radius: var(--radius); }
.product-options-list .option-group-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.option-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.option-pill {
    padding: 8px 14px; border-radius: var(--radius-pill); border: 1.5px solid var(--border);
    background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.option-pill.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.option-swatch {
    width: 32px; height: 32px; border-radius: var(--radius-pill); border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--border); cursor: pointer; transition: box-shadow .15s ease;
}
.option-swatch.selected { box-shadow: 0 0 0 2px var(--primary); }

.product-cta-row { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; margin-bottom: 20px; }
.product-qty { display: inline-flex; align-items: center; background: var(--bg-soft); border-radius: var(--radius-pill); padding: 4px; }
.product-qty button { width: 36px; height: 36px; border-radius: var(--radius-pill); background: #fff; font-weight: 700; box-shadow: var(--shadow-sm); }
.product-qty button:hover { background: var(--primary); color: #fff; }
.product-qty span { padding: 0 16px; font-weight: 700; }
.btn-add-cart { flex: 1; min-width: 180px; padding: 14px 24px; border-radius: var(--radius-pill); background: var(--primary); color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-buy-now { padding: 14px 24px; border-radius: var(--radius-pill); background: var(--cta); color: #fff; font-weight: 700; font-size: 15px; }
.btn-buy-now:hover { background: var(--cta-dark); }

.product-tabs { border-block: 1px solid var(--border); margin: 28px 0; padding: 0; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.product-tabs-nav { display: flex; gap: 8px; border-bottom: 1px solid var(--border); padding: 0; overflow-x: auto; }
.product-tabs-nav button { padding: 14px 18px; font-weight: 700; font-size: 14px; color: var(--text-muted); border-bottom: 2px solid transparent; white-space: nowrap; }
.product-tabs-nav button.active { color: var(--primary); border-bottom-color: var(--primary); }
.product-tab-content { padding: 24px 0 36px; line-height: 1.7; }

/* Product extra features chips */
.product-extras { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.product-extra-chip { display: flex; gap: 12px; padding: 12px 14px; background: var(--bg-soft); border-radius: var(--radius); align-items: center; }
.product-extra-chip strong { font-size: 13px; font-weight: 800; }
.product-extra-chip span { font-size: 12px; color: var(--text-muted); }
.product-extra-chip .price-label { margin-inline-start: auto; padding: 4px 10px; background: var(--accent-warm); border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; }

/* ============================================================
 * 26. PAGE HEADER / BREADCRUMBS
 * ============================================================ */
.page-header, .custom-page-header {
    background: var(--bg-soft); padding: 40px var(--gutter) 28px; text-align: center;
    border-bottom: 1px solid var(--border-soft);
}
.page-header h1, .custom-page-header h1 { font-size: clamp(26px, 3.5vw, 40px); margin: 0; }
.page-header p, .custom-page-header p { color: var(--text-muted); margin-top: 8px; max-width: 640px; margin-inline: auto; }
.breadcrumbs {
    max-width: var(--container); margin: 12px auto 0; padding: 0 var(--gutter);
    font-size: 12px; color: var(--text-muted); display: flex; gap: 6px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .breadcrumb-sep { opacity: 0.5; }

/* ============================================================
 * 27. ACCOUNT / CHECKOUT / CART PAGE
 * ============================================================ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter); }
@media (max-width: 768px) { .account-layout { grid-template-columns: 1fr; } }
.account-sidebar { background: var(--bg-soft); border-radius: var(--radius-card); padding: 22px; align-self: start; }
.account-sidebar a { display: block; padding: 10px 14px; font-size: 14px; color: var(--text); border-radius: var(--radius-pill); margin-bottom: 4px; }
.account-sidebar a:hover { background: #fff; }
.account-sidebar a.active { background: var(--primary); color: #fff; }
.account-content { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-card); padding: 28px; }

.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter); }
@media (max-width: 1024px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form, .checkout-summary {
    background: var(--bg-soft); border-radius: var(--radius-card); padding: 24px;
}
.checkout-form .card { background: #fff; border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.checkout-form h3 { font-size: 16px; margin: 0 0 12px; font-weight: 800; }
.checkout-summary { position: sticky; top: 100px; align-self: start; }
.checkout-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.checkout-summary-row.total { font-size: 18px; font-weight: 900; color: var(--primary); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 8px; }

/* Cart page */
.cart-page-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter); }
@media (max-width: 1024px) { .cart-page-grid { grid-template-columns: 1fr; } }
.cart-page-list { background: var(--bg-soft); border-radius: var(--radius-card); padding: 18px; }
.cart-page-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 14px; background: #fff; border-radius: var(--radius); align-items: center; margin-bottom: 12px; }
.cart-page-row img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius); background: var(--bg-soft); }

/* ============================================================
 * 28. PAGINATION
 * ============================================================ */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 28px var(--gutter); flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 38px; height: 38px; border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; color: var(--text);
    background: var(--bg-soft);
}
.pagination a:hover { background: var(--primary); color: #fff; }
.pagination .current, .pagination a.active { background: var(--primary); color: #fff; }

/* ============================================================
 * 29. FLASH / ALERTS
 * ============================================================ */
.flash-msg, .alert {
    max-width: var(--container); margin: 14px auto; padding: 14px 18px;
    border-radius: var(--radius); font-size: 14px; font-weight: 600;
}
.flash-msg.success, .alert-success { background: #DCFCE7; color: #14532D; border-inline-start: 4px solid var(--success); }
.flash-msg.error, .alert-error, .flash-msg.danger { background: #FEE2E2; color: #7F1D1D; border-inline-start: 4px solid var(--danger); }
.flash-msg.warning, .alert-warning { background: #FEF3C7; color: #78350F; border-inline-start: 4px solid var(--warning); }
.flash-msg.info, .alert-info { background: var(--primary-soft); color: var(--primary-dark); border-inline-start: 4px solid var(--primary); }

/* ============================================================
 * 30. CATEGORY DEAL BADGES
 * ============================================================ */
.cat-deal-banner {
    background: linear-gradient(90deg, var(--cta), var(--accent));
    color: var(--text); padding: 12px 22px; border-radius: var(--radius);
    font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 10px;
    margin-block: 14px;
}
.cat-deal-card { display: inline-block; padding: 4px 10px; background: var(--accent-warm); color: var(--text); border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; margin-top: 6px; }
.cat-deal-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; background: var(--cta); color: #fff; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; }

/* ============================================================
 * 31. CONTACT GRID
 * ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: var(--container); margin: 28px auto; padding: 0 var(--gutter); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--bg-soft); border-radius: var(--radius-card); padding: 28px; }
.contact-info-row { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); align-items: center; }
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-icon { width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; }

/* ============================================================
 * 32. ANIMATIONS
 * ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }

/* ============================================================
 * 33. LARGE-SCREEN POLISH
 * ============================================================ */
@media (min-width: 1280px) {
    .hero-content { padding-block: 56px; }
    .section { padding-block: 60px; }
}

/* ============================================================
 * 34. PRINT
 * ============================================================ */
@media print {
    .store-header, .store-subnav, .store-footer, .mobile-bottom-nav,
    .whatsapp-float, .cart-sidebar, .cart-overlay, .mobile-menu-overlay,
    #leadpop, #leadpop-overlay { display: none !important; }
}
