/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first

**/
/* ==========================================================================
   POSTERY — ULTRA PREMIUM UI SYSTEM
   Palette: #FFFAF3 #FFF2DB #FFE5BF #F62440
   ========================================================================== */

:root {
    --bg-color:       #eaecf0;   /* light gray - main bg */
    --bg-secondary:   #eaecf0;   /* light gray - section bg */
    --bg-card:        #ffffff;   /* white - cards */
    --accent:         #fe7f2d;   /* orange - primary CTA */
    --accent-hover:   #e06c20;   /* slightly darker orange */
    --text-primary:   #000000;   /* black */
    --text-secondary: #233d4d;   /* dark slate blue */

    --glass-bg:       rgba(234,236,240,0.85);
    --glass-border:   rgba(254,127,45,0.12);

    /* Fonts */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Josefin Sans', sans-serif;
    --font-ui: 'Josefin Sans', sans-serif;

    --glass-blur:     20px;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   FONT IMPORT — DM Sans for drawer UI
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* Base Reset & Lenis Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { background-color: var(--bg-color); }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-ui);
    margin: 0;
    padding: 0;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Body lock during loading only */
body.loading {
    overflow: hidden;
}

/* ==========================================================================
   MOBILE CURSOR FIX — cursor:none breaks tap targets on iOS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    body, * {
        cursor: auto !important;
    }
}

/* ==========================================================================
   GLOBAL NOISE & AMBIENT EFFECTS
   ========================================================================== */

