/* ── BabyNoora Store — Styles ───────────────────────────────────────────── */
/* Luxury Baby Boutique — 2026 Design Language                              */
/* Shopify Polaris structure · Tinker minimalism · Dusty Mauve luxury       */
/* Mobile-first, dark mode via html.dark                                    */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    /* ── 2026 Luxury Palette ────────────────────────────────────────────────
       One bold accent (Dusty Mauve) on a clean warm-neutral foundation.
       Inspired by: Shopify Polaris + Tinker.com + 2026 muted pastel trend.
       No rainbow — every color earns its place.
    ──────────────────────────────────────────────────────────────────────── */

    /* Brand accent — Dusty Mauve (2026 muted pastel trend, maternal, editorial) */
    --cream: #FAFAF8;
    --earth: #8B6F7A;          /* primary accent — dusty mauve    */
    --dark: #1C1917;           /* near-black text                 */
    --gold: #8B6F7A;           /* alias → accent                  */
    --rust: #9B8A8F;           /* warm muted rose-gray            */

    /* Semantic utility tints */
    --rose: #C4A8B4;           /* light mauve border/accent       */
    --lavender: #C4B8C0;       /* warm muted neutral              */
    --peach: #F5EDF2;          /* light mauve tint                */
    --mint: #C8E6D4;           /* soft sage — "new" labels        */
    --sky: #DBEAFE;            /* soft blue — info states         */
    --blush: #F5EDF2;          /* light mauve tint                */
    --coral: #8B6F7A;          /* alias → accent                  */

    /* System Colors — Shopify Polaris warm adaptation */
    --bg: #FAFAF8;
    --bg-secondary: #F4F0EC;
    --card: #FFFFFF;
    --border: #E8E2DA;
    --text: #1C1917;
    --text-light: #78716C;
    --success: #166534;
    --warning: #B45309;
    --danger: #B91C1C;

    /* Typography — Inter body (Shopify), Cormorant headings (luxury serif) */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-accent: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-md: 17px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 28px;
    --text-3xl: 34px;
    --text-4xl: 40px;
    --text-hero: 48px;

    /* Spacing Scale (8pt grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --container: 1200px;

    /* UI Tokens */
    --radius: 12px;
    --radius-md: 10px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 2px 12px rgba(45,41,38,0.04);
    --shadow-lg: 0 8px 30px rgba(45,41,38,0.06);
    --backdrop-blur: blur(20px);

    /* Animation */
    --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;

    /* Z-Index Scale */
    --z-header: 100;
    --z-dropdown: 150;
    --z-bottom-nav: 100;
    --z-fab: 200;
    --z-modal-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;

    /* Touch */
    --touch-min: 44px;

    /* Layout */
    --site-header-height: 84px;
    --bottom-nav-height: 88px;
}

/* ── Dark Mode ──────────────────────────────────────────────────────────── */
html.dark {
    --bg: #0F0E0D;
    --bg-secondary: #1A1816;
    --card: #1A1816;
    --text: #F5F0EB;
    --text-light: #78716C;
    --border: #2D2926;
    --dark: #F5F0EB;
    --earth: #C4A0B0;
    --gold: #C4A0B0;
    --cream: #0F0E0D;
    --rose: #B890A0;
    --lavender: #9B8B94;
    --peach: #2A1E22;
    --mint: #1A3328;
    --sky: #1E3A5F;
    --blush: #2A1E22;
    --coral: #C4A0B0;
    --rust: #806070;
    --shadow: 0 2px 12px rgba(0,0,0,0.35);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.55);
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
}

html.dark .input:focus {
    border-color: var(--earth);
    box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.2);
}

html.dark .newsletter-section {
    background: linear-gradient(135deg, #3a1f2e 0%, #4e3040 45%, #5a3a4c 75%, #3e2236 100%);
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

body {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    word-break: break-word;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.03em;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

.text-light { color: var(--text-light); }
.text-earth { color: var(--earth); }
.text-gold { color: var(--gold); }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ── Header (Glassmorphism) ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 var(--space-lg);
}

/* Mobile: compact header */
@media (max-width: 767px) {
    .site-header { height: 60px; }
}

/* Desktop: taller for bigger logo */
@media (min-width: 768px) {
    .site-header { height: 80px; }
}

html.dark .site-header {
    background: rgba(12, 11, 10, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

/* Desktop: 3-column grid — left (nav) | center (logo) | right (icons) */
@media (min-width: 768px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-menu-btn {
    width: var(--touch-min);
    height: var(--touch-min);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    transition: background var(--duration-fast) var(--ease-out);
}

.header-menu-btn:active {
    background: var(--border);
    transform: scale(0.95);
}

.header-menu-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--text);
    stroke-width: 1.5;
    fill: none;
}

/* Mobile: logo centered via absolute */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Desktop: grid handles centering, no absolute needed */
@media (min-width: 768px) {
    .header-center {
        position: static;
        transform: none;
        justify-self: center;
    }
}

.header-logo {
    height: 72px;
    width: auto;
}

@media (min-width: 768px) {
    .header-logo { height: 90px; }
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-btn {
    width: var(--touch-min);
    height: var(--touch-min);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    position: relative;
    transition: background var(--duration-fast) var(--ease-out);
}

.header-btn:active {
    background: var(--border);
    transform: scale(0.95);
}

.header-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--text);
    stroke-width: 1.5;
    fill: none;
}

.cart-badge {
    position: absolute;
    top: 6px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--earth);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.cart-badge.bump {
    animation: cartBump 400ms var(--ease-spring);
}

@keyframes cartBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-badge:empty {
    display: none;
}

/* ── Desktop Header Nav ─────────────────────────────────────────────────── */
.header-nav {
    display: none;
    gap: var(--space-lg);
}

.header-nav a {
    font-size: var(--text-sm);
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-out);
    padding: var(--space-xs) 0;
}

.header-nav a:hover {
    color: var(--text);
}

.header-nav a.active {
    color: var(--earth);
}

/* Desktop dark mode toggle — only visible on desktop (in header-right) */
.header-darkmode-desktop { display: none; }

@media (min-width: 768px) {
    .site-header { height: 84px; }
    .header-left { display: none; } /* hide hamburger + mobile dark mode on desktop */
    .header-nav { display: flex; grid-column: 1; justify-self: start; }
    .header-center { grid-column: 2; }
    .header-right { grid-column: 3; justify-self: end; }
    .header-darkmode-desktop { display: inline-flex; }
}

/* ── Header Shop Dropdown ────────────────────────────────────────── */
.header-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-dropdown);
    padding: var(--space-xl) var(--space-lg);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
}
.header-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.header-dropdown-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-lg);
}
.header-dropdown-item {
    text-align: center;
    text-decoration: none;
}
.header-dropdown-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    transition: transform 300ms ease;
}
.header-dropdown-item:hover img {
    transform: scale(1.03);
}
.header-dropdown-item span {
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    display: block;
}
html.dark .header-dropdown {
    background: var(--card);
}
@media (max-width: 767px) {
    .header-dropdown { display: none !important; }
}

/* ── Header Search ────────────────────────────────────────────────── */
.header-search {
    display: none;
    align-items: center;
    position: relative;
}
@media (min-width: 768px) {
    .header-search { display: flex; }
}
.header-search-input {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: var(--text-sm);
    color: var(--text);
    outline: none;
    transition: width 300ms var(--ease-out), padding 300ms var(--ease-out);
    height: 36px;
    border-radius: var(--radius-sm);
}
.header-search.active .header-search-input {
    width: 200px;
    padding: 0 var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

/* ── Main Content ───────────────────────────────────────────────────────── */
.main-content {
    flex: 1;
    padding-bottom: 0;
    overflow-x: clip;
    max-width: 100vw;
    touch-action: pan-y;
}

/* ── Page Transitions ───────────────────────────────────────────────────── */
body {
    overflow-x: hidden;
}
.page-exit {
    opacity: 0;
    transition: opacity 140ms var(--ease-out);
    pointer-events: none;
}
/* Forward: new page slides in from right */
.page-enter {
    opacity: 0;
    transform: translateX(40px);
}
/* Back: new page slides in from left */
.page-enter-back {
    opacity: 0;
    transform: translateX(-40px);
}
.page-active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

/* ── Bottom Nav (Mobile) ────────────────────────────────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    left: 12px;
    right: 12px;
    z-index: var(--z-bottom-nav);
    background: rgba(250, 249, 246, 0.96);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: 24px;
    border: 1px solid rgba(139, 111, 122, 0.15);
    box-shadow: 0 4px 24px rgba(45, 41, 38, 0.10), 0 1px 4px rgba(45, 41, 38, 0.06);
    padding: 6px 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 280ms var(--ease-out), opacity 280ms var(--ease-out);
}

/* Hide bottom nav on product pages */
.bottom-nav.nav-hidden {
    transform: translate3d(0, calc(100% + 20px), 0);
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .bottom-nav { display: none; }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--space-xs);
    min-width: var(--touch-min);
    color: #5A5552;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.bottom-nav-item.active {
    color: #7A6448;
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.bottom-nav-item .nav-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    background: var(--earth);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.bottom-nav-icon {
    position: relative;
}

/* ── WhatsApp FAB ───────────────────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: calc(76px + env(safe-area-inset-bottom));
    right: var(--space-md);
    z-index: var(--z-fab);
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: transform var(--duration-fast) var(--ease-spring),
                box-shadow var(--duration-fast) var(--ease-out);
}

.whatsapp-fab:active {
    transform: scale(0.92);
}

.whatsapp-fab:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.whatsapp-fab svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

@media (min-width: 768px) {
    .whatsapp-fab {
        bottom: var(--space-lg);
    }
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
}

.card:active {
    transform: scale(0.97);
}

/* ── Product Card — 2026 Design Language ────────────────────────────────── */
.product-card {
    background: transparent;
    overflow: visible;                 /* allow badge to overlay image */
    position: relative;               /* anchor for absolute badges   */
    transition: none;
}

.product-card:active {
    transform: scale(0.98);
}

.product-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);  /* rounder corners — softer, more modern */
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-info {
    padding: 10px 2px 4px;
}

/* Category label removed — it's visual noise when browsing */
.product-card-category {
    display: none;
}

.product-card-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-price {
    font-size: var(--text-sm);
    color: var(--text);               /* price is text color, not accent — cleaner */
    font-weight: 600;
}

.product-card-compare {
    font-size: var(--text-xs);
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: var(--space-sm);
    font-weight: 400;
}

.product-card-sold {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: var(--space-xs);
}

/* ── Product Grid — more breathing room (Shopify/Tinker whitespace) ─────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px var(--space-md);
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl) var(--space-xl);
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Category Stories (Instagram-style) ─────────────────────────────────── */
.category-stories-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: var(--space-sm) var(--space-md) var(--space-md);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.category-stories-row::-webkit-scrollbar { display: none; }

.category-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}

.category-story-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out);
}

.category-story:hover .category-story-ring {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(139,111,122,0.25);
}

.category-story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-secondary);
}

.category-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-story-fallback {
    width: 100%;
    height: 100%;
    background: var(--peach);
}

.category-story-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.03em;
    text-align: center;
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .category-stories-row { gap: 12px; }
    .category-story-ring {
        width: calc((100vw - 32px - 24px) / 3);
        height: calc((100vw - 32px - 24px) / 3);
    }
    .category-story-label {
        max-width: calc((100vw - 32px - 24px) / 3);
    }
}

html.dark .category-story-label { color: var(--text-light); }

/* Legacy grid — kept for fallback */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
}

@media (max-width: 767px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    .category-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: block;
    container-type: inline-size;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--ease-out);
}

.category-card:hover img { transform: scale(1.05); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0,0,0,0.50));
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg) var(--space-md);
    transition: background 350ms ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(transparent 25%, rgba(0,0,0,0.60));
}

.category-card-overlay h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(18px, 9cqi, 28px);
    letter-spacing: 0.01em;
    font-weight: 400;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Legacy scroll */
.category-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-lg) var(--space-md);
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

/* ── Buttons — Tinker pill + 2026 design language ───────────────────────── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    height: 48px;
    padding: 0 28px;
    border-radius: 999px;               /* full pill — Tinker/2026 style */
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;              /* sentence case */
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 200ms ease,
                filter 200ms ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn-primary {
    background: var(--earth);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(139, 111, 122, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 111, 122, 0.3);
    filter: brightness(1.08);
}

html.dark .btn-primary {
    background: var(--earth);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--earth);
    background: var(--blush);
}

.btn-earth {
    background: var(--earth);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(139, 111, 122, 0.2);
}

.btn-earth:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    height: 36px;
    padding: 0 var(--space-md);
    font-size: var(--text-xs);
    border-radius: var(--radius-xs);
}

.btn-lg {
    height: 52px;
    padding: 0 var(--space-xl);
    font-size: var(--text-base);
    border-radius: var(--radius);
}

/* ── Form Inputs ────────────────────────────────────────────────────────── */
.input {
    width: 100%;
    height: var(--touch-min);
    padding: 0 var(--space-md);
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
    color: var(--text);
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
    outline: none;
}

.input:focus {
    border-color: var(--earth);
    box-shadow: 0 0 0 3px rgba(139, 111, 122, 0.15);
}

.input::placeholder {
    color: var(--text-light);
}

.input-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.input-group {
    margin-bottom: var(--space-md);
}

select.input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2386868B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.input {
    height: auto;
    min-height: 100px;
    padding: var(--space-md);
    resize: vertical;
}

/* iOS Safari auto-zooms on inputs with font-size < 16px, which leaves the
   page zoomed in (and horizontally pannable) after the keyboard dismisses.
   Force 16px on mobile to suppress that behaviour. */
@media (max-width: 767px) {
    input, select, textarea,
    .input,
    .checkout-form .input,
    .catalog-search-input,
    .pdp-edit-form .input {
        font-size: 16px !important;
    }
}

/* ── City Autocomplete Dropdown ────────────────────────────────────── */
.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    max-height: 0;
    overflow-y: auto;
    z-index: var(--z-dropdown);
    transition: max-height 200ms ease, opacity 200ms ease;
    opacity: 0;
    pointer-events: none;
}

.city-dropdown.open {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    border-top: none;
}

.city-option {
    padding: 10px var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    transition: background 150ms ease;
}

.city-option:hover,
.city-option.active {
    background: var(--bg-secondary);
}

.city-option-name {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
}

.city-option-detail {
    font-size: var(--text-xs);
    color: var(--text-light);
    text-align: right;
    white-space: nowrap;
}

.city-no-match {
    font-size: var(--text-xs);
    color: var(--gold);
    cursor: default;
    font-style: italic;
    padding: 12px var(--space-md);
    line-height: 1.5;
}

.city-no-match:hover {
    background: transparent;
}

/* ── Network Popup ─────────────────────────────────────────────────────── */
.network-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255,251,247,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    text-align: center;
}
html.dark .network-popup {
    background: rgba(12,11,10,0.97);
}

/* ── Toast ──────────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: calc(var(--site-header-height) + var(--space-md));
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    pointer-events: none;
    width: calc(100% - var(--space-lg));
    max-width: 400px;
}

.toast {
    background: var(--card);
    color: var(--text);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    pointer-events: auto;
    animation: toastIn var(--duration-normal) var(--ease-spring);
    border-left: 3px solid var(--earth);
}

.toast.success { border-left-color: var(--success); background: #F0FFF4; }
.toast.error { border-left-color: var(--danger); background: #FFF5F5; }
.toast.warning { border-left-color: var(--warning); background: #FFFBEB; }
html.dark .toast.success { background: rgba(52, 199, 89, 0.1); }
html.dark .toast.error { background: rgba(220, 38, 38, 0.1); }
html.dark .toast.warning { background: rgba(234, 179, 8, 0.1); }

.toast-exit {
    animation: toastOut var(--duration-fast) var(--ease-out) forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
    to { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

@keyframes giftPopIn {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.gift-popup-inner {
    animation: giftPopIn 420ms var(--ease-out) 120ms both;
}
.gift-popup-inner > * {
    opacity: 0;
    transform: translateY(10px);
    animation: giftPopIn 380ms var(--ease-out) both;
}
.gift-popup-inner > *:nth-child(1) { animation-delay: 150ms; }
.gift-popup-inner > *:nth-child(2) { animation-delay: 220ms; }
.gift-popup-inner > *:nth-child(3) { animation-delay: 290ms; }
.gift-popup-inner > *:nth-child(4) { animation-delay: 340ms; }
.gift-popup-inner > *:nth-child(5) { animation-delay: 380ms; }

/* ── Modal (Bottom Sheet on mobile) ─────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal-overlay);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    display: none;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal {
    position: fixed;
    z-index: var(--z-modal);
    background: var(--card);
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Mobile: bottom sheet */
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    border-radius: var(--radius) var(--radius) 0 0;
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out);
}

.modal.active {
    transform: translateY(0);
}

.modal-handle {
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: var(--space-sm) auto var(--space-md);
}

.modal-header {
    padding: 0 var(--space-lg) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
}

.modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light);
    stroke-width: 2;
}

.modal-body {
    padding: 0 var(--space-lg) var(--space-lg);
}

@media (min-width: 768px) {
    .modal {
        /* Desktop: centered card */
        bottom: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0;
        width: 90%;
        max-width: 480px;
        max-height: 80vh;
        border-radius: var(--radius);
    }

    .modal.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    .modal-handle { display: none; }
}

/* ── Page Preloader ─────────────────────────────────────────────────────── */
.bn-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
}
.bn-preloader--lg {
    min-height: 60vh;
}
.bn-preloader img {
    width: 72px;
    height: 72px;
    animation: bn-pulse 1.8s ease-in-out infinite;
}
@keyframes bn-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
    .bn-preloader img { animation: none; opacity: 0.5; }
}

/* ── Hero Section ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 var(--space-lg) var(--space-2xl);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,14,10,0.72) 0%,
        rgba(20,14,10,0.1) 55%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 560px;
}

.hero-season-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.hero-title em {
    font-style: italic;
}

.hero-divider {
    display: none;
}

.hero-subtitle {
    font-size: var(--text-sm);
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
}

.hero .btn {
    background: #fff;
    color: var(--dark);
    border: none;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0 var(--space-xl);
    height: 44px;
    border-radius: 22px;
    transition: all var(--duration-normal) var(--ease-out);
}

.hero .btn:hover {
    background: rgba(255,255,255,0.9);
    color: var(--dark);
}

@media (max-width: 767px) {
    .hero {
        height: 75vh;
        min-height: 420px;
        padding: 0 var(--space-md) var(--space-xl);
    }
    .hero-subtitle {
        font-size: var(--text-sm);
    }
}


/* Hero content entrance animation */
.hero-animate {
    animation: heroFadeUp 1s ease-out 0.3s both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Product Card Badges — 2026: overlaid inside image, top-left ─────────── */
/* Positioned absolute on .product-card (position:relative) — Zara/ASOS style */
.pc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    pointer-events: none;
}
.pc-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    width: fit-content;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.pc-badge-sale {
    background: var(--dark);
    color: #fff;
}
.pc-badge-new {
    background: var(--earth);
    color: #fff;
}
.pc-badge-best {
    background: rgba(255,255,255,0.92);
    color: var(--text);
}
.pc-badge-oos {
    background: rgba(28,25,23,0.55);
    color: #fff;
}
.product-card-oos .product-card-image {
    opacity: 0.55;
    filter: grayscale(20%);
}

/* ── Catalog Banner ───────────────────────────────────────────────────── */

.catalog-banner {
    position: relative;
    height: 240px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}
.catalog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl) var(--space-lg);
    color: #fff;
}
.catalog-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.catalog-banner-desc {
    font-size: var(--text-sm);
    opacity: 0.85;
    margin-top: var(--space-xs);
    max-width: 500px;
}
@media (max-width: 767px) {
    .catalog-banner { height: 180px; }
}

/* ── Micro-animations ─────────────────────────────────────────────────── */

/* Wishlist heart pulse */
@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.product-card-wishlist.active svg {
    animation: heartPulse 0.6s ease;
}



/* ── Section Headings — 2026 Editorial (Tinker + Shopify inspired) ──────── */
.section-heading {
    text-align: center;
    padding: 64px var(--space-md) 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 7vw, 48px);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-transform: none;
    order: 1;
    margin-top: 0;
}

.section-heading h2::after {
    display: none;
}

.section-heading p {
    order: 2;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.01em;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
}

/* Remove ALL decorative lines — whitespace does the job */
.section-heading p::before,
.section-heading p::after {
    display: none;
}

.section-heading {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container .section-heading {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 767px) {
    .section-heading { padding-top: 36px; padding-bottom: 14px; }
    .section-heading h2 { font-size: clamp(24px, 7.5vw, 36px); }
}

/* ── Marquee Banner ─────────────────────────────────────────────────────── */
#promoBarSlot:not(:empty) {
    position: sticky;
    top: 0;
    z-index: calc(var(--z-header) + 1);
}

#promoBarSlot:not(:empty) ~ .site-header {
    top: 24px;
}