.noise-overlay {
    position: fixed; inset: 0;
    width: 100%; height: 100vh;
    pointer-events: none; z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.glass-orb {
    position: fixed; border-radius: 50%;
    filter: blur(130px); z-index: 0;
    pointer-events: none; opacity: 0.18;
}

.orb-1 { width: 50vw; height: 50vw; background: radial-gradient(circle, #FFE5BF, transparent); top: -20%; left: -10%; animation: float 20s ease-in-out infinite; }
.orb-2 { width: 40vw; height: 40vw; background: radial-gradient(circle, #F6244040, transparent); bottom: -10%; right: -10%; animation: float 25s ease-in-out infinite reverse; }
.orb-3 { width: 30vw; height: 30vw; background: radial-gradient(circle, #FFF2DB, transparent); top: 40%; left: 40%; animation: float 30s ease-in-out infinite; opacity: 0.12; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */

.cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%; pointer-events: none;
    z-index: 10001; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-glow {
    position: fixed; top: 0; left: 0;
    width: 48px; height: 48px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%; pointer-events: none;
    z-index: 10000; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    will-change: transform;
    mix-blend-mode: difference;
}

/* Hover state */
.cursor-hover .cursor-dot { width: 5px; height: 5px; background: #fff; }
.cursor-hover .cursor-glow { width: 60px; height: 60px; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

.loader {
    position: fixed; inset: 0;
    background: #FFFAF3;
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 1s ease, visibility 1s;
}
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.loader-logo {
    font-family: var(--font-heading);
    font-size: 4rem; font-weight: 700;
    letter-spacing: -0.02em; color: #1C0A00;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}
.loader-logo span { color: #F62440; }
.loader-bar { width: 200px; height: 2px; background: rgba(246,36,64,0.15); border-radius: 2px; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: #F62440; transition: width 0.2s ease; }
.loader-text { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-secondary); opacity: 0; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.shamoni-announcement-bar {
    position: relative;
    width: 100%;
    min-height: 32px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
    z-index: 101;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.shamoni-announcement-bar p {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin: 0;
    text-transform: uppercase;
}

.announcement-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-marquee__track {
    display: flex;
    width: max-content;
    gap: 1.8rem;
    animation: announcement-marquee 28s linear infinite;
}

.announcement-marquee__track span {
    position: relative;
    flex: 0 0 auto;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
}

.announcement-marquee__track span::after {
    content: "->";
    margin-left: 1.8rem;
    color: #fff;
}

.shamoni-announcement-bar:hover .announcement-marquee__track {
    animation-play-state: paused;
}

@keyframes announcement-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-marquee__track {
        animation: none;
        transform: none;
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0; width: 100%;
    padding: 1rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.8rem 5vw;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: none; /* hidden on mobile */
    gap: 0;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

/* Standard Wrapper */
.nav-link-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.nav-link-row .desktop-link {
    position: relative;
    z-index: 1;
}

.desktop-link {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(28, 10, 0, 0.7);
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    position: relative;
    padding: 0.6rem 1.4rem;
    transition: color 0.3s ease;
    cursor: none;
    white-space: nowrap;
}
.desktop-link:hover { 
    color: #1C0A00; 
}
.desktop-link::after { display: none; }

.logo-replica {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    transition: transform 0.3s ease;
}
.logo-main {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #1C0A00;
    line-height: 0.8;
    text-shadow: none;
    transition: color 0.3s ease;
}
.logo-main span {
    color: #1C0A00;
}
.logo-sub {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    color: #1C0A00;
    margin-top: 0.2rem;
    margin-right: 0.55rem;
    text-shadow: none;
    transition: color 0.3s ease;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* ---- How Offers Work pill button (header) ---- */
.offers-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: rgba(246, 36, 64, 0.06);
    border: 1px solid rgba(246, 36, 64, 0.18);
    border-radius: 100px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    
    
    cursor: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    white-space: nowrap;
    text-shadow: none;
}

.offers-pill-btn i {
    font-size: 0.9rem;
    opacity: 0.75;
}

.offers-pill-btn:hover {
    background: rgba(246, 36, 64, 0.12);
    transform: scale(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        0 4px 18px rgba(0,0,0,0.12);
}

.header.scrolled .offers-pill-btn {
    background: rgba(246, 36, 64, 0.06);
    border-color: rgba(246, 36, 64, 0.18);
    color: var(--text-secondary);
    text-shadow: none;
    box-shadow: none;
}

.header.scrolled .offers-pill-btn:hover {
    background: rgba(246, 36, 64, 0.12);
    color: var(--text-primary);
}

/* Hide on mobile */
@media (max-width: 767px) {
    .offers-pill-btn {
        display: none;
    }
}

.icon-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #1C0A00; font-size: 1.2rem;
    cursor: pointer; position: relative;
    
    
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.icon-btn:hover {
    background: rgba(246,36,64,0.12);
    transform: scale(1.05);
}
@media (min-width: 768px) { .menu-btn { display: none !important; } }
.cart-count {
    position: absolute; top: -5px; right: -5px;
    background: #F62440; color: #fff;
    font-size: 0.75rem; font-weight: 700;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-btn span {
    display: block; width: 20px; height: 2px;
    background: #1C0A00; margin: 2px 0;
    transition: var(--transition-smooth);
}

/* Scrolled Text Colors for Light Background */
.header.scrolled .desktop-link {
    color: rgba(28, 10, 0, 0.7);
    text-shadow: none;
}
.header.scrolled .desktop-link:hover {
    color: #1C0A00;
}
.header.scrolled .logo-replica .logo-main,
.header.scrolled .logo-replica .logo-main span,
.header.scrolled .logo-replica .logo-sub {
    color: #1C0A00;
    text-shadow: none;
}
.header.scrolled .icon-btn {
    color: #1C0A00;
    text-shadow: none;
}
.header.scrolled .menu-btn span {
    background: #1C0A00;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: #F62440; color: #fff;
    font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    border: none; border-radius: 100px;
    text-decoration: none; cursor: none;
    transition: var(--transition-bounce);
    position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(246,36,64,0.3);
}
.btn-primary span, .btn-primary i { position: relative; z-index: 2; }
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: #d41835;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { color: #fff; box-shadow: 0 6px 28px rgba(246,36,64,0.45); }

.btn-secondary {
    display: inline-flex; align-items: center;
    padding: 1rem 2rem;
    background: transparent; color: var(--text-primary);
    border: 1.5px solid rgba(246,36,64,0.35);
    border-radius: 100px; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    text-decoration: none; cursor: none;
    transition: var(--transition-smooth);
}
.btn-secondary:hover {
    background: rgba(246,36,64,0.07);
    border-color: #F62440;
    color: #F62440;
}

/* ==========================================================================
   DRAWERS
   ========================================================================== */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   DRAWER — Fixed for iOS Safari (dvh + safe-area-inset)
   ========================================================================== */
.drawer {
    position: fixed; top: 0; right: 0;
    /* Use 100dvh which excludes iOS Safari address bar; fallback to 100vh */
    height: 100vh;
    height: 100dvh;
    width: 100%; max-width: 500px;
    background: rgba(255,250,243,0.97);
     
    border-left: 2px solid rgba(246,36,64,0.1);
    z-index: 1001;
    /* NO padding on the whole drawer — let children handle their own padding */
    padding: 0;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-primary);
    overflow: hidden; /* Clip child content — scrolling happens in .cart-items */
}
.drawer.open { transform: translateX(0); }

/* ==========================================================================
   DRAWER HEADER — sticky at top, always visible
   ========================================================================== */
.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(246,36,64,0.12);
    flex-shrink: 0; /* Never compress — always visible */
}

.drawer-title {
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1C0A00;
}
.cart-title-count {
    font-family: 'DM Sans', 'Outfit', sans-serif;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.2em;
}

/* ==========================================================================
   NAVIGATION MENU DRAWER SPECIFICS
   ========================================================================== */
.drawer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0; /* Remove gap — use padding on individual links */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding: 0.5rem 1.5rem;
    touch-action: pan-y; /* Explicitly allow vertical pan */
}

.drawer-link {
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C0A00;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    letter-spacing: -0.01em;
    transition: color 0.25s ease, padding-left 0.25s ease;
    opacity: 0;
    transform: translateY(12px);
}
/* Sub-links (Anime, Gaming etc.) look like secondary nav items */
.drawer-link.sub-link {
    font-size: 1rem;
    font-weight: 400;
    color: #5A4A42;
    padding-left: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.drawer.open .drawer-link { opacity: 1; transform: translateY(0); }
.drawer.open .drawer-link:nth-child(1) { transition-delay: 0.08s; }
.drawer.open .drawer-link:nth-child(2) { transition-delay: 0.12s; }
.drawer.open .drawer-link:nth-child(3) { transition-delay: 0.16s; }
.drawer.open .drawer-link:nth-child(4) { transition-delay: 0.20s; }
.drawer.open .drawer-link:nth-child(5) { transition-delay: 0.24s; }
.drawer.open .drawer-link:nth-child(6) { transition-delay: 0.28s; }
.drawer.open .drawer-link:nth-child(7) { transition-delay: 0.32s; }
.drawer.open .drawer-link:nth-child(8) { transition-delay: 0.36s; }
.drawer-link:hover, .drawer-link:active { color: #F62440; padding-left: 0.4rem; }
.drawer-link.sub-link:hover, .drawer-link.sub-link:active { color: #F62440; }

.link-num { font-family: 'DM Sans', 'Outfit', sans-serif; font-size: 0.75rem; color: #aaa; font-weight: 400; }

.drawer-footer {
    display: flex; gap: 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    flex-shrink: 0;
}
.drawer-footer a { color: #1a1a1a; font-size: 1.4rem; transition: color 0.3s; cursor: auto; }
.drawer-footer a:hover { color: #F62440; }

/* ==========================================================================
   CART DRAWER SPECIFICS — the key fix for mobile scroll
   ========================================================================== */
.cart-items {
    /* flex: 1 means it grows to fill available space between header and footer */
    flex: 1;
    /* THIS IS THE CRITICAL RULE — without this, items overflow silently */
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Momentum scroll on iOS */
    overscroll-behavior-y: contain;    /* Prevent pull-to-refresh hijacking scroll */
    touch-action: pan-y;               /* Explicitly allow vertical touch pan */
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.cart-item {
    display: flex; gap: 0.9rem;
    background: #FFF9F0;
    padding: 0.9rem; border-radius: 12px;
    border: 1px solid rgba(246,36,64,0.07);
    flex-shrink: 0; /* Don't let items compress — always full height */
}
.cart-item-img { width: 72px; height: 90px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cart-item-title {
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    /* Prevent long titles from breaking layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price {
    font-family: 'DM Sans', 'Outfit', sans-serif;
    color: #F62440;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}
.qty-controls {
    display: flex; align-items: center; gap: 0;
    background: rgba(246,36,64,0.08);
    border-radius: 100px;
    width: fit-content;
    overflow: hidden;
}
/* CRITICAL: cursor:auto + min touch target (44px) for iOS tap accuracy */
.qty-btn {
    background: none; border: none;
    color: #1C0A00;
    font-size: 1.1rem;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: auto !important; /* Override cursor:none which breaks mobile taps */
    touch-action: manipulation; /* Prevent double-tap zoom on buttons */
    -webkit-tap-highlight-color: rgba(246,36,64,0.15);
    user-select: none;
}
.qty-btn:active { background: rgba(246,36,64,0.15); }

/* CART FOOTER — sticky at bottom, always reachable */
.cart-footer {
    padding: 1.2rem 1.5rem;
    /* Add safe-area-inset for iPhone home bar */
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(246,36,64,0.1);
    background: rgba(255,250,243,0.97);
    flex-shrink: 0; /* Never compress */
}
.cart-total-row {
    display: flex; justify-content: space-between;
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-size: 1rem; font-weight: 600;
    margin-bottom: 1rem;
    color: #1C0A00;
}
.price-glow { color: #F62440; font-size: 1.1rem; font-weight: 700; }
.checkout-btn {
    width: 100%; justify-content: center;
    cursor: auto !important; /* Override cursor:none for mobile */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(246,36,64,0.2);
}

.custom-cart-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 1rem;
    color: #3a2a22;
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
}

.custom-cart-terms__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0.05rem 0 0;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer !important;
    position: relative;
    flex: 0 0 auto;
    outline: none;
}

.custom-cart-terms__checkbox:checked {
    background-color: #F62440;
    border-color: #F62440;
}

.custom-cart-terms__checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-cart-terms__label {
    cursor: pointer;
}

.custom-cart-terms__label a {
    color: #F62440;
    text-decoration: underline;
}

.cart-drawer {
    background: #f6f6f6;
    color: #2f363a;
}

.cart-drawer .drawer-header {
    min-height: 96px;
    align-items: flex-start;
    padding: 1rem 1rem 3.2rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 24%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 3px, transparent 3px 12px),
        #111;
    border-bottom: none;
}

.cart-drawer .drawer-title {
    color: #fff;
    font-size: 1.75rem;
}

.cart-close-button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 34px;
    padding: 0 0.7rem;
    border: 0;
    border-radius: 5px;
    background: #fff;
    color: #111;
    font: 700 0.78rem/1 var(--font-ui);
    cursor: pointer !important;
}

.cart-promo-stack {
    position: relative;
    z-index: 2;
    margin-top: -2.4rem;
    padding: 0 1rem 0.6rem;
}

.cart-dispatch-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.65rem;
    border-radius: 4px 4px 0 0;
    background: #fff36b;
    color: #111;
    font: 700 0.84rem/1.25 var(--font-ui);
}

.cart-reward-card {
    padding: 0.8rem 1rem;
    border: 1px solid #e4e0dc;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    background: rgba(255,255,255,0.96);
}

.cart-reward-card p {
    margin: 0 0 0.55rem;
    color: #60686d;
    font-size: 0.76rem;
    text-align: center;
}

.cart-reward-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #d7d7d7;
}

.cart-reward-fill {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: #050505;
    transition: width 0.35s ease;
}

.cart-reward-milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 0.45rem;
    color: #656565;
    font-size: 0.64rem;
    text-align: center;
}

.cart-reward-milestones span.is-unlocked {
    color: #111;
    font-weight: 800;
}

.cart-empty-message {
    color: #6c7478;
    text-align: center;
    margin: 2rem 0;
}

.cart-drawer .cart-items {
    padding: 0.7rem 1rem;
    background: #f6f6f6;
    gap: 0.75rem;
}

.cart-drawer .cart-item {
    position: relative;
    gap: 0.8rem;
    padding: 1rem 1.8rem 1rem 1rem;
    border: 1px solid #ded8d2;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.cart-item-remove {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    border: 0;
    background: transparent;
    color: #9aa1a5;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer !important;
}

.cart-drawer .cart-item-img {
    width: 78px;
    height: 98px;
    border: 1px solid #e5e0da;
    border-radius: 4px;
}

.cart-drawer .cart-item-details {
    gap: 0.35rem;
    justify-content: flex-start;
}

.cart-drawer .cart-item-title {
    white-space: normal;
    color: #30383d;
    font-size: 0.9rem;
    font-weight: 800;
}

.cart-item-variant {
    color: #697176;
    font-size: 0.78rem;
}

.cart-drawer .qty-controls {
    gap: 0.5rem;
    background: transparent;
    border-radius: 0;
}

.cart-drawer .qty-btn {
    width: 30px;
    height: 28px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    color: #4a555a;
}

.cart-item-offer-badge {
    width: fit-content;
    max-width: 100%;
    padding: 0.32rem 0.45rem;
    border-radius: 3px;
    background: #ddd9d9;
    color: #30383d;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-drawer .cart-item-price {
    align-self: flex-end;
    color: #20272b;
    font-size: 0.9rem;
    font-weight: 900;
}

.cart-drawer .cart-footer {
    padding: 0.75rem 1rem 1rem;
    background: #f6f6f6;
    border-top: 1px solid #e2ded9;
}

.cart-upsells {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
}

.cart-upsell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #e3ded8;
    border-radius: 5px;
    background: #fff;
    color: #3b4449;
    font-size: 0.8rem;
}

.cart-upsell strong,
.cart-upsell span {
    display: block;
}

.cart-upsell button {
    min-height: 32px;
    padding: 0 0.75rem;
    border: 0;
    border-radius: 4px;
    background: #050505;
    color: #fff;
    font-weight: 800;
    cursor: pointer !important;
}

.cart-upsell button:disabled {
    background: #cfcac4;
    color: #4d565b;
    cursor: not-allowed !important;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-top: 0.45rem;
    color: #4d565b;
    font-size: 0.84rem;
}

.cart-discount-row span:last-child {
    font-weight: 800;
}

.cart-drawer .cart-total-row {
    margin: 0.85rem 0 0.8rem;
    font-size: 1rem;
}

.cart-drawer .checkout-btn {
    justify-content: center;
    width: 100%;
    border-radius: 4px;
    background: #050505;
    box-shadow: none;
}

.cart-drawer .checkout-btn::before {
    display: none;
}

.continue-shopping-btn {
    width: 100%;
    min-height: 42px;
    border: 0;
    background: #fff;
    color: #30383d;
    font-weight: 800;
    cursor: pointer !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    height: 65vh; /* Standard desktop banner height */
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateZ(0);
}
.video-background video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.02); /* prevent edge bleeding */
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,3,0.1) 0%, rgba(3,3,3,0.3) 80%, rgba(3,3,3,0.5) 100%);
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    
    color: #fff;
    text-decoration: none;
    display: inline-block;
    cursor: none;
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtext {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    line-height: 1.6;
}

/* ==========================================================================
   SHOP SECTION & 3D CARDS
   ========================================================================== */

.page-bg-wrapper {
    position: relative; z-index: 2;
    background: #FFFDF9;
}

/* ==========================================================================
   COLLECTIONS SECTION
   ========================================================================== */
.collections-section {
    padding: 4rem 2vw;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.collections-header h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    color: #111;
    margin: 0;
}

.collections-header h2::before, .collections-header h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: #00d2d3;
    transform: rotate(-30deg);
}
.collections-header h2::before { top: 10px; left: -20px; }
.collections-header h2::after { bottom: 10px; right: -20px; }

.collections-header p {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.collections-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}
.collections-carousel-wrapper::-webkit-scrollbar { display: none; }

.collections-track {
    display: inline-flex;
    gap: 2.5rem;
    padding: 1rem;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .collections-track {
        gap: 1rem;
        padding: 0.5rem;
    }
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #111;
    width: 100px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.collection-item:hover { transform: translateY(-5px); }

.collection-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.8rem;
    background: #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-item span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.explore-placeholder {
    width: 100%;
    height: 100%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}

.shop-section {
    padding: 3rem 4vw;
    background: var(--bg-color);
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}
.section-desc {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-slider {
    width: 100%;
    padding: 1rem 0;
    overflow: hidden;
}

.product-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Flat Product Card */
.product-card {
    position: relative;
    width: 100%;
    background: transparent;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    height: auto;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.product-image {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.card-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.2) 25%, transparent 30%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.product-card:hover .card-glare {
    opacity: 1;
    animation: glareSwipe 1.5s ease-out;
}
.product-card:hover .add-to-cart-btn {
    bottom: 20px;
    opacity: 1;
    pointer-events: auto;
}

.cart-added-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.product-card.in-cart .cart-added-badge {
    opacity: 1;
    transform: translateY(0);
}

.product-card.in-cart .add-to-cart-btn {
    background: #111;
    color: #fff;
}

@keyframes glareSwipe {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 0.5rem;
    text-align: center;
}

.product-category {
    display: none;
}

.product-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}
.product-price {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    margin-top: 0.2rem;
}

.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
    font-family: var(--font-body);
}
.pagination-controls .slider-nav-btn {
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.pagination-controls .slider-nav-btn:hover {
    color: #111;
}
.swiper-pagination-fraction,
.swiper-pagination-custom {
    position: relative;
    bottom: auto;
    width: auto;
    font-size: 0.85rem;
    color: #666;
}
.view-all-btn {
    background: #111;
    color: #fff;
    padding: 0.6rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
}
.view-all-btn:hover {
    transform: scale(1.05);
    background: #000;
}

/* ==========================================================================
   EDITORIAL SECTION
   ========================================================================== */

.editorial-section {
    padding: 4rem 4vw;
}

.editorial-card {
    display: flex; max-width: 1400px; margin: 0 auto;
    background: #FFF2DB;
    border: 1px solid rgba(246,36,64,0.1);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(246,36,64,0.06);
}

.editorial-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.editorial-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}
.editorial-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
}

.editorial-image {
    flex: 1;
    overflow: hidden;
}
.editorial-image img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.2); /* For parallax */
}

@media (max-width: 900px) {
    .editorial-card { flex-direction: column; }
    .editorial-content { padding: 3rem; }
    .editorial-image { height: 400px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    border-top: 1px solid var(--glass-border);
    padding: 5rem 4vw 2rem;
    background: var(--bg-secondary);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent-gold); }
.footer-brand p { color: var(--text-secondary); }

.footer-links {
    display: flex;
    gap: 5rem;
}
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    cursor: none;
}
.footer-col a:hover { color: #F62440; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(246,36,64,0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}
.footer-social a { color: var(--text-secondary); transition: color 0.3s; cursor: none;}
.footer-social a:hover { color: #F62440; }

/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */
.slider-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.slider-header-wrapper .section-header {
    margin-bottom: 0;
    text-align: left;
}
.slider-controls {
    display: flex;
    gap: 1rem;
}
.slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(246,36,64,0.07);
    border: 1.5px solid rgba(246,36,64,0.2);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition-smooth);
}
.slider-nav-btn:hover {
    background: #F62440;
    color: #fff;
    border-color: #F62440;
    transform: scale(1.05);
}
.slider-progress-container {
    width: 100%;
    height: 2px;
    background: rgba(246,36,64,0.12);
    margin-top: 2rem;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}
.slider-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: #F62440;
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 767px) {
    .headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        line-height: 1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 0 4vw;
    }
    
    .product-card {
        min-width: calc((100% - 1rem) / 2); /* Fit exactly 2 products on mobile */
        width: calc((100% - 1rem) / 2);
        padding: 0.8rem;
    }
    
    .product-image-container {
        height: 260px;
    }
    
    .slider-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .slider-nav-btn {
        width: 40px; height: 40px;
    }
    
    .header {
        padding: 1rem 4vw;
        top: 28px; /* Slightly smaller announcement bar offset */
    }
    
    .shamoni-announcement-bar {
        min-height: 28px;
    }
    .shamoni-announcement-bar p,
    .announcement-marquee__track span {
        font-size: 0.7rem;
        line-height: 28px;
    }
    
    .logo-small {
        font-size: 1.4rem;
    }
    
    .icon-btn {
        width: 40px; height: 40px;
        font-size: 1.1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .product-grid {
        gap: 1rem;
    }
    
    /* Fix Add to Cart button on mobile */
    .add-to-cart-btn {
        position: relative;
        bottom: 0 !important;
        left: 0;
        transform: translateX(0);
        width: 100%;
        margin-top: 1rem;
        opacity: 1 !important;
        pointer-events: auto !important;
        border-radius: 12px;
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .product-card {
        display: flex;
        flex-direction: column;
    }
}

/* ==========================================================================
   SECONDARY DROPDOWN HEADER (RESTORED FOR LANDING PAGE)
   ========================================================================== */
.secondary-nav-wrapper {
    position: fixed;
    top: 130px;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    padding: 0 5%;
    pointer-events: none;
    transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled + .drawer-overlay + .secondary-nav-wrapper,
.header.scrolled ~ .secondary-nav-wrapper {
    top: 95px;
}

@media (max-width: 992px) {
    .secondary-nav-wrapper.desktop-only {
        display: none;
    }
}

.secondary-nav-glass {
    pointer-events: auto;
    background: var(--glass-bg, rgba(255, 255, 255, 0.85));
    
    
    border: 1px solid var(--glass-border, rgba(0, 0, 0, 0.05));
    border-radius: 100px;
    padding: 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.header-hidden .secondary-nav-glass {
    transform: translateY(-150%);
    opacity: 0;
}

.sec-nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sec-nav-item {
    position: relative;
    padding: 0.8rem 0;
}

.sec-nav-link {
    color: var(--text-primary, #000);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-ui);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.sec-nav-item:hover .sec-nav-link {
    color: var(--accent, #F62440);
}

/* Dropdown Container */
.sec-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--glass-bg, rgba(255, 255, 255, 0.95));
    
    
    border: 1px solid var(--glass-border, rgba(0, 0, 0, 0.05));
    border-radius: 16px;
    padding: 0.8rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 100;
}

.sec-nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.sec-nav-item.has-dropdown:hover .sec-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sec-drop-link {
    display: block;
    color: var(--text-secondary, #444);
    font-family: var(--font-ui);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

.sec-drop-link:hover {
    color: var(--text-primary, #000);
    background: rgba(0, 0, 0, 0.03);
        padding-left: 1.8rem;
}

/* ==========================================================================
   LAYOUT RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content { padding: 0 4vw; }
    .product-slider { padding: 1rem 4vw; }
    
    /* Mobile Drawer Overrides — compatible with new flex layout */
    /* Do NOT add padding to .drawer itself — it breaks the flex scroll structure */
    nav.drawer, div.drawer {
        width: 100% !important;
        max-width: 100% !important;
        /* padding: 0 — inherited from base, DO NOT OVERRIDE */
    }
    .drawer-header {
        padding: 1.2rem 1.2rem 1rem !important;
    }
    .drawer-title { font-size: 1.2rem !important; }
    .drawer-links {
        padding: 0.5rem 1.2rem !important;
        max-height: none !important; /* Let flex:1 handle height, not max-height */
    }
    .drawer-links a.drawer-link {
        font-size: 1.1rem !important;
        opacity: 1 !important; /* Always visible on mobile — skip animation */
        transform: none !important;
    }
    .drawer-links a.sub-link { font-size: 0.95rem !important; }
    .cart-items { padding: 0.8rem 1.2rem !important; }
    .cart-footer { padding: 1rem 1.2rem !important; padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important; }
}

@media (max-width: 767px) {
    /* Hero */
    .hero-content { padding: 0 2vw; }
    .headline { font-size: clamp(2rem, 8vw, 3rem); text-shadow: 0 5px 15px rgba(0,0,0,0.5); line-height: 1.1; }
    .hero-subtext { font-size: 0.95rem; line-height: 1.4; }
    
    /* Logo Replica */
    .logo-main { font-size: 1.5rem; }
    .logo-sub { font-size: 0.35rem; margin-top: 0.1rem; }
    
    /* Icons & Buttons */
    .icon-btn { width: 38px; height: 38px; font-size: 1rem; }
    .menu-btn span { width: 16px; margin: 2px 0; }
    .cart-count { width: 18px; height: 18px; font-size: 0.6rem; top: -2px; right: -2px; }
    
    .btn-primary, .btn-secondary { padding: 0.8rem 1.4rem; font-size: 0.75rem; }

    
    /* Shop Section / Collections */
    .shop-section { padding: 2rem 3vw; }
    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.55rem; }
    
    .collections-section { padding: 2.5rem 2vw; }
    .collections-header h2 { font-size: 1.5rem; }
    .collections-header p { font-size: 0.65rem; margin-bottom: 2rem; }
    .collections-track { gap: 1rem; padding: 0.5rem; }
    .collection-item { width: 80px; }
    .collection-img { width: 80px; height: 80px; }
    .collection-item span { font-size: 0.75rem; }
    
    /* Footer */
    .footer { padding: 3rem 4vw 2rem 4vw; }
    .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-brand { max-width: 100%; margin: 0 auto; align-items: center; }
    .footer-links { flex-direction: column; gap: 2rem; width: 100%; }
    .footer-col { align-items: center; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Enhanced Close Button */
.close-drawer { background: #1C0A00 !important; color: #FFFFFF !important; font-size: 1.5rem !important; opacity: 1 !important; z-index: 9999; cursor: pointer !important; width: 44px !important; height: 44px !important; display: flex; align-items: center; justify-content: center; }
@media (max-width: 768px) { .hide-on-mobile { display: none !important; } }

/* ==========================================================================
   POSTERY COMMERCE REFRESH
   Inspired by high-conversion poster stores, kept original to Postery.
   ========================================================================== */
body {
    background: #eef0f3;
}

.shamoni-announcement-bar {
    min-height: 30px;
    background: #030303;
}

.announcement-marquee__track {
    gap: 2.25rem;
    animation-duration: 22s;
}

.announcement-marquee__track span {
    font-family: 'League Spartan', var(--font-ui);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 30px;
}

.header {
    top: 30px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.75rem clamp(1rem, 4vw, 4rem);
    background: rgba(238, 240, 243, 0.96);
    border: 0;
    border-bottom: 1px solid rgba(12, 12, 12, 0.08);
    box-shadow: 0 12px 28px rgba(18, 24, 31, 0.06);
    
    
}

.header.scrolled {
    top: 0;
    padding: 0.65rem clamp(1rem, 4vw, 4rem);
    background: rgba(238, 240, 243, 0.98);
    border-color: rgba(12, 12, 12, 0.1);
    box-shadow: 0 10px 28px rgba(18, 24, 31, 0.08);
}

.logo-img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.logo-replica .logo-white {
    display: none !important;
}

.logo-replica .logo-black {
    display: block !important;
}

.nav-link-row {
    gap: 0.2rem;
    background: transparent;
}

.desktop-link,
.header.scrolled .desktop-link {
    color: #2b2b2b;
    text-shadow: none;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
}

.desktop-link:hover,
.header.scrolled .desktop-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.055);
}

.offers-pill-btn,
.header.scrolled .offers-pill-btn {
    background: #fff7f4;
    border-color: #ffd4c9;
    color: #263238;
    box-shadow: none;
    text-shadow: none;
}

.icon-btn,
.header.scrolled .icon-btn {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    color: #161616;
    box-shadow: 0 4px 14px rgba(18, 24, 31, 0.08);
}

.icon-btn:hover {
    background: #111;
    color: #fff;
}

.secondary-nav-wrapper {
    top: 91px;
}

.header.scrolled + .drawer-overlay + .secondary-nav-wrapper,
.header.scrolled ~ .secondary-nav-wrapper {
    top: 62px;
}

.secondary-nav-glass {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(18, 24, 31, 0.08);
    box-shadow: 0 12px 28px rgba(18, 24, 31, 0.08);
}

.hero-section {
    min-height: 72vh;
    height: auto;
    padding-top: 135px;
    padding-bottom: 56px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 38%), linear-gradient(135deg, #101010, #292929) !important;
}

.hero-content {
    max-width: 860px !important;
}

.hero-supporters {
    display: none !important;
}

.premium-countdown {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.58);
}

.postery-storefront-strip {
    max-width: 1420px;
    margin: -24px auto 0;
    padding: 0 clamp(1rem, 4vw, 3rem) 1rem;
    position: relative;
    z-index: 4;
}

.postery-offer-ladder {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.postery-offer-ladder a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'League Spartan', var(--font-ui);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.postery-quick-shop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.postery-quick-card {
    min-height: 108px;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    text-decoration: none;
    color: #121212;
    box-shadow: 0 10px 24px rgba(18, 24, 31, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.postery-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(18, 24, 31, 0.1);
}

.postery-quick-card span,
.postery-quick-card small {
    display: block;
}

.postery-quick-card span {
    font-family: 'League Spartan', var(--font-heading);
    font-size: 1.02rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.45rem;
}

.postery-quick-card small {
    color: #5c6368;
    font-size: 0.8rem;
    line-height: 1.35;
}

.transformed-section {
    padding-top: 2rem !important;
}

.shop-section {
    padding: 3rem clamp(1rem, 4vw, 4rem);
    background: #eef0f3;
}

.slider-header-wrapper {
    margin-bottom: 1.35rem;
}

.section-title {
    font-family: 'League Spartan', var(--font-heading);
    font-size: clamp(1.6rem, 2.3vw, 2.4rem);
    letter-spacing: -0.01em;
}

.section-desc {
    color: #6b7075;
    letter-spacing: 0.18em;
}

.product-slider {
    padding: 0;
}

.product-slider .swiper-slide {
    align-items: stretch;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(18, 24, 31, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(18, 24, 31, 0.12);
}

.product-image-container {
    margin-bottom: 0;
    border-radius: 0;
    aspect-ratio: 4 / 5;
    background: #dfe3e8;
}

.product-image-container::before {
    content: "Sale";
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 16;
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-info {
    align-items: flex-start;
    min-height: 104px;
    padding: 0.75rem 0.85rem 0.9rem;
    text-align: left;
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.45em;
    overflow: hidden;
    color: #20272b;
    font-size: 0.82rem;
    font-weight: 800;
}

.product-price {
    color: #333;
    font-size: 0.82rem;
    font-weight: 800;
}

.product-info::after {
    content: "Standard Posters: Buy 5, Get 5 Free";
    display: inline-flex;
    margin-top: 0.45rem;
    padding: 0.24rem 0.45rem;
    border-radius: 4px;
    background: #eeeeee;
    color: #333;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.add-to-cart-btn {
    opacity: 1;
    pointer-events: auto;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 5px;
    padding: 0.7rem 1rem;
    font-size: 0.72rem;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.product-card:hover .add-to-cart-btn {
    bottom: 12px;
}

.pagination-wrapper {
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.pagination-controls {
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    box-shadow: 0 8px 20px rgba(18, 24, 31, 0.06);
}

.slider-nav-btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
}

.view-all-btn {
    border-radius: 5px;
    background: #050505;
    padding: 0.75rem 2.25rem;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .secondary-nav-wrapper {
        display: none !important;
    }

    .postery-offer-ladder,
    .postery-quick-shop {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .shamoni-announcement-bar {
        min-height: 27px;
    }

    .announcement-marquee__track span {
        font-size: 0.62rem;
        line-height: 27px;
    }

    .header,
    .header.scrolled {
        top: 27px;
        padding: 0.5rem 0.75rem;
    }

    .header.scrolled {
        top: 0;
    }

    .logo-img {
        height: 28px;
        max-width: 128px;
    }

    .search-btn,
    .login-btn {
        display: none !important;
    }

    .icon-btn,
    .header.scrolled .icon-btn {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        min-height: 66vh;
        padding-top: 98px;
        padding-bottom: 32px;
    }

    .postery-storefront-strip {
        margin-top: -12px;
        padding-inline: 0.75rem;
    }

    .postery-offer-ladder {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
    }

    .postery-offer-ladder a {
        min-width: 190px;
        scroll-snap-align: start;
    }

    .postery-quick-shop {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .postery-quick-card {
        min-height: auto;
        padding: 0.85rem;
    }

    .shop-section {
        padding: 2.25rem 0.75rem;
    }

    .product-card {
        padding: 0;
    }

    .product-image-container {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .product-title,
    .product-price {
        font-size: 0.76rem;
    }

    .product-info {
        min-height: 92px;
        padding: 0.65rem;
    }

    .product-info::after {
        font-size: 0.56rem;
    }

    .add-to-cart-btn {
        margin-top: 0;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 9px !important;
        border-radius: 5px;
        padding: 0.55rem 0.75rem;
    }
}

/* ==========================================================================
   LIGHT LANDING HERO REDESIGN
   ========================================================================== */
.postery-light-hero {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding: 145px clamp(1rem, 4vw, 4rem) 52px !important;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 218, 198, 0.55), transparent 26%),
        linear-gradient(180deg, #f7f4ef 0%, #eef0f3 100%) !important;
    color: #121212;
}

.postery-light-hero > .video-background,
.postery-light-hero > .hero-content,
.postery-light-hero > .hero-supporters {
    display: none !important;
}

.postery-light-hero__inner {
    width: min(1420px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.postery-light-hero__copy {
    max-width: 620px;
}

.postery-light-hero__eyebrow {
    display: inline-flex;
    margin: 0 0 0.8rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    color: #5f656a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.postery-light-hero h1 {
    margin: 0;
    font-family: 'League Spartan', var(--font-heading);
    font-size: clamp(3rem, 6vw, 6.7rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #090909;
    text-transform: uppercase;
}

.postery-light-hero__text {
    max-width: 520px;
    margin: 1.1rem 0 0;
    color: #4c5358;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.55;
}

.postery-light-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.35rem 0 0;
}

.postery-light-hero__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    color: #1c252b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.postery-light-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.postery-hero-primary,
.postery-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.postery-hero-primary {
    background: #050505;
    color: #fff;
}

.postery-hero-secondary {
    background: #fff;
    color: #111;
    border: 1px solid rgba(18, 24, 31, 0.1);
}

.postery-light-hero__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
}

.postery-hero-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.55rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(18, 24, 31, 0.08);
    color: #1b1f22;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(18, 24, 31, 0.08);
    transform: translateY(14px);
}

.postery-hero-card:nth-child(2),
.postery-hero-card:nth-child(4) {
    transform: translateY(-14px);
}

.postery-hero-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
    background: #e2e4e7;
}

.postery-hero-card span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.4em;
    overflow: hidden;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.2;
}

.postery-light-hero + .page-bg-wrapper .postery-storefront-strip {
    margin-top: 0;
    padding-top: 1rem;
}

.postery-light-hero + .page-bg-wrapper .postery-offer-ladder a {
    background: #fff;
    color: #111;
    border: 1px solid rgba(18, 24, 31, 0.09);
    box-shadow: 0 8px 18px rgba(18, 24, 31, 0.05);
}

.page-bg-wrapper {
    display: flex;
    flex-direction: column;
}

.postery-storefront-strip { order: 10; }
.transformed-section { order: 20; }
.collections-section { order: 30; }
#shop-new { order: 40; }
#shop-split { order: 41; }
#shop-best { order: 42; }
#shop-trending { order: 43; }
#shop-mixed { order: 44; }
.featured-banner-section { order: 50; }
.footer { order: 60; }

.product-slider,
.product-slider .swiper-wrapper {
    touch-action: pan-y pinch-zoom;
}

.product-slider .swiper-slide.product-card {
    min-width: 0 !important;
    width: calc((100% - 8px) / 2) !important;
}

.cart-drawer {
    height: 100dvh;
    max-height: 100dvh;
}

.cart-drawer .cart-items {
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.shop-section .product-image-container {
    aspect-ratio: 4 / 5;
    max-height: 310px;
}

.shop-section .product-info {
    min-height: 90px;
    padding: 0.62rem 0.7rem 0.72rem;
}

.shop-section .product-title,
.shop-section .product-price {
    font-size: 0.76rem;
}

@media (min-width: 640px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 16px) / 3) !important;
    }
}

@media (min-width: 900px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 30px) / 4) !important;
    }
}

@media (min-width: 1200px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 50px) / 6) !important;
    }
}

@media (min-width: 1600px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 60px) / 7) !important;
    }

    .shop-section .product-image-container {
        max-height: 285px;
    }
}

@media (max-width: 1024px) {
    .postery-light-hero {
        padding-top: 112px !important;
    }

    .postery-light-hero__inner {
        grid-template-columns: 1fr;
    }

    .postery-light-hero__copy {
        max-width: 760px;
    }

    .postery-light-hero__gallery {
        grid-template-columns: repeat(4, minmax(140px, 1fr));
        overflow-x: auto;
        padding-bottom: 0.4rem;
        scroll-snap-type: x mandatory;
    }

    .postery-hero-card {
        min-width: 150px;
        scroll-snap-align: start;
    }
}

@media (max-width: 767px) {
    .postery-light-hero {
        min-height: auto !important;
        padding: 92px 0.75rem 30px !important;
    }

    .postery-light-hero h1 {
        font-size: clamp(2.6rem, 15vw, 4.2rem);
    }

    .postery-light-hero__text {
        font-size: 0.96rem;
    }

    .postery-light-hero__badges {
        gap: 0.4rem;
    }

    .postery-light-hero__badges span {
        min-height: 30px;
        font-size: 0.62rem;
    }

    .postery-light-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .postery-hero-primary,
    .postery-hero-secondary {
        width: 100%;
    }

    .postery-light-hero__gallery {
        grid-template-columns: repeat(4, minmax(132px, 1fr));
        gap: 0.55rem;
    }

    .postery-hero-card,
    .postery-hero-card:nth-child(2),
    .postery-hero-card:nth-child(4) {
        transform: none;
    }

    .cart-drawer .drawer-header {
        min-height: 72px;
        padding-bottom: 1rem !important;
    }

    .cart-promo-stack {
        padding: 0.6rem 0.75rem;
    }

    .cart-reward-milestones {
        gap: 0.35rem;
        font-size: 0.58rem;
    }

    .cart-drawer .cart-items {
        padding: 0.65rem 0.75rem !important;
    }

    .cart-drawer .cart-footer {
        max-height: 42vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ==========================================================================
   ADAPTIVE PRODUCT CARD SCALE - NO IMAGE CROP
   ========================================================================== */
.shop-section {
    padding: clamp(2rem, 3.6vw, 4.8rem) clamp(0.75rem, 3vw, 3rem) !important;
    background: #ffffff !important;
}

.product-slider {
    overflow: hidden !important;
}

.product-slider .swiper-wrapper {
    align-items: stretch !important;
}

.product-slider .swiper-slide.product-card {
    width: 74.074% !important;
}

.shop-section .product-card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.shop-section .product-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.shop-section .product-image-container {
    aspect-ratio: 4 / 5 !important;
    max-height: none !important;
    margin-bottom: 0.9rem !important;
    background: #f2f2f2 !important;
    overflow: hidden !important;
}

.shop-section .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #f2f2f2 !important;
    transform: none !important;
}

.shop-section .product-card:hover .product-image {
    transform: none !important;
}

.shop-section .product-info {
    align-items: center !important;
    min-height: 82px !important;
    padding: 0 0.35rem !important;
    text-align: center !important;
}

.shop-section .product-title {
    justify-content: center;
    min-height: 2.35em !important;
    color: #2b2f32 !important;
    font-size: clamp(0.8rem, 0.9vw, 1.02rem) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.shop-section .product-price {
    color: #111 !important;
    font-size: clamp(0.96rem, 1.05vw, 1.22rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

[data-template*="collection"] .product-grid,
[data-template*="search"] .product-grid {
    --product-grid-gap: clamp(12px, 1.2vw, 24px) !important;
    --product-grid-columns-desktop: repeat(auto-fit, minmax(clamp(230px, 18vw, 385px), 1fr)) !important;
    grid-template-columns: var(--product-grid-columns-desktop) !important;
    justify-content: stretch !important;
}

[data-template*="collection"] .product-grid__item,
[data-template*="search"] .product-grid__item {
    max-width: none !important;
}

[data-template*="collection"] :is(.product-card, .product-grid__card, .resource-card),
[data-template*="search"] :is(.product-card, .product-grid__card, .resource-card) {
    background: #ffffff !important;
    border-radius: 8px !important;
}

[data-template*="collection"] :is(.card-gallery, .product-media, .product-media-container, .resource-card__media),
[data-template*="search"] :is(.card-gallery, .product-media, .product-media-container, .resource-card__media) {
    background: #f2f2f2 !important;
}

[data-template*="collection"] :is(product-card img, .card-gallery img, .product-media img, .product-media-container img, .resource-card__image),
[data-template*="search"] :is(product-card img, .card-gallery img, .product-media img, .product-media-container img, .resource-card__image) {
    object-fit: contain !important;
    background: #f2f2f2 !important;
}

@media (min-width: 420px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 12px) / 2) !important;
    }
}

@media (min-width: 768px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 28px) / 3) !important;
    }
}

@media (min-width: 1100px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 48px) / 4) !important;
    }
}