.marquee {
    background: linear-gradient(90deg, #7a5468 0%, #9b7a8a 40%, #8b6f7a 70%, #7a5468 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 7px 0;
    overflow: hidden;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: none;
}

html.dark .marquee {
    background: linear-gradient(90deg, #4a3040 0%, #5e3f52 40%, #523648 70%, #4a3040 100%);
    color: rgba(255, 255, 255, 0.70);
    border-bottom: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    padding: 0 var(--space-2xl);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
}

.marquee-track span::after {
    content: '✦';
    color: rgba(255, 255, 255, 0.55);
    font-size: 7px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ── Shipping Progress Bar ──────────────────────────────────────────────── */
.shipping-progress {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.shipping-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: var(--space-sm);
}

.shipping-progress-fill {
    height: 100%;
    background: var(--earth);
    border-radius: 2px;
    transition: width var(--duration-slow) var(--ease-out);
}

.shipping-progress-text {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.shipping-progress-text strong {
    color: var(--earth);
}

/* ── Offline Banner ─────────────────────────────────────────────────────── */
.offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: calc(var(--z-toast) + 1);
    background: var(--danger);
    color: #fff;
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    animation: slideDown var(--duration-normal) var(--ease-out);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ── Side Menu (Mobile Drawer) ──────────────────────────────────────────── */
.side-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal-overlay) + 10);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.side-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: calc(var(--z-modal) + 10);
    width: 300px;
    max-width: 85vw;
    background: var(--card);
    transform: translateX(-100%);
    transition: transform var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.side-menu-header {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.side-menu-header img {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.side-menu-header p {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.side-menu-nav {
    flex: 1;
    padding: var(--space-md) 0;
}

.side-menu-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text);
    transition: background var(--duration-fast) var(--ease-out);
}

.side-menu-link:active {
    background: var(--bg-secondary);
}

.side-menu-link.active {
    color: var(--earth);
}

.side-menu-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.side-menu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--border);
}

.side-menu-footer .dark-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ── Story / About Block ────────────────────────────────────────────────── */
.story-block {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px var(--space-lg);
    text-align: center;
}

.story-block-quote {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.story-block p {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

.story-block-author {
    margin-top: var(--space-lg);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ── Review Card ────────────────────────────────────────────────────────── */
.review-card {
    display: flex;
    background: var(--bg-secondary);
    border: none;
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:active {
    transform: scale(0.98);
}

.review-card-img {
    width: 130px;
    min-height: 100%;
    flex-shrink: 0;
}

.review-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.review-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 8px;
    right: 14px;
    line-height: 1;
    z-index: 1;
}

.review-stars {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.review-text {
    font-size: 12px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    font-size: 9px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-verified {
    display: inline-block;
    font-size: 8px;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-left: 6px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
}

.review-product-name {
    font-size: 10px;
    color: var(--rose);
    font-weight: 500;
    margin-top: var(--space-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Review Scroll ──────────────────────────────────────────────────────── */
.review-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    margin: 0 calc(-1 * var(--space-md));
    padding: 0 var(--space-md) var(--space-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.review-scroll::-webkit-scrollbar { display: none; }

/* ── Footer (Light Theme) ──────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-secondary);
    color: var(--text);
    padding: var(--space-lg) var(--space-md) calc(var(--space-md) + env(safe-area-inset-bottom));
    text-align: center;
    border-top: none;
}

@media (max-width: 767px) {
    .site-footer {
        display: none;
    }
}

html.dark .site-footer {
    background: #111;
    color: var(--text);
    border-top-color: var(--border);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-logo {
    height: 48px;
    margin: 0 auto var(--space-sm);
}

@media (min-width: 768px) {
    .footer-logo { height: 80px; }
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 15px;
    color: #5A5552;
    font-style: normal;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.01em;
}


.footer-divider {
    width: 32px;
    height: 1px;
    background: var(--border);
    margin: 0 auto var(--space-md);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: border-color var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out);
}

.footer-social a:hover {
    border-color: var(--text-light);
    background: rgba(0, 0, 0, 0.03);
}

html.dark .footer-social a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: var(--text-light);
}

.footer-copy {
    font-size: 10px;
    color: #5A5552;
    letter-spacing: 0.08em;
}

/* ── Footer Grid (Desktop) ─────────────────────────────────────── */
.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}
/* Mobile: only show brand column, hide Navigate & Connect */
@media (max-width: 767px) {
    .footer-col:not(.footer-col-brand) {
        display: none;
    }
}
@media (min-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-2xl);
        text-align: left;
        align-items: start;
    }
    .footer-col-brand {
        align-items: flex-start;
    }
    .footer-col-brand .footer-social {
        justify-content: flex-start;
    }
}
.footer-col-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}
.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.footer-col-links a {
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color 200ms ease;
}
.footer-col-links a:hover {
    color: var(--earth);
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.hidden { display: none !important; }

@media (max-width: 767px) {
    .hidden-mobile { display: none !important; }
}
@media (min-width: 768px) {
    .hidden-desktop { display: none !important; }
}

/* ── Catalog Page ───────────────────────────────────────────────────────── */
.catalog-header {
    padding: var(--space-lg) 0;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.catalog-controls {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.catalog-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 var(--space-md);
    height: 36px;
}

.catalog-search-input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: var(--text-sm);
    color: var(--text);
}

.catalog-search-input::placeholder {
    color: var(--text-light);
}

.catalog-pills {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: 0 0 var(--space-md);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.catalog-pills::-webkit-scrollbar { display: none; }

.catalog-pill {
    flex-shrink: 0;
    padding: var(--space-sm) var(--space-md);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-light);
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.catalog-pill.active {
    background: var(--earth);
    color: #fff;
}

html.dark .catalog-pill.active {
    background: var(--earth);
    color: #fff;
}

.catalog-empty {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    color: var(--text-light);
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin: var(--space-lg) var(--space-md);
}

/* ── Catalog Load More ─────────────────────────────────────────── */
.catalog-load-more {
    text-align: center;
    padding: var(--space-xl) 0;
}

/* ── PDP (Product Detail Page) — Premium Layout ───────────────────────── */
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.02em;
    max-width: 1000px;
    margin: 0 auto;
}

.pdp-breadcrumb a:hover { color: var(--gold); }
.pdp-breadcrumb span { opacity: 0.4; }

.pdp {
    overflow-x: clip;
    width: 100%;
}

.pdp-layout {
    display: grid;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pdp-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: var(--space-2xl);
    }
}

/* Gallery */
.pdp-gallery { position: sticky; top: 90px; }

/* Product Video */
.pdp-video {
    margin-top: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
}
.pdp-video video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .pdp-layout { grid-template-columns: minmax(0, 1fr); padding-bottom: var(--space-md); gap: var(--space-md); }
    .pdp-gallery { position: static; margin: 0 calc(-1 * var(--space-md)); }
    /* Sections inside the pdp grid have mt-xl which stacks on top of gap — remove it */
    .pdp-layout > section.mt-xl { margin-top: 0; }
    /* Tighten section headings on PDP mobile */
    .pdp-layout > section .section-heading { padding-top: 20px; padding-bottom: 10px; }
}

.pdp-gallery-main {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
    border-radius: var(--radius-lg);
}

.pdp-gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pdp-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.pdp-gallery-slide img, .pdp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--duration-fast);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pdp-gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); }
.pdp-gallery-prev { left: 12px; }
.pdp-gallery-next { right: 12px; }
.pdp-gallery-arrow svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Gallery counter — hidden on mobile, replaced by dots */
.pdp-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
    .pdp-gallery-counter { display: none; }
    .pdp-gallery-arrow { width: 36px; height: 36px; }
    .pdp-gallery-prev { left: 8px; }
    .pdp-gallery-next { right: 8px; }
}

html.dark .pdp-gallery-arrow { background: rgba(0, 0, 0, 0.7); color: var(--cream); }

.pdp-no-image {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: var(--text-sm);
}

/* Dot indicators — always visible */
.pdp-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: var(--space-sm) 0;
}

.pdp-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.pdp-gallery-dot.active {
    background: var(--rose);
    width: 20px;
    border-radius: 4px;
}

html.dark .pdp-gallery-dot { background: rgba(255, 255, 255, 0.2); }
html.dark .pdp-gallery-dot.active { background: var(--rose); }

/* Thumbnails — desktop only */
.pdp-gallery-thumbs {
    display: none;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .pdp-gallery-thumbs { display: flex; }
}

.pdp-thumb {
    width: 72px;
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color var(--duration-fast), opacity var(--duration-fast);
    opacity: 0.6;
}

.pdp-thumb.active { border-color: var(--rose); opacity: 1; }
.pdp-thumb:hover { opacity: 1; }
html.dark .pdp-thumb.active { border-color: var(--rose); }

.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
    .pdp-gallery {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: var(--space-sm);
    }
    .pdp-gallery-main {
        grid-column: 2;
        grid-row: 1 / -1;
    }
    .pdp-gallery-thumbs {
        grid-column: 1;
        grid-row: 1;
        flex-direction: column;
        overflow-y: auto;
        max-height: 520px;
        display: flex;
        gap: var(--space-xs);
    }
    .pdp-gallery-dots {
        display: none;
    }
}

/* Product Info */
.pdp-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .pdp-info { padding-top: var(--space-sm); }
}

.pdp-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
}

@media (max-width: 767px) {
    .pdp-name { font-size: 22px; }
}

.pdp-price {
    margin-top: var(--space-sm);
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.pdp-price-current {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    display: inline-block;
}

.pdp-price-compare {
    font-size: var(--text-base);
    color: var(--text-light);
    text-decoration: line-through;
}

.pdp-price-bounce {
    animation: priceBounce 900ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes priceBounce {
    0% { transform: scale(1); color: var(--text); }
    20% { transform: scale(1.3); color: #059669; }
    50% { transform: scale(0.92); color: #059669; }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); color: var(--text); }
}

.pdp-rating {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
}

.pdp-description {
    margin-top: var(--space-sm);
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    white-space: pre-line;
}

/* Sticky Add to Cart — mobile */
.pdp-sticky-bar {
    position: fixed;
    bottom: var(--bottom-nav-height);
    left: 0;
    right: 0;
    z-index: 99;
    padding: 8px var(--space-md);
    background: var(--bg);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 250ms var(--ease-out);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    display: none;
    overflow: hidden;
}

.pdp-sticky-bar.visible { transform: translateY(0); }

@media (max-width: 767px) {
    .pdp-sticky-bar { display: block; bottom: 0; }
}

.pdp-sticky-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: var(--container);
    margin: 0 auto;
}

.pdp-sticky-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pdp-sticky-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.pdp-sticky-size {
    font-size: var(--text-xs);
    font-weight: 600;
    background: var(--bg-secondary);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    white-space: nowrap;
}

html.dark .pdp-sticky-size {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.pdp-sticky-actions {
    display: flex;
    gap: var(--space-sm);
}

.pdp-sticky-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0 var(--space-sm);
    height: 40px;
    font-size: 10px;
}

html.dark .pdp-sticky-bar {
    background: var(--bg);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.pdp-variants {
    margin-top: var(--space-md);
}

.pdp-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pdp-size-btn {
    position: relative;
    min-width: 60px;
    padding: var(--space-sm) var(--space-md);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
    background: var(--card);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.pdp-size-btn:hover:not(:disabled) {
    border-color: var(--earth);
    background: var(--blush);
}

.pdp-size-btn.active {
    border-color: var(--earth);
    background: var(--blush);
    color: var(--text);
    font-weight: 600;
}

.pdp-size-btn.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pdp-low-stock {
    display: block;
    font-size: 9px;
    color: var(--warning);
    font-weight: 600;
    margin-top: 2px;
}

.pdp-size-btn.active .pdp-low-stock {
    color: var(--warning);
}

.pdp-share {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color var(--duration-fast) var(--ease-out);
}

.pdp-share:hover {
    color: var(--earth);
}

.pdp-care {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.pdp-care h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.pdp-care p {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.6;
}

/* ── PDP Trust Icons ───────────────────────────────────────────────────── */
.pdp-trust {
    margin-top: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.pdp-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.pdp-trust-item svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ── PDP Info Rows ─────────────────────────────────────────────────────── */
.pdp-info-rows {
    margin-top: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.pdp-info-row {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 14px var(--space-md);
    background: var(--bg);
    border: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-align: left;
    transition: background var(--duration-fast);
    position: relative;
}

.pdp-info-row:last-child { border-bottom: none; }

.pdp-info-row:hover { background: var(--bg-secondary); }

.pdp-info-row:active { background: var(--blush); }

.pdp-info-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(155, 122, 138, 0.12) 0%, rgba(107, 68, 89, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth);
    flex-shrink: 0;
}

.pdp-info-row-label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
}

.pdp-info-row-chevron {
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), color var(--duration-fast);
}

.pdp-info-row:hover .pdp-info-row-chevron {
    transform: translateX(3px);
    color: var(--earth);
}

html.dark .pdp-info-rows { border-color: rgba(255,255,255,0.08); }
html.dark .pdp-info-row { border-bottom-color: rgba(255,255,255,0.08); }
html.dark .pdp-info-row-icon { background: rgba(155, 122, 138, 0.15); }

/* ── Info Modal ────────────────────────────────────────────────────────── */
/* ── Info Accordion Body ────────────────────────────────────────────────── */
.pdp-info-body {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 0px solid var(--border);
    transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1), border-top-width 320ms, padding 320ms;
    padding: 0 var(--space-md);
}

.pdp-info-item.is-open .pdp-info-body {
    max-height: 300px;
    border-top-width: 1px;
    padding: var(--space-md) var(--space-md);
}

.pdp-info-body p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.pdp-info-body p:last-child { margin-bottom: 0; }

.pdp-info-body strong { color: var(--text); font-weight: 600; }

/* Chevron rotates when open */
.pdp-info-item.is-open .pdp-info-row-chevron {
    transform: rotate(90deg);
    color: var(--earth);
}

/* Row stays highlighted when its item is open */
.pdp-info-item.is-open .pdp-info-row {
    background: var(--bg-secondary);
}

.pdp-info-item.is-open .pdp-info-row-icon {
    background: linear-gradient(135deg, rgba(107, 68, 89, 0.18) 0%, rgba(155, 122, 138, 0.14) 100%);
}

html.dark .pdp-info-body { background: rgba(255,255,255,0.02); }

/* ── WhatsApp Order Button ─────────────────────────────────────────────── */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1ebe57;
}

/* ── Mobile Bottom Nav — WhatsApp Green ────────────────────────────────── */
.bottom-nav-whatsapp {
    color: #158038;
}

.bottom-nav-whatsapp svg {
    fill: #158038;
    stroke: none;
}

.pdp-actions {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ── Cart Page ──────────────────────────────────────────────────────────── */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    line-height: 1.3;
}

.cart-item-variant {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: 2px;
}

.cart-item-price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--earth);
    margin-top: var(--space-xs);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--duration-fast) var(--ease-out);
}

.cart-qty-btn:active {
    border-color: var(--earth);
    transform: scale(0.95);
}

.cart-qty-value {
    font-size: var(--text-base);
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-out);
}

.cart-item-remove:hover {
    background: var(--bg-secondary);
}

.cart-totals {
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.cart-total-final {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--text);
    border-top: 1px solid var(--border);
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
}

.cart-actions {
    margin-top: var(--space-lg);
}

/* ── Checkout Page ──────────────────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr 400px;
        align-items: start;
        gap: var(--space-2xl);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .checkout-layout {
        grid-template-columns: 1fr 340px;
        gap: var(--space-xl);
    }
}

.checkout-form,
.checkout-summary {
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
}

.checkout-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow);
}

.checkout-form h3,
.checkout-summary h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 0.01em;
}

.co-error-box {
    margin: var(--space-md) 0;
    padding: var(--space-md);
    border: 1px solid rgba(220, 80, 80, 0.3);
    background: rgba(220, 80, 80, 0.06);
    border-radius: var(--radius);
}
.co-error-msg {
    color: #b93434;
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}
html.dark .co-error-msg { color: #ff8a8a; }
.co-error-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.checkout-form .input-group {
    margin-bottom: var(--space-lg);
}

.checkout-form .input-label {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: 6px;
    display: block;
    color: var(--text);
}

.checkout-form .input {
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 12px var(--space-md);
    font-size: var(--text-base);
    border: 1.5px solid var(--border);
    background: var(--bg);
}

.checkout-form .input:focus {
    border-color: var(--earth);
    box-shadow: 0 0 0 3px rgba(139, 111, 122, 0.15);
    outline: none;
}

.checkout-form textarea.input {
    min-height: 80px;
    resize: vertical;
}

@media (max-width: 767px) {
    .checkout-form {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--radius);
        box-shadow: none;
        border-color: var(--border);
    }
}

/* ── Delivery Partner Selection ─────────────────────────────────────── */

.checkout-delivery-partner {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.delivery-partner-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.delivery-partner-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px var(--space-md);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.delivery-partner-option:hover {
    border-color: var(--earth);
    box-shadow: 0 1px 4px rgba(139, 111, 122, 0.1);
}

.delivery-partner-option.selected {
    border-color: var(--earth);
    background: rgba(139, 111, 122, 0.06);
    box-shadow: 0 0 0 3px rgba(139, 111, 122, 0.1);
}

.delivery-partner-option input[type="radio"] {
    accent-color: var(--earth);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.delivery-partner-name {
    font-size: var(--text-sm);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-payment {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

/* Payment Box */
.co-pay-box {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
}

/* Summary rows */
.co-pay-summary {
    padding: var(--space-md) var(--space-lg);
}
.co-pay-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--text);
}
.co-pay-summary-row + .co-pay-summary-row {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--border);
}
.co-pay-summary-row span { color: var(--text-light); }
.co-pay-summary-row strong { font-weight: 700; }
.co-pay-green { color: #059669; }

/* Expandable account details */
.co-pay-details {
    border-top: 1px solid var(--border);
}
.co-pay-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px var(--space-lg);
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--earth);
    list-style: none;
    user-select: none;
}
.co-pay-toggle::-webkit-details-marker { display: none; }
.co-pay-chevron {
    transition: transform 0.2s;
}
.co-pay-details[open] .co-pay-chevron {
    transform: rotate(180deg);
}

/* Account cards */
.co-pay-accounts {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.co-pay-account {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-sm) var(--space-md);
    padding: 10px var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
}
.co-pay-method {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--earth);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    grid-row: 1;
}
.co-pay-number {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    color: var(--text);
    cursor: pointer;
    grid-row: 1;
}
.co-pay-number svg {
    stroke: var(--text-light);
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.15s;
}
.co-pay-number:hover svg { opacity: 1; }
.co-pay-title {
    grid-column: 1 / -1;
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: -2px;
}

/* Hint */
.co-pay-hint {
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.5;
    margin-top: var(--space-xs);
}
.co-pay-hint a {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}
.co-pay-hint a:hover { text-decoration: underline; }

.checkout-summary {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--site-header-height) + var(--space-md));
    box-shadow: var(--shadow);
}

@media (max-width: 767px) {
    .checkout-summary {
        position: static;
        border-radius: var(--radius);
        padding: var(--space-lg);
    }
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.checkout-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.checkout-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-qty {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    background: var(--earth);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2px;
}

.checkout-item-price {
    font-size: var(--text-sm);
    font-weight: 600;
    flex-shrink: 0;
    color: var(--earth);
    align-self: flex-start;
    padding-top: 2px;
}

.chk-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: var(--space-xs);
    width: fit-content;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.chk-qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-fast);
    font-weight: 400;
}
.chk-qty-btn:hover { background: var(--border); }
.chk-qty-val {
    min-width: 28px;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 4px;
    line-height: 28px;
}

/* Checkout advance callout */
.advance-callout {
    position: relative;
    overflow: hidden;
}
.advance-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 100%);
    opacity: 0.5;
    z-index: 0;
}
.advance-callout > * { position: relative; z-index: 1; }

/* ── Checkout: Trust Badges ─────────────────────────────────────────────── */
.chk-trust-strip {
    display: flex;
    overflow-x: auto;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-md);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: var(--space-lg) 0;
    background: var(--bg-secondary);
}
.chk-trust-strip::-webkit-scrollbar { display: none; }
.chk-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 14px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.chk-trust-icon { font-size: 20px; line-height: 1; }
.chk-trust-title {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}
.chk-trust-sub {
    font-size: 10px;
    color: var(--text-light);
    white-space: nowrap;
    margin-top: 1px;
}

/* ── Checkout: Mom Story ────────────────────────────────────────────────── */
.chk-mom-story {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}
.chk-mom-story-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}
.chk-story-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.chk-story-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: left;
    background: var(--bg-secondary);
    border-radius: 14px;
    padding: var(--space-md);
    border-left: 3px solid var(--gold);
}
.chk-story-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.chk-story-text {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.65;
    font-style: italic;
}

/* ── Checkout: More Products Scroll ─────────────────────────────────────── */
.chk-more-products {
    padding: 0 0 var(--space-xl);
}
.chk-more-header {
    padding: 0 var(--space-md) var(--space-md);
}
.chk-more-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: 2px;
}
.chk-more-sub {
    font-size: var(--text-xs);
    color: var(--text-light);
}
.chk-product-scroll {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: 0 var(--space-md) var(--space-sm);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.chk-product-scroll::-webkit-scrollbar { display: none; }
.chk-product-card {
    flex-shrink: 0;
    width: 148px;
    scroll-snap-align: start;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.chk-product-img {
    width: 148px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}
.chk-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms var(--ease-out);
}
.chk-product-card:hover .chk-product-img img { transform: scale(1.04); }
.chk-product-name {
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.chk-product-price {
    font-size: var(--text-xs);
    color: var(--gold);
    font-weight: 700;
}

/* ── Account Page ───────────────────────────────────────────────────────── */
.auth-tabs {
    display: flex;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: var(--space-lg);
}

.auth-tab {
    flex: 1;
    padding: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    text-align: center;
}

.auth-tab.active {
    color: var(--earth);
    border-bottom-color: var(--earth);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.account-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.account-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--earth);
    color: #fff;
    font-size: var(--text-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-section h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
}

/* ── About Page ─────────────────────────────────────────────────────────── */
.about-hero {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-secondary);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
}

.about-section {
    margin-bottom: var(--space-2xl);
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.about-section p {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .about-values { grid-template-columns: repeat(3, 1fr); }
}

.about-value {
    text-align: center;
    padding: var(--space-lg);
}

.about-value-icon {
    margin-bottom: var(--space-md);
}

.about-value h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
}

.about-value p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-light);
}

/* ── FAQ Page ───────────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    gap: var(--space-md);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding-bottom: var(--space-lg);
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-light);
}

/* ── Policy Page ────────────────────────────────────────────────────────── */
.policy-section {
    margin-bottom: var(--space-2xl);
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.policy-section p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.policy-section ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-section li {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

/* ── Bottom Sheet ────────────────────────────────────────────────────── */

.bn-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 41, 38, 0.5);
    z-index: var(--z-modal-overlay);
    opacity: 0;
    transition: opacity 300ms var(--ease-out);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.bn-sheet-overlay.active { opacity: 1; }

.bn-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-radius: 20px 20px 0 0;
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform 340ms cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 90svh;
    display: flex;
    flex-direction: column;
    will-change: transform;
    box-shadow: 0 -4px 32px rgba(45, 41, 38, 0.12);
}
.bn-sheet.active { transform: translateY(0); }
.bn-sheet.bn-sheet-dragging { transition: none; }

.bn-sheet-handle-wrap {
    display: flex;
    justify-content: center;
    padding: 12px 0 6px;
    cursor: grab;
    flex-shrink: 0;
}
.bn-sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.bn-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 20px 14px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.bn-sheet-title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--text);
}
.bn-sheet-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    flex-shrink: 0;
    transition: background 150ms;
}
.bn-sheet-close:hover { background: var(--border); }

.bn-sheet-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    flex: 1;
}

/* Sort sheet options */
.bn-sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-base);
    color: var(--text);
    cursor: pointer;
    transition: color 150ms;
}
.bn-sort-option:last-child { border-bottom: none; }
.bn-sort-option.active { color: var(--earth); font-weight: 600; }
.bn-sort-option .bn-sort-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 150ms;
}
.bn-sort-option.active .bn-sort-check {
    background: var(--earth);
    border-color: var(--earth);
    color: #fff;
}

/* Catalog sort button (replaces select) */
.catalog-sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 150ms;
}
.catalog-sort-btn:hover { border-color: var(--earth); }
.catalog-sort-btn svg { color: var(--text-light); }

/* Quick View in bottom sheet */
.qv-content { display: flex; flex-direction: column; gap: 16px; }
.qv-image img { width: 100%; border-radius: var(--radius); max-height: 280px; object-fit: cover; }
.qv-name { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: 4px; }
.qv-price { font-size: var(--text-lg); font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.qv-desc { font-size: var(--text-sm); color: var(--text-light); line-height: 1.6; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.qv-variants { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.qv-details-link { display: block; text-align: center; font-size: var(--text-sm); color: var(--text-light); text-decoration: underline; margin-top: 8px; }

/* Pull-to-Refresh Indicator ─────────────────────────────────────── */

.pull-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    z-index: 9999;
    overflow: hidden;
    transition: opacity 200ms ease;
}

.pull-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--earth);
    border-radius: 50%;
    animation: spin 600ms linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Trust Icons Bar ───────────────────────────────────────────────── */

.trust-bar {
    background: transparent;
    padding: var(--space-lg) 0;
    overflow: hidden;
}

/* Auto-sliding marquee */
.trust-marquee {
    overflow: hidden;
    position: relative;
}
.trust-marquee::before,
.trust-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.trust-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}
.trust-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}
html.dark .trust-marquee::before { background: linear-gradient(to right, var(--bg), transparent); }
html.dark .trust-marquee::after { background: linear-gradient(to left, var(--bg), transparent); }