@media (min-width: 1450px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 72px) / 5) !important;
    }
}

@media (min-width: 2100px) {
    .product-slider .swiper-slide.product-card {
        width: calc((100% - 100px) / 6) !important;
    }
}

@media (max-width: 767px) {
    .shop-section {
        padding-inline: 0.75rem !important;
    }

    .shop-section .product-title {
        font-size: 0.78rem !important;
    }

    .shop-section .product-price {
        font-size: 0.92rem !important;
    }

    [data-template*="collection"] .product-grid,
    [data-template*="search"] .product-grid {
        --product-grid-columns-desktop: repeat(2, minmax(0, 1fr)) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
}

/* Final cascade lock for the light header and hero. */
.header,
.header.scrolled,
.standard-header-group .header,
.standard-header-group .header.scrolled {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding: 0.7rem clamp(1rem, 5vw, 5rem) !important;
    background: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(18, 24, 31, 0.08) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.shamoni-announcement-bar {
    min-height: 32px !important;
    background: #050505 !important;
    border: 0 !important;
}

.announcement-marquee__track span {
    font-size: 0.7rem !important;
    line-height: 32px !important;
    color: #ffffff !important;
}

.logo-img {
    height: 56px !important;
    max-height: 56px !important;
}

.secondary-nav-wrapper {
    display: none !important;
}

.postery-light-hero {
    min-height: 210px !important;
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 5rem) clamp(2.2rem, 5vw, 4.8rem) !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(18, 24, 31, 0.06) !important;
}

.postery-light-hero__inner {
    width: min(1500px, 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.postery-light-hero__copy {
    max-width: 980px !important;
    margin: 0 auto !important;
}

.postery-light-hero h1 {
    position: relative !important;
    display: inline-block !important;
    margin: 0 !important;
    font-size: clamp(2rem, 4.2vw, 4.4rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.03em !important;
    color: #242424 !important;
    text-transform: uppercase !important;
}

.postery-light-hero h1::before,
.postery-light-hero h1::after {
    content: "";
    position: absolute;
    width: 46px;
    height: 5px;
    background: #12c9c3;
    transform: rotate(-28deg);
}

.postery-light-hero h1::before {
    left: -28px;
    bottom: 0.2em;
}

.postery-light-hero h1::after {
    right: -28px;
    bottom: -0.02em;
}

.postery-light-hero__eyebrow,
.postery-light-hero__text,
.postery-light-hero__actions,
.postery-light-hero__gallery,
.postery-light-hero__badges,
.postery-light-hero > .video-background,
.postery-light-hero > .hero-content,
.postery-light-hero > .hero-supporters {
    display: none !important;
}

@media (max-width: 767px) {
    .header,
    .header.scrolled,
    .standard-header-group .header,
    .standard-header-group .header.scrolled {
        padding: 0.55rem 0.85rem !important;
    }

    .logo-img {
        height: 38px !important;
        max-height: 38px !important;
    }

    .postery-light-hero {
        min-height: 150px !important;
        padding: 1.75rem 0.9rem 2.2rem !important;
    }

    .postery-light-hero h1 {
        font-size: clamp(1.9rem, 11vw, 3.2rem) !important;
    }

    .postery-light-hero h1::before,
    .postery-light-hero h1::after {
        width: 26px;
        height: 4px;
    }
}

/* ==========================================================================
   PURE WHITE WEBSITE BACKGROUND LOCK
   ========================================================================== */
:root {
    --bg-color: #ffffff !important;
    --bg-secondary: #ffffff !important;
    --glass-bg: #ffffff !important;
}

html,
body,
#smooth-wrapper,
#smooth-content,
#MainContent,
.content-for-layout,
.shopify-section,
.section,
.page-bg-wrapper,
.transformed-section,
.collections-section,
.shop-section,
.featured-banner-section,
.collection-wrapper,
.main-collection-grid,
.product-grid-container,
.cart-drawer,
.cart-drawer .cart-items,
.cart-drawer .cart-footer,
.drawer,
.menu-drawer,
.theme-drawer,
.footer,
footer {
    background-color: #ffffff !important;
    background-image: none !important;
}

.postery-light-hero,
.header,
.header.scrolled,
.standard-header-group .header,
.standard-header-group .header.scrolled {
    background: #ffffff !important;
}

.cart-item,
.cart-upsell,
.cart-reward-card,
.custom-cart-terms,
.continue-shopping-btn,
.product-card,
.collection-item,
.contact-form,
.customer,
.account,
.login,
.register,
.reset-password,
.recover-password {
    background-color: #ffffff !important;
}

/* ==========================================================================
   PLAIN HEADER + SECONDARY NAV RESTORE
   ========================================================================== */
.header,
.header.scrolled,
.standard-header-group .header,
.standard-header-group .header.scrolled {
    min-height: 92px !important;
    padding: 0.75rem clamp(1rem, 5vw, 5rem) !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(18, 24, 31, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.logo-img {
    height: 76px !important;
    max-height: 76px !important;
    width: auto !important;
}

.nav-link-row,
.desktop-nav > div {
    display: flex !important;
    align-items: center !important;
    gap: clamp(0.8rem, 1.4vw, 1.6rem) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.desktop-link,
.header.scrolled .desktop-link {
    padding: 0.35rem 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #20262b !important;
    font-size: clamp(0.82rem, 0.86vw, 1rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.desktop-link:hover,
.header.scrolled .desktop-link:hover,
.sec-nav-link:hover,
.sec-nav-item:hover .sec-nav-link {
    color: #000000 !important;
    background: transparent !important;
}

.secondary-nav-wrapper,
.standard-header-group .secondary-nav-wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 clamp(1rem, 5vw, 5rem) !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(18, 24, 31, 0.06) !important;
    border-bottom: 1px solid rgba(18, 24, 31, 0.08) !important;
    box-shadow: none !important;
    pointer-events: auto !important;
}

.secondary-nav-panel,
.secondary-nav-glass {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.sec-nav-list {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(1.25rem, 2vw, 2.5rem) !important;
}

.sec-nav-link {
    color: #20262b !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
}

.sec-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(18, 24, 31, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 28px rgba(18, 24, 31, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (max-width: 1024px) {
    .secondary-nav-wrapper.desktop-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .header,
    .header.scrolled,
    .standard-header-group .header,
    .standard-header-group .header.scrolled {
        min-height: 64px !important;
        padding: 0.55rem 0.85rem !important;
    }

    .logo-img {
        height: 46px !important;
        max-height: 46px !important;
    }
}

/* Final header logo sizing for landing layout */
.logo-replica {
    min-width: clamp(150px, 16vw, 260px) !important;
    align-items: center !important;
}

.logo-img {
    height: clamp(68px, 5.7vw, 96px) !important;
    max-height: 96px !important;
    width: auto !important;
    max-width: min(300px, 28vw) !important;
    object-fit: contain !important;
}

.header,
.header.scrolled,
.standard-header-group .header,
.standard-header-group .header.scrolled {
    min-height: clamp(84px, 6.5vw, 112px) !important;
    background: #ffffff !important;
}

@media (max-width: 767px) {
    .logo-replica {
        min-width: clamp(126px, 40vw, 180px) !important;
    }

    .logo-img {
        height: clamp(54px, 15vw, 70px) !important;
        max-height: 70px !important;
        max-width: min(190px, 42vw) !important;
    }

    .header,
    .header.scrolled,
    .standard-header-group .header,
    .standard-header-group .header.scrolled {
        min-height: 76px !important;
        padding: 0.45rem 0.75rem !important;
    }
}