.trust-marquee-track {
    display: flex;
    gap: 8px;
    animation: trustMarquee 30s linear infinite;
    width: max-content;
}
.trust-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    min-width: 110px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Cycling colors for 12 badges */
.trust-icon:nth-child(12n+1)  { background: #FFF5EE; }
.trust-icon:nth-child(12n+2)  { background: #EDE9FE; }
.trust-icon:nth-child(12n+3)  { background: var(--peach); }
.trust-icon:nth-child(12n+4)  { background: var(--mint); }
.trust-icon:nth-child(12n+5)  { background: #DBEAFE; }
.trust-icon:nth-child(12n+6)  { background: #FEF3C7; }
.trust-icon:nth-child(12n+7)  { background: #F3E8FF; }
.trust-icon:nth-child(12n+8)  { background: #ECFDF5; }
.trust-icon:nth-child(12n+9)  { background: #EDE9FE; }
.trust-icon:nth-child(12n+10) { background: #FFF7ED; }
.trust-icon:nth-child(12n+11) { background: #F0FDF4; }
.trust-icon:nth-child(12n+12) { background: #FEF2F2; }

.trust-icon svg {
    opacity: 1;
    flex-shrink: 0;
}

.trust-icon:nth-child(12n+1) svg  { stroke: #E25555; }
.trust-icon:nth-child(12n+2) svg  { stroke: #8B5CF6; }
.trust-icon:nth-child(12n+3) svg  { stroke: #D97706; }
.trust-icon:nth-child(12n+4) svg  { stroke: #059669; }
.trust-icon:nth-child(12n+5) svg  { stroke: #2563EB; }
.trust-icon:nth-child(12n+6) svg  { stroke: #B8860B; }
.trust-icon:nth-child(12n+7) svg  { stroke: #DB2777; }
.trust-icon:nth-child(12n+8) svg  { stroke: #10B981; }
.trust-icon:nth-child(12n+9) svg  { stroke: #7C3AED; }
.trust-icon:nth-child(12n+10) svg { stroke: #EA580C; }
.trust-icon:nth-child(12n+11) svg { stroke: #16A34A; }
.trust-icon:nth-child(12n+12) svg { stroke: #DC2626; }

.trust-icon span {
    font-size: 10px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .trust-icon {
        min-width: 90px;
        padding: 10px 14px;
    }
}

html.dark .trust-icon { background: rgba(255, 255, 255, 0.06); }
html.dark .trust-bar { background: transparent; }

@media (prefers-reduced-motion: reduce) {
    .trust-marquee-track { animation: none; }
}

/* ── Countdown Banner ──────────────────────────────────────────────── */

.countdown-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.countdown-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.countdown-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
}

.countdown-headline {
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 40px);
    color: #fff;
    margin-bottom: var(--space-lg);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-num {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: #fff;
    font-family: var(--font-body);
    line-height: 1;
}

.countdown-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.countdown-sep {
    font-size: 32px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-top: -16px;
}

/* ── Instagram Grid ────────────────────────────────────────────────── */

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}

@media (min-width: 1024px) {
    .insta-grid { grid-template-columns: repeat(6, 1fr); }
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.insta-item:hover .insta-img { transform: scale(1.05); }

/* ── Lookbook Panels ───────────────────────────────────────────────── */

.lookbook-panels {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-md) var(--space-md);
    scrollbar-width: none;
}
.lookbook-panels::-webkit-scrollbar { display: none; }

.lookbook-panel {
    flex: 0 0 75vw;
    height: 280px;
    scroll-snap-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

@media (min-width: 768px) {
    .lookbook-panels {
        overflow: visible;
        scroll-snap-type: none;
        padding: 0 var(--space-lg);
        gap: 4px;
        height: 420px;
    }
    .lookbook-panel {
        flex: 1;
        height: auto;
        scroll-snap-align: unset;
        transition: flex 500ms cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.6));
    transition: background 400ms ease;
}

@media (hover: hover) {
    .lookbook-panel:hover { flex: 2; }
    .lookbook-panel:hover .lookbook-overlay {
        background: linear-gradient(transparent 20%, rgba(0,0,0,0.7));
    }
}

.lookbook-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 22px);
    padding: var(--space-lg);
    margin: 0;
}

/* ── Video Showcase ────────────────────────────────────────────────── */

.vid-showcase {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-md) var(--space-md);
    scrollbar-width: none;
}
.vid-showcase::-webkit-scrollbar { display: none; }

.vid-card {
    flex: 0 0 75vw;
    max-width: 320px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
    .vid-showcase { justify-content: center; }
    .vid-card { flex: 0 0 280px; }
}

.vid-card-player {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
}

.vid-card-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.vid-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    border: none;
    cursor: pointer;
    transition: opacity 300ms ease;
}
.vid-card.playing .vid-play-btn { opacity: 0; pointer-events: none; }

.vid-caption {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* ── Size Guide Block ─────────────────────────────────────────────── */

.size-guide-block {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.sz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .sz-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
    .sz-grid { grid-template-columns: repeat(6, 1fr); }
}

.sz-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 300ms ease, box-shadow 300ms ease;
}
.sz-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.sz-age {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 2px;
}

.sz-months {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.sz-detail {
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.8;
}
.sz-detail span {
    font-weight: 500;
    color: var(--text);
}

.sz-note {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-light);
    font-style: italic;
    padding: var(--space-lg) var(--space-md) 0;
    margin: 0;
}

/* ── Testimonial Stories ──────────────────────────────────────────── */

.ts-block {
    padding: var(--space-xl) 0;
}

.ts-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-md) var(--space-md);
    scrollbar-width: none;
}
.ts-track::-webkit-scrollbar { display: none; }

.ts-slide {
    flex: 0 0 200px;
    height: 340px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    user-select: none;
    -webkit-user-select: none;
}

@media (min-width: 768px) {
    .ts-slide { flex: 0 0 240px; height: 400px; }
    .ts-track { justify-content: center; }
}

.ts-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.ts-image-empty {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    opacity: 0.3;
}

.ts-content {
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.ts-quote {
    font-family: var(--font-heading);
    font-size: clamp(13px, 3vw, 16px);
    color: #fff;
    line-height: 1.5;
    margin: 0 0 var(--space-xs);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-name {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0;
}

.ts-product {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin: 2px 0 0;
}

.ts-progress {
    position: absolute;
    top: 6px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    overflow: hidden;
}

.ts-progress-bar {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 50ms linear;
}

/* ── Occasion Banner ──────────────────────────────────────────────── */

.occ-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-md) var(--space-md);
    scrollbar-width: none;
}
.occ-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .occ-scroll { justify-content: center; flex-wrap: wrap; overflow: visible; }
}

.occ-card {
    flex: 0 0 140px;
    height: 180px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 300ms ease;
}
.occ-card:hover { transform: translateY(-4px); }

@media (min-width: 768px) {
    .occ-card { flex: 0 0 180px; height: 220px; }
}

.occ-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 400ms ease;
}
.occ-card:hover .occ-image { transform: scale(1.05); }

.occ-image-empty {
    background: linear-gradient(135deg, #FFF0F5, #FFF8F0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.occ-emoji {
    font-size: 40px;
}

.occ-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.55));
}

.occ-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(13px, 2.5vw, 16px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-md);
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Bento Grid ────────────────────────────────────────────────────── */

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
}

.bento-item-1 { grid-column: 1 / -1; }

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 400px 280px;
        gap: var(--space-md);
    }
    .bento-item-1 { grid-column: 1 / 3; }
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

.bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.bento-item:hover .bento-img { transform: scale(1.05); }

.bento-info {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bento-name {
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.bento-price {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ── Split Hero ────────────────────────────────────────────────────── */

.split-hero {
    display: flex;
    height: 50vh;
    min-height: 320px;
    gap: 4px;
}

@media (max-width: 767px) {
    .split-hero { flex-direction: column; height: auto; }
    .split-panel { height: 250px; }
}

.split-panel {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

.split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 400ms ease;
}

.split-panel:hover .split-overlay { background: rgba(0,0,0,0.15); }

.split-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Parallax Banner ───────────────────────────────────────────────── */

.parallax-banner {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .parallax-banner { background-attachment: scroll; min-height: 280px; }
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
    max-width: 600px;
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 5vw, 42px);
    color: #fff;
    margin-bottom: var(--space-sm);
}

.parallax-desc {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* ── Brand Story ───────────────────────────────────────────────────── */

.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    align-items: stretch;
}

@media (max-width: 767px) {
    .brand-story { grid-template-columns: 1fr; }
}

.brand-story-reverse .brand-story-image { order: 2; }
.brand-story-reverse .brand-story-content { order: 1; }

@media (max-width: 767px) {
    .brand-story-reverse .brand-story-image { order: 0; }
    .brand-story-reverse .brand-story-content { order: 0; }
}

.brand-story-image {
    overflow: hidden;
    min-height: 400px;
}

.brand-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--ease-out);
}

.brand-story:hover .brand-story-img {
    transform: scale(1.03);
}

.brand-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px var(--space-2xl);
    background: var(--bg-secondary);
}

@media (max-width: 767px) {
    .brand-story-content { padding: var(--space-xl) var(--space-lg); }
    .brand-story-image { min-height: 280px; }
}

html.dark .brand-story-content { background: #1A1814; }

.brand-story-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

.brand-story-content h2::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-top: var(--space-md);
}

.brand-story-content p {
    color: var(--text-light);
    font-size: var(--text-base);
    line-height: 1.9;
    max-width: 440px;
}

.brand-story-content .btn {
    margin-top: var(--space-xl);
    align-self: flex-start;
}

/* ── Scroll Reveal Animation ──────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ── Newsletter Section ───────────────────────────────────────────── */

.newsletter-section {
    background: linear-gradient(135deg, #6b4459 0%, #8b6f7a 45%, #9b7a8a 75%, #7a5468 100%);
    padding: 64px var(--space-md);
    text-align: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.newsletter-inner {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 6vw, 34px);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: #fff;
}

.newsletter-section p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    padding: 0 var(--space-lg);
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: var(--text-sm);
    outline: none;
    backdrop-filter: blur(8px);
    transition: background var(--duration-normal) var(--ease-out);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.26);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

.newsletter-form button {
    height: 50px;
    padding: 0 var(--space-xl);
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.2);
    transition: background var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ── Decorative Divider ───────────────────────────────────────────── */

.section-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    margin: 0 auto;
}

/* ── Bottom Nav Luxury ────────────────────────────────────────────── */

@media (max-width: 767px) {
    .bottom-nav {
        background: rgba(250, 249, 246, 0.96);
    }
    html.dark .bottom-nav {
        background: rgba(12, 11, 10, 0.96);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WAVE 3: Pakistani Market Essentials
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WhatsApp Share Button ────────────────────────────────────────────── */

.btn-whatsapp-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-fast);
    flex: 1;
}

.btn-whatsapp-share:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp-share svg {
    stroke: currentColor;
    flex-shrink: 0;
}

html.dark .btn-whatsapp-share {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.15);
}

html.dark .btn-whatsapp-share:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ── Buy Now Button ─────────────────────────────────────────────────────── */

.btn-buy-now {
    background: var(--earth);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(139, 111, 122, 0.2);
}
.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 111, 122, 0.3);
    filter: brightness(1.08);
}
.btn-buy-now::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 200ms ease;
}
.btn-buy-now:active::after {
    opacity: 1;
}

html.dark .btn-buy-now {
    background: var(--earth);
    color: #fff;
}

/* ── Customize Button ──────────────────────────────────────────────────── */

.btn-customize {
    background: var(--earth);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 111, 122, 0.2);
}
.btn-customize:hover {
    opacity: 0.9;
}
html.dark .btn-customize {
    background: var(--earth);
    color: #fff;
}

/* ── PDP Customize Trigger Pill ────────────────────────────────────────── */

.pdp-size-customize-row {
    display: flex;
    gap: var(--space-xs);
    align-items: stretch;
    margin-top: var(--space-sm);
}
.pdp-size-customize-row .pdp-size-trigger {
    flex: 1;
    margin-top: 0;
}
.pdp-customize-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px var(--space-md);
    margin-bottom: var(--space-sm);
    background: transparent;
    border: 1.5px dashed var(--gold);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background var(--duration-fast), border-style var(--duration-fast);
}
.pdp-customize-trigger:hover {
    background: rgba(139, 111, 122, 0.08);
}
.pdp-customize-trigger.saved {
    border-style: solid;
    background: rgba(139, 111, 122, 0.1);
    color: var(--earth);
}
/* Customize inline (next to size trigger) */
.pdp-customize-inline {
    flex-shrink: 0;
    width: auto;
    min-width: 110px;
    margin-bottom: 0;
    padding: 14px var(--space-sm);
    font-size: var(--text-xs);
    white-space: nowrap;
}

/* ── Cart Item — Customization Note ───────────────────────────────────── */

.cart-item-custom-note {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--gold);
    margin-top: 4px;
    line-height: 1.4;
    font-style: italic;
}

/* ── PDP Actions Row ───────────────────────────────────────────────────── */

.pdp-actions-row {
    display: flex;
    gap: var(--space-sm);
}
.pdp-actions-row .btn {
    flex: 1;
    min-width: 0;
}

/* ── PDP Payment Banner ─────────────────────────────────────────────────── */

.pdp-payment-banner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--mint) 0%, #E8F8F0 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.pdp-payment-icon svg {
    stroke: #059669;
    flex-shrink: 0;
}

.pdp-payment-text {
    flex: 1;
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
}

.pdp-payment-text strong {
    color: #059669;
}

html.dark .pdp-payment-banner {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(5, 150, 105, 0.2);
}

.pdp-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-fast);
    flex-shrink: 0;
}

.pdp-share-btn:hover { color: var(--rose); background: var(--blush); }
.pdp-share-btn svg { stroke: currentColor; fill: none; flex-shrink: 0; }

/* ── PDP Detail List ───────────────────────────────────────────────────── */

.pdp-detail-list {
    margin: var(--space-sm) 0;
    padding-left: var(--space-md);
    list-style: none;
}

.pdp-detail-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: 13px;
    line-height: 1.6;
}

.pdp-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
}

.pdp-delivery-search {
    position: relative;
    margin-top: var(--space-xs);
}

.pdp-delivery-search .input {
    font-size: var(--text-sm);
    padding: 10px 14px;
    border-radius: var(--radius);
}

.pdp-city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pdp-city-dropdown.open { display: block; }

.pdp-city-option {
    padding: 10px 14px;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: background var(--duration-fast);
}

.pdp-city-option:hover { background: var(--bg-secondary); }
.pdp-city-no-match { color: var(--text-light); cursor: default; }

html.dark .pdp-city-dropdown {
    background: var(--bg);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

html.dark .pdp-city-option:hover { background: rgba(255, 255, 255, 0.05); }

/* ── Review Instagram-Style Photo Grid ─────────────────────────────────── */

.review-ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .review-ig-grid { grid-template-columns: repeat(6, 1fr); }
}

.review-ig-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.review-ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms var(--ease-out);
}

.review-ig-item:hover img {
    transform: scale(1.05);
}

.review-ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    opacity: 0;
    transition: opacity 200ms;
}

.review-ig-item:hover .review-ig-overlay { opacity: 1; }

.review-ig-overlay span {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

.review-ig-more {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: var(--space-sm);
}

/* Wishlist Actions */
.wishlist-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* Review card with image(s) */
.review-card-images {
    display: flex;
    gap: 6px;
    margin: var(--space-sm) 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.review-card-images::-webkit-scrollbar { display: none; }
.review-card-image {
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
}
.review-card-images .review-card-image:only-child {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 200px;
}

.review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Review Upload Button & Preview ────────────────────────────────────── */

.review-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: border-color var(--duration-fast), color var(--duration-fast);
}

.review-upload-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.review-upload-btn svg {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.review-upload-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-sm);
}
.review-upload-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}
.review-upload-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-upload-preview {
    position: relative;
    display: inline-block;
    margin-top: var(--space-sm);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 120px;
}

.review-upload-preview img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.review-upload-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
}

html.dark .review-upload-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── Order Tracking Page ──────────────────────────────────────────────── */

.track-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.track-error {
    padding: var(--space-md);
    background: var(--danger-bg, #FEF2F2);
    color: var(--danger, #DC2626);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    text-align: center;
}

html.dark .track-error {
    background: rgba(220, 38, 38, 0.1);
}

.track-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.track-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.track-order-id {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.track-date {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: 2px;
}

.track-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.track-items {
    padding: var(--space-md) var(--space-lg);
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.track-item:last-child {
    border-bottom: none;
}

.track-totals {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.track-total-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.track-total-final {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
    padding-top: var(--space-sm);
    margin-top: var(--space-xs);
    border-top: 1px solid var(--border);
}

.track-delivery-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-sm) var(--space-lg) var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-light);
}

.track-delivery-info svg {
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

html.dark .track-card {
    background: var(--bg);
    border-color: rgba(255, 255, 255, 0.08);
}

html.dark .track-totals {
    background: rgba(255, 255, 255, 0.03);
}

.track-return-section {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
}

/* ── Delivery Estimate Hint (Checkout) ────────────────────────────────── */

/* ── Checkout Payment Note ──────────────────────────────────────────────── */

.checkout-payment-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    max-width: 100%;
    box-sizing: border-box;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--mint) 0%, #E8F8F0 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.checkout-payment-note svg {
    stroke: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-payment-note strong {
    color: #059669;
    font-size: var(--text-sm);
}

.checkout-payment-note p {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: 3px;
    line-height: 1.5;
}

.checkout-payment-note p strong {
    color: var(--text);
}

html.dark .checkout-payment-note {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(5, 150, 105, 0.2);
}

.delivery-estimate-hint {
    font-size: var(--text-xs);
    color: var(--text-light);
    font-weight: 500;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.delivery-estimate-hint.delivery-estimate-active {
    color: var(--gold);
    background: linear-gradient(135deg, rgba(193,154,107,0.08), rgba(193,154,107,0.15));
    border-left: 3px solid var(--gold);
}

/* ── Product Card Wishlist Heart ───────────────────────────────────────── */

.product-card-wrap {
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.product-card-wrap .product-card {
    display: block;
    width: 100%;
    min-width: 0;
}

.product-card-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-light);
    cursor: pointer;
    transition: transform var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-card-wishlist:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.95);
}

.product-card-wishlist.active {
    color: #E25555;
}

.product-card-wishlist svg {
    pointer-events: none;
}

html.dark .product-card-wishlist {
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-light);
}

html.dark .product-card-wishlist:hover {
    background: rgba(0, 0, 0, 0.8);
}

html.dark .product-card-wishlist.active {
    color: #E25555;
}

@media (max-width: 767px) {
    .product-card-wishlist {
        width: var(--touch-min);
        height: var(--touch-min);
    }
}

/* ── Size Guide ────────────────────────────────────────────────────────── */

.pdp-size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.size-guide-link {
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0;
    transition: color var(--duration-fast);
}

.size-guide-link:hover {
    color: var(--earth);
}

/* PDP size trigger button (opens bottom sheet) */
.pdp-size-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: var(--space-sm);
    padding: 14px var(--space-md);
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color var(--duration-fast), background var(--duration-fast);
    text-align: left;
}
.pdp-size-trigger:hover {
    border-color: var(--gold);
    background: var(--bg-primary);
}
.pdp-size-trigger svg {
    flex-shrink: 0;
    opacity: 0.5;
}
.bn-size-soldout {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.size-guide-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    border-bottom: 2px solid var(--border);
}

.size-guide-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.size-guide-table tbody tr:nth-child(even) {
    background: var(--bg-secondary);
}

.size-guide-note {
    margin-top: var(--space-md);
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.5;
}

html.dark .size-guide-table th {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

html.dark .size-guide-table td {
    border-color: rgba(255, 255, 255, 0.06);
}

html.dark .size-guide-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* ═══════════════════════════════════════════════════════════════════════════
   WAVE 4: Design & UX Upgrade
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Product Carousel ──────────────────────────────────────────────────── */

.product-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(25% - 12px);
    }
}

.carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--bg);
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background var(--duration-fast), transform var(--duration-fast);
}

@media (min-width: 768px) {
    .carousel-arrow { display: flex; }
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left { left: -16px; }
.carousel-arrow-right { right: -16px; }

.carousel-arrow svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

html.dark .carousel-arrow {
    background: var(--bg-secondary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ── Quick-View Button on Product Card ─────────────────────────────────── */

.product-card-quickview {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--duration-fast), transform var(--duration-fast);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card-wrap:hover .product-card-quickview {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card-quickview svg {
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

html.dark .product-card-quickview {
    background: var(--dark);
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Hide quick-view on touch devices (no hover) */
@media (hover: none) {
    .product-card-quickview { display: none; }
}

/* ── Quick-View Modal Content ──────────────────────────────────────────── */

.qv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    min-height: 300px;
}

@media (max-width: 600px) {
    .qv-content {
        grid-template-columns: 1fr;
    }
}

.modal.modal-quickview {
    max-width: 700px;
}
@media (min-width: 768px) {
    .modal.modal-quickview {
        max-height: 80vh;
    }
}

.qv-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qv-no-image {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-light);
    font-size: var(--text-sm);
}

.qv-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.qv-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.qv-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    font-weight: 500;
    margin: 0;
}

.qv-desc {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qv-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: var(--space-xs) 0;
}

.qv-add-btn {
    margin-top: auto;
}

.qv-details-link {
    display: block;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: var(--space-xs);
}

/* ── Phase 3: Empty States ───────────────────────────────────────────────── */
.bn-empty-state {
    min-height: calc(100svh - 152px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}
.bn-empty-illustration {
    margin-bottom: var(--space-lg);
    animation: bn-float 3s ease-in-out infinite;
}
@keyframes bn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.bn-empty-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}
.bn-empty-msg {
    font-size: var(--text-sm);
    color: var(--text-light);
    max-width: 260px;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}
.bn-empty-cta { min-width: 180px; }

/* catalog-empty uses same illustration class */
.catalog-empty { text-align: center; padding: var(--space-2xl) var(--space-md); }
.catalog-empty .bn-empty-illustration { display: inline-block; }

/* ── Phase 3: Long Press Context Menu ────────────────────────────────────── */
.product-card-wrap {
    position: relative;
}
.product-card-wrap.bn-lp-active {
    transform: scale(1.06);
    z-index: 1000;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(45,41,38,.18);
    transition: transform 220ms var(--ease-out);
    will-change: transform;
}
#bn-lp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,18,16,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    transition: opacity 220ms var(--ease-out);
}
#bn-lp-overlay.active { opacity: 1; }
.bn-lp-menu {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(45,41,38,.18);
    white-space: nowrap;
}
.bn-lp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 12px;
    transition: background var(--duration-fast);
}
.bn-lp-btn:hover { background: var(--bg-secondary); }
.bn-lp-btn.bn-lp-add { color: var(--gold); }

/* ── Phase 3: Contextual Nav Icons (filled when active) ─────────────────── */
.bottom-nav-item[data-route="home"].active .bottom-nav-icon svg path { fill: currentColor; }
.bottom-nav-item[data-route="wishlist"].active .bottom-nav-icon svg path { fill: currentColor; stroke: none; }
.bottom-nav-item[data-route="cart"].active .bottom-nav-icon svg path:first-child { fill: var(--gold); stroke: var(--gold); }
.bottom-nav-item[data-route="catalog"].active .bottom-nav-icon svg rect { fill: currentColor; }

/* ── Image Lightbox ────────────────────────────────────────────────────── */

.pdp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 450;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 200ms;
}

.pdp-lightbox.active { opacity: 1; }

.pdp-lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--duration-fast);
}

.pdp-lb-close:hover { background: rgba(255, 255, 255, 0.3); }
.pdp-lb-close svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.pdp-lb-image-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pdp-lb-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 150ms;
    user-select: none;
    -webkit-user-drag: none;
}

.pdp-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--duration-fast);
}

.pdp-lb-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.pdp-lb-prev { left: 16px; }
.pdp-lb-next { right: 16px; }
.pdp-lb-arrow svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.pdp-lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .pdp-lb-arrow { width: 36px; height: 36px; }
    .pdp-lb-prev { left: 8px; }
    .pdp-lb-next { right: 8px; }
    .pdp-gallery-arrow { width: 32px; height: 32px; }
}

/* ── Review Submission Form ────────────────────────────────────────────── */

/* ── Review Write Trigger ──────────────────────────────────────────────── */

.review-write-trigger {
    margin-top: var(--space-lg);
    padding: 0 var(--space-md) var(--space-sm);
}

.review-write-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: linear-gradient(135deg, #6b4459 0%, #9b7a8a 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0 var(--space-lg);
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(107, 68, 89, 0.25);
    transition: opacity var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
}

.review-write-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 68, 89, 0.32);
}

.review-write-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 200ms ease;
}

.review-write-btn:active::after { opacity: 1; }

/* ── Review Modal ──────────────────────────────────────────────────────── */

.review-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    transition: background 300ms ease;
}

.review-modal-overlay.is-open {
    background: rgba(0, 0, 0, 0.45);
    pointer-events: all;
}

.review-modal-panel {
    width: 100%;
    max-width: 560px;
    max-height: 90dvh;
    background: var(--bg);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

/* Drag handle */
.review-modal-panel::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.45);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.review-modal-overlay.is-open .review-modal-panel {
    transform: translateY(0);
}

@media (min-width: 600px) {
    .review-modal-overlay {
        align-items: center;
    }
    .review-modal-panel {
        border-radius: 16px;
        max-height: 85dvh;
        transform: translateY(24px) scale(0.97);
        opacity: 0;
        transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1), opacity 280ms ease;
    }
    .review-modal-overlay.is-open .review-modal-panel {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    .review-modal-panel::before { display: none; }
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--space-lg) 14px;
    background: linear-gradient(135deg, #6b4459 0%, #9b7a8a 100%);
    flex-shrink: 0;
}

.review-modal-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin: 0;
    color: #fff;
}

.review-modal-close {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: background var(--duration-fast);
    flex-shrink: 0;
}

.review-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.review-modal-body {
    overflow-y: auto;
    padding: var(--space-lg);
    -webkit-overflow-scrolling: touch;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.review-stars-input .input-label {
    margin-bottom: var(--space-xs);
}

.review-star-btns {
    display: flex;
    gap: 6px;
}

.review-star-btn {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    transition: transform var(--duration-fast);
}

.review-star-btn:hover { transform: scale(1.15); }

.review-star-btn svg {
    fill: none;
    stroke: var(--text-light);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-form-note {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin: 0;
}

html.dark .review-modal-panel {
    background: var(--bg);
}

/* gradient header needs no dark override — looks the same */

html.dark .review-star-btn svg {
    stroke: rgba(255, 255, 255, 0.35);
}

/* ── Home Photo Gallery Block ──────────────────────────────────────────── */

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .home-gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

.home-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms var(--ease-out);
}

.home-gallery-item:hover img { transform: scale(1.06); }

/* ── PDP Photo Slider ──────────────────────────────────────────────────── */

.pdp-photo-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .pdp-photo-slider { grid-template-columns: repeat(4, 1fr); }
}

.pdp-photo-slide {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.pdp-photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms var(--ease-out);
}

.pdp-photo-slide:hover img { transform: scale(1.05); }

.pdp-photo-slider-empty {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 13px;
}

.pdp-photo-slider-empty p { margin-bottom: var(--space-sm); }

/* ── Admin Edit Button (PDP) ───────────────────────────────────────────── */

.pdp-admin-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--duration-fast);
    box-shadow: 0 2px 8px rgba(139, 111, 122, 0.2);
}

.pdp-admin-edit-btn:hover { opacity: 0.88; }
.pdp-admin-edit-btn svg { stroke: #fff; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── Admin Edit Panel Images Grid ──────────────────────────────────────── */

.pdp-edit-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-edit-img-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
}

.pdp-edit-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-edit-img-remove,
.pdp-edit-slider-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    line-height: 1;
}

.pdp-edit-form .form-group { margin-bottom: var(--space-md); }
.pdp-edit-form .input-label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; }
.pdp-edit-form .input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; }
.pdp-edit-form .input:focus { outline: none; border-color: var(--rose); }

.pdp-edit-price-row {
    display: flex;
    gap: var(--space-sm);
}

.pdp-edit-variants {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pdp-edit-variant-row {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.pdp-edit-variant-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.pdp-edit-variant-fields {
    display: flex;
    gap: var(--space-sm);
}

.pdp-edit-variant-field {
    flex: 1;
}

.pdp-edit-variant-field label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pdp-edit-variant-field .input {
    padding: 8px 10px;
    font-size: 13px;
}

/* ── Accessibility ─────────────────────────────────────────────────────── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: top 0.15s;
}

.skip-link:focus {
    top: 16px;
}

/* Focus-visible — show outline only for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Remove default focus ring for mouse clicks */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion — disable ALL animations and transitions */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .shimmer {
        animation: none !important;
        background: var(--bg-secondary) !important;
    }
}

/* ── PDP Embroidery / Personalization ──────────────────────────── */
.pdp-embroidery {
    margin-bottom: var(--space-md);
}
.pdp-embroidery-colors {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
.pdp-emb-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 200ms ease, transform 200ms ease;
}
.pdp-emb-color:hover {
    transform: scale(1.1);
}
.pdp-emb-color.active {
    border-color: var(--text);
    box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--text);
}

/* ── Aqiqah Hero ───────────────────────────────────────────────── */
html.dark .aqiqah-hero {
    background: linear-gradient(135deg, #1A1814 0%, #2D2520 100%) !important;
}

/* ── PDP Bundle / Hamper ───────────────────────────────────────── */
.pdp-bundle {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius);
}
.pdp-bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--space-sm);
}
.pdp-bundle-item {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text);
}
.pdp-bundle-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}
.pdp-bundle-item span {
    display: block;
}
.pdp-bundle-qty {
    color: var(--text-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  Block System — New Block Types CSS                                   */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ── Rich Text ─────────────────────────────────────────────────────────── */
.blk-rich-text {
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    line-height: 1.8;
    color: var(--text);
    font-size: var(--text-base);
}
.blk-rich-text p { margin-bottom: var(--space-md); }
.blk-rich-text h2, .blk-rich-text h3 { font-family: var(--font-heading); margin: var(--space-lg) 0 var(--space-sm); }
.blk-rich-text ul, .blk-rich-text ol { padding-left: var(--space-lg); margin-bottom: var(--space-md); }
.blk-rich-text li { margin-bottom: var(--space-xs); }
.blk-rich-text strong { font-weight: 600; }
.blk-rich-text a { color: var(--gold); text-decoration: underline; }

/* ── Heading Block ─────────────────────────────────────────────────────── */
.blk-heading { padding: var(--space-lg) var(--space-md); }
.blk-heading h1, .blk-heading h2, .blk-heading h3, .blk-heading h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

/* ── Image Block ───────────────────────────────────────────────────────── */
.blk-image { padding: var(--space-md) 0; }
.blk-image img { display: block; }
.blk-image-empty { min-height: 120px; background: var(--bg-secondary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }

/* ── Image + Text ──────────────────────────────────────────────────────── */
.blk-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) var(--space-md);
}
.blk-image-text-reverse .blk-image-text-img { order: 2; }
.blk-image-text-reverse .blk-image-text-content { order: 1; }
@media (max-width: 768px) {
    .blk-image-text { grid-template-columns: 1fr; gap: var(--space-lg); }
    .blk-image-text-reverse .blk-image-text-img { order: 0; }
    .blk-image-text-reverse .blk-image-text-content { order: 0; }
}

/* ── Columns ───────────────────────────────────────────────────────────── */
.blk-columns {
    display: grid;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    text-align: center;
}
.blk-columns-2 { grid-template-columns: repeat(2, 1fr); }
.blk-columns-3 { grid-template-columns: repeat(3, 1fr); }
.blk-columns-4 { grid-template-columns: repeat(4, 1fr); }
.blk-col-item {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius);
}
@media (max-width: 768px) {
    .blk-columns-3, .blk-columns-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .blk-columns-2, .blk-columns-3, .blk-columns-4 { grid-template-columns: 1fr; }
}

/* ── Tabs ──────────────────────────────────────────────────────────────── */
.blk-tabs { padding: var(--space-md) 0; }
.blk-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.blk-tab-btn {
    padding: var(--space-sm) var(--space-lg);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--text-light);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
.blk-tab-btn:hover { color: var(--text); }
.blk-tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.blk-tab-panel { display: none; line-height: 1.7; color: var(--text); }
.blk-tab-panel.active { display: block; }
.blk-tab-panel p { margin-bottom: var(--space-md); }

/* ── Video Embed ───────────────────────────────────────────────────────── */
.blk-video-embed { padding: var(--space-md) 0; max-width: 800px; margin: 0 auto; }

/* ── Map Embed ─────────────────────────────────────────────────────────── */
.blk-map { padding: var(--space-md) 0; }

/* ── Banner / CTA ──────────────────────────────────────────────────────── */
.blk-banner { border-radius: 0; }
.blk-banner .btn-light {
    background: #fff;
    color: var(--text);
    border: none;
}
.blk-banner .btn-light:hover { background: #f5f5f5; }

/* ── Contact Form ──────────────────────────────────────────────────────── */
.blk-contact-form { padding: var(--space-md) 0; }
.blk-form-group {
    margin-bottom: var(--space-md);
}
.blk-form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text);
}
.blk-form-group input,
.blk-form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.2s;
}
.blk-form-group input:focus,
.blk-form-group textarea:focus {
    outline: none;
    border-color: var(--earth);
}

/* ── Logo Bar ──────────────────────────────────────────────────────────── */
.blk-logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
}
.blk-logo-item { max-width: 120px; opacity: 0.6; transition: opacity 0.2s; }
.blk-logo-item:hover { opacity: 1; }
.blk-logo-item img { max-width: 100%; max-height: 48px; object-fit: contain; }

/* ── Stats / Numbers ───────────────────────────────────────────────────── */
.blk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    text-align: center;
}
.blk-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 36px);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.blk-stat-label {
    font-size: var(--text-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .blk-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Spacer ────────────────────────────────────────────────────────────── */
.blk-spacer { position: relative; }
.bn-edit-mode .blk-spacer {
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 111, 122, 0.08) 10px, rgba(139, 111, 122, 0.08) 20px);
    min-height: 20px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2026 DESIGN LANGUAGE — ANIMATIONS, MICRO-INTERACTIONS & NEW BLOCKS
   Inspired by: Tinker.com · Shopify Polaris · 2026 trend research
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal System (Intersection Observer powered) ────────────────── */

/* Base state — invisible, slightly below final position */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger — for product grids, each child reveals in sequence */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale reveal — for stat numbers, counters */
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-stagger > *, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Product Card Hover Lift — Shopify Dawn inspired ─────────────────────── */
.product-card-wrap {
    transition: transform 220ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 220ms ease;
    border-radius: var(--radius-lg);
}

@media (hover: hover) {
    .product-card-wrap:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(28, 25, 23, 0.1);
    }
}

/* ── Wishlist Spring Animation ───────────────────────────────────────────── */
@keyframes wishlistPop {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.45); }
    55%  { transform: scale(0.88); }
    75%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

.product-card-wishlist.just-saved svg {
    animation: wishlistPop 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--earth);
    fill: var(--earth);
}

/* ── Button Ripple Effect ────────────────────────────────────────────────── */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 200ms ease;
}
.btn-primary:active::after {
    opacity: 1;
}

/* ── Social Proof Live Bar ───────────────────────────────────────────────── */
/* "Aisha just ordered Ruby Rose" rotating strip */
.blk-social-proof {
    padding: 0 var(--space-md);
    margin: var(--space-lg) 0;
}

.social-proof-bar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    position: relative;
}

.social-proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.social-proof-text {
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    transition: opacity 400ms ease, transform 400ms ease;
}

.social-proof-text.sp-exit {
    opacity: 0;
    transform: translateY(-8px);
}

.social-proof-text.sp-enter {
    opacity: 0;
    transform: translateY(8px);
}

.social-proof-count {
    font-size: 11px;
    color: var(--text-light);
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Emotional Mom Quote Block ───────────────────────────────────────────── */
.blk-mom-quote {
    position: relative;
    overflow: hidden;
    margin: var(--space-lg) 0;
}

.mom-quote-inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 380px;
}

@media (min-width: 768px) {
    .mom-quote-inner {
        grid-template-columns: 1fr 1fr;
        min-height: 480px;
    }
}

.mom-quote-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

@media (min-width: 768px) {
    .mom-quote-image { min-height: auto; }
}

.mom-quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    inset: 0;
    transition: transform 800ms ease;
}

.blk-mom-quote:hover .mom-quote-img {
    transform: scale(1.03);
}

.mom-quote-content {
    background: var(--bg-secondary);
    padding: 48px var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
}

@media (max-width: 767px) {
    .mom-quote-content { padding: var(--space-xl) var(--space-lg); }
}

.mom-quote-mark {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 0.6;
    color: var(--earth);
    opacity: 0.3;
    display: block;
    margin-bottom: var(--space-sm);
}

.mom-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text);
}

.mom-quote-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mom-quote-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.mom-quote-author-meta {
    font-size: 12px;
    color: var(--text-light);
}

.mom-quote-stars {
    color: var(--earth);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ── Urgency / Low Stock Indicator ───────────────────────────────────────── */
.stock-urgency {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--warning);
    margin-top: 4px;
}

.stock-urgency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warning);
    animation: spPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* ── Scrollytelling Brand Story ──────────────────────────────────────────── */
.blk-scrollytelling {
    padding: var(--space-2xl) 0;
}

.story-chapter {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .story-chapter {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    .story-chapter:nth-child(even) .story-chapter-image {
        order: 2;
    }
    .story-chapter:nth-child(even) .story-chapter-text {
        order: 1;
    }
}

.story-chapter-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.story-chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.story-chapter:hover .story-chapter-image img {
    transform: scale(1.04);
}

.story-chapter-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.story-chapter-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--earth);
}

.story-chapter-heading {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
}

.story-chapter-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ── Live Customers Counter Badge ────────────────────────────────────────── */
.blk-live-stats {
    display: flex;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    overflow-x: auto;
    scrollbar-width: none;
    margin: var(--space-lg) 0;
}
.blk-live-stats::-webkit-scrollbar { display: none; }

.live-stat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
}

.live-stat-chip strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--earth);
}

/* ── Hero CTA refinement — Tinker style ──────────────────────────────────── */
.hero .btn {
    background: #fff;
    color: var(--dark);
    border: none;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0 28px;
    height: 46px;
    border-radius: 999px;
    transition: all 200ms ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.hero .btn:hover {
    background: rgba(255,255,255,0.93);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ── Card Image — larger radius on category cards ────────────────────────── */
.category-card {
    border-radius: var(--radius-lg);
}

/* ── Product Price — compare price styling ───────────────────────────────── */
.product-card-compare {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 5px;
    font-weight: 400;
    opacity: 0.7;
}

/* ── Footer tagline — use Cormorant italic instead of Allura ─────────────── */
.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: var(--space-md);
}



/* ══════════════════════════════════════════════════════════════════════════ */
/* ── Blog — Luxury Editorial (Matches Site Design Language) ─────────────── */
/* ══════════════════════════════════════════════════════════════════════════ */

/* ── Shared tokens ──────────────────────────────────────────────────────── */
.bl-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--earth);
    border: 1px solid var(--earth);
    border-radius: 999px;
    padding: 3px 11px;
    line-height: 1.8;
    transition: background 200ms, color 200ms;
}
.bl-tag-light {
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.45);
}
.bl-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 26px;
    height: 46px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 180ms, transform 150ms;
}
.bl-btn-dark:hover { background: var(--earth); transform: translateY(-1px); }
.bl-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 26px;
    height: 46px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 180ms;
}
.bl-btn-gold:hover { background: var(--earth); }
.bl-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 18px;
    height: 38px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 160ms, color 160ms;
}
.bl-btn-outline:hover { border-color: var(--earth); color: var(--earth); }
.bl-btn-outline:disabled { opacity: 0.38; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* ── LISTING PAGE ────────────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────────────────── */
.bl-page-header {
    text-align: center;
    padding: 64px var(--space-md) 48px;
    border-bottom: 1px solid var(--border);
}
.bl-page-eye {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    font-weight: 700;
    margin-bottom: 14px;
}
.bl-page-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 7vw, 56px);
    color: var(--text);
    line-height: 1.12;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.bl-page-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Featured Post ──────────────────────────────────────────────────────── */
.bl-featured-wrap {
    padding: 48px var(--space-md) 0;
    max-width: 1200px;
    margin: 0 auto;
}
.bl-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    background: var(--card);
    transition: box-shadow 300ms ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.bl-featured:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}
@media (max-width: 720px) {
    .bl-featured { grid-template-columns: 1fr; }
    .bl-featured-wrap { padding-top: 32px; }
}
.bl-featured-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-secondary);
}
@media (min-width: 720px) {
    .bl-featured-img { aspect-ratio: auto; min-height: 420px; }
}
.bl-featured-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.bl-featured:hover .bl-featured-img img { transform: scale(1.04); }
.bl-featured-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
@media (max-width: 900px) { .bl-featured-body { padding: 32px 28px; } }
@media (max-width: 720px) { .bl-featured-body { padding: 28px 24px; gap: 14px; } }
.bl-featured-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bl-featured-read { font-size: 11px; color: var(--text-light); font-weight: 500; }
.bl-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.22;
    color: var(--text);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}
.bl-featured-sub {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.68;
    margin: 0;
    max-width: 36ch;
}
.bl-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--earth);
    margin-top: 4px;
    transition: gap 220ms ease;
}
.bl-featured:hover .bl-featured-link { gap: 12px; }

/* ── "More Articles" divider ─────────────────────────────────────────────── */
.bl-more-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 56px auto 0;
    padding: 0 var(--space-md);
}
.bl-more-divider::before, .bl-more-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.bl-more-divider-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
}

/* ── Article Grid ────────────────────────────────────────────────────────── */
.bl-grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px var(--space-md) 72px;
}
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 28px;
}
@media (max-width: 960px) { .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (max-width: 560px) { .bl-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ── Article Card — matches site product card language ─────────────────── */
.bl-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
}
.bl-card:active { transform: scale(0.99); }
.bl-card-img {
    aspect-ratio: 3/2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    margin-bottom: 18px;
    position: relative;
}
.bl-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.bl-card:hover .bl-card-img img { transform: scale(1.05); }
.bl-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bl-card-read { font-size: 11px; color: var(--text-light); }
.bl-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    /* animated underline */
    background-image: linear-gradient(var(--earth), var(--earth));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 360ms ease;
    padding-bottom: 1px;
}
.bl-card:hover .bl-card-title { background-size: 100% 1px; }
.bl-card-sub {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bl-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--earth);
    margin-top: auto;
    transition: gap 220ms ease;
}
.bl-card:hover .bl-card-cta { gap: 9px; }

/* ── Bottom CTA Banner ───────────────────────────────────────────────────── */
.bl-banner-wrap { padding: 0 var(--space-md) 80px; max-width: 1200px; margin: 0 auto; }
.bl-banner {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
}
@media (max-width: 600px) { .bl-banner { padding: 44px 24px; } }
.bl-banner-eye {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.bl-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px,4vw,36px);
    color: #fff; margin-bottom: 10px; line-height: 1.22;
}
.bl-banner p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* ── POST PAGE ───────────────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════ */

.bl-post { min-height: 70vh; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.bl-hero {
    position: relative;
    min-height: clamp(400px, 56vw, 580px);
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.bl-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.48;
}
.bl-hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,5,2,0.90) 0%, rgba(8,5,2,0.18) 50%, transparent 100%);
}
.bl-hero-inner {
    position: relative; z-index: 1;
    width: 100%; max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md) 56px;
    color: #fff;
}
.bl-back {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    text-decoration: none; margin-bottom: 28px;
    transition: color 150ms;
}
.bl-back:hover { color: #fff; }
.bl-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.bl-hero-date, .bl-hero-read { font-size: 12px; color: rgba(255,255,255,0.6); }
.bl-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5.5vw, 52px);
    line-height: 1.14; color: #fff;
    font-weight: 700; max-width: 780px;
    margin-bottom: 16px; letter-spacing: -0.01em;
}
.bl-hero-sub {
    font-family: var(--font-heading);
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.6; max-width: 560px;
    font-weight: 400; font-style: italic; margin: 0;
}

/* ── Post Content Wrapper ─────────────────────────────────────────────────── */
.bl-post-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px var(--space-md) 80px;
}

/* ── Questions Block ─────────────────────────────────────────────────────── */
.bl-questions {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    margin-bottom: 52px;
}
.bl-questions-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--earth); margin-bottom: 14px;
}
.bl-questions-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-q-chip {
    font-size: 13px; color: var(--text);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 7px 14px; line-height: 1.45;
}

/* ── Prose ────────────────────────────────────────────────────────────────── */
.bl-section { margin-bottom: 52px; }
.bl-section-h {
    font-family: var(--font-heading);
    font-size: clamp(19px, 3vw, 25px);
    font-weight: 700; color: var(--text);
    line-height: 1.25; margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
}
.bl-section-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.bl-section-body p { margin-bottom: 18px; }
.bl-section-body p:last-child { margin-bottom: 0; }
.bl-section-body strong { font-weight: 700; color: var(--text); }
.bl-section-body em { color: var(--earth); font-style: italic; }
/* First section — bigger lead */
.bl-section:first-of-type .bl-section-body p:first-child {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.72; font-style: italic; font-weight: 400;
}
/* List items */
.bl-section-body ul { margin: 14px 0 18px; padding: 0; list-style: none; }
.bl-section-body li {
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid var(--border);
    position: relative; font-size: 15px; line-height: 1.72;
}
.bl-section-body li:last-child { border-bottom: none; }
.bl-section-body li::before {
    content: ''; position: absolute; left: 0; top: 19px;
    width: 7px; height: 7px;
    border-radius: 50%; background: var(--earth);
}

/* ── Size / comparison table ─────────────────────────────────────────────── */
.bl-table-wrap {
    overflow-x: auto; margin: 20px 0 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.bl-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 360px; }
.bl-table th {
    background: var(--dark); color: #fff;
    padding: 13px 16px; text-align: left;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.bl-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.bl-table th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }
.bl-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.bl-table tr:last-child td { border-bottom: none; }
.bl-table tr:nth-child(even) td { background: var(--bg-secondary); }

/* ── Product CTA — horizontal slider matching site style ─────────────────── */
.bl-product-cta {
    margin: 52px -var(--space-md) 52px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 36px 0 32px;
    overflow: hidden;
}
@media (max-width: 600px) { .bl-product-cta { border-radius: var(--radius-lg); } }
.bl-product-cta-hd {
    padding: 0 32px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}
@media (max-width: 600px) { .bl-product-cta-hd { padding: 0 20px 20px; } }
.bl-product-cta-hd h3 {
    font-family: var(--font-heading);
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 700; color: var(--text);
    margin-bottom: 6px; letter-spacing: -0.01em;
}
.bl-product-cta-hd p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Horizontal scroll track — matches site .ts-track */
.bl-products-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 32px 4px;
    scrollbar-width: none;
}
.bl-products-track::-webkit-scrollbar { display: none; }
@media (max-width: 600px) { .bl-products-track { padding: 0 20px 4px; gap: 12px; } }

/* ── Product card — same language as site product cards ─────────────────── */
.bl-pcard {
    flex: 0 0 180px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 200ms ease;
}
.bl-pcard:active { transform: scale(0.97); }
@media (max-width: 600px) { .bl-pcard { flex: 0 0 150px; } }
.bl-pcard-img {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.bl-pcard-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 500ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.bl-pcard:hover .bl-pcard-img img { transform: scale(1.05); }
.bl-pcard-name {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text); text-decoration: none;
    line-height: 1.3; margin-bottom: 4px;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.bl-pcard-name:hover { color: var(--earth); }
.bl-pcard-price { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.bl-pcard-btns { display: flex; flex-direction: column; gap: 6px; }

.bl-cta-foot {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 24px 32px 0;
    border-top: 1px solid var(--border);
    margin-top: 28px;
}
@media (max-width: 600px) { .bl-cta-foot { padding: 20px 20px 0; } }

/* WhatsApp button */
.bl-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff;
    font-size: 13px; font-weight: 600;
    padding: 0 22px; height: 44px;
    border-radius: 999px; text-decoration: none;
    transition: background 150ms, transform 150ms; border: none; cursor: pointer;
}
.bl-wa:hover { background: #1fbe5e; transform: translateY(-1px); }

/* ── Closing quote ────────────────────────────────────────────────────────── */
.bl-closing {
    margin: 52px 0 48px;
    padding: 30px 34px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--earth);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.2vw, 20px);
    font-style: italic; color: var(--text);
    line-height: 1.62; font-weight: 400; margin: 52px 0;
}

/* ── Post footer actions ──────────────────────────────────────────────────── */
.bl-post-foot {
    padding-top: 36px; border-top: 1px solid var(--border);
}
.bl-post-foot-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

/* ── Related posts ────────────────────────────────────────────────────────── */
.bl-related {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 56px 0 72px;
}
.bl-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.bl-related-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 32px;
}
.bl-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 780px) { .bl-related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 480px) { .bl-related-grid { grid-template-columns: 1fr; } }

.bl-rel-card {
    display: flex; flex-direction: column;
    text-decoration: none; color: var(--text);
}
.bl-rel-card:active { transform: scale(0.98); }
.bl-rel-img {
    aspect-ratio: 3/2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    margin-bottom: 14px;
}
.bl-rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms cubic-bezier(0.25,0.46,0.45,0.94); }
.bl-rel-card:hover .bl-rel-img img { transform: scale(1.05); }
.bl-rel-body { display: flex; flex-direction: column; gap: 7px; }
.bl-rel-title {
    font-size: 14px; font-weight: 600; line-height: 1.38;
    color: var(--text); margin: 0;
    background-image: linear-gradient(var(--earth), var(--earth));
    background-position: 0 100%; background-repeat: no-repeat;
    background-size: 0% 1px; padding-bottom: 1px;
    transition: background-size 320ms ease;
}
.bl-rel-card:hover .bl-rel-title { background-size: 100% 1px; }
.bl-rel-read { font-size: 11px; color: var(--text-light); }

/* ── Skeleton ─────────────────────────────────────────────────────────────── */
.bl-sk { animation: pulse 1.4s ease infinite; }
.bl-sk-hero { height: 460px; background: var(--bg-secondary); }
.bl-sk-body { padding: 40px var(--space-md) 0; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.bl-sk-line { height: 16px; background: var(--bg-secondary); border-radius: 4px; }
.bl-sk-line.w50 { width: 50%; }
.bl-sk-line.w65 { width: 65%; }
.bl-sk-line.w80 { width: 80%; }
