/* 
    NEXTWEAR - Premium Accessories Design System
    Shoes | Watches | Glasses | Caps
    Target: Pakistan Market, Mobile-First
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --impact-dark: #0d0d0d;
    --impact-light: #f5f7fa;
    --impact-accent: #00d4aa;
    /* Official Nextwear Teal */
    --impact-accent-text: #0d0d0d;
    --impact-bg-light: #f5f7fa;
    --accent-glow: rgba(0, 212, 170, 0.25);
    --accent-secondary: #ff6b35;
    /* Orange — Sales & Urgency */

    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    /* Official NEXTWEAR Off-White */
    --text-primary: #0d0d0d;
    --text-secondary: #666666;
    --border-color: rgba(0, 0, 0, 0.06);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #0a1f1a 50%, #0d0d0d 100%);
    --gradient-shoes: linear-gradient(135deg, #00d4aa, #00b894);
    --gradient-watches: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-glasses: linear-gradient(135deg, #fd79a8, #e84393);
    --gradient-caps: linear-gradient(135deg, #fdcb6e, #f39c12);

    /* Spacing System */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-15: 3.75rem;
    --sp-20: 5rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Rounding */
    --round-sm: 4px;
    --round-md: 16px;
    --round-lg: 24px;
    --round-full: 9999px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
}

h1,
h2,
h3,
h4,
.heading-font {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* SVG Icon Utilities */
.ico {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Fill-based brand icons (WhatsApp, Facebook, TikTok) */
.ico-fill {
    fill: currentColor;
    stroke: none;
}

.ico-sm {
    width: 0.85em;
    height: 0.85em;
}

.ico-lg {
    width: 1.4em;
    height: 1.4em;
}

.ico-xl {
    width: 2em;
    height: 2em;
}

.ico-2xl {
    width: 2.5em;
    height: 2.5em;
}

.ico-accent {
    color: var(--impact-accent);
}

.ico-white {
    color: #fff;
}

.ico-muted {
    color: #888;
}

/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    stroke: none;
}

.wa-float-label {
    position: absolute;
    right: 72px;
    background: var(--bg-primary);
    color: #0d0d0d;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.wa-float:hover .wa-float-label {
    opacity: 1;
}

/* Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--sp-12);
    /* Sleek 48px margin for a modern, impactful look */
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

/* --- THEME SECTIONS --- */

/* Announcement Bar */
.announcement-bar {
    background: var(--impact-dark);
    color: white;
    padding: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
}

.announcement-scroll {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
    height: 100%;
}

.announcement-scroll span {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    height: 100%;
    line-height: 1;
}

.announcement-scroll span .ico {
    vertical-align: middle;
    margin-right: 5px;
    flex-shrink: 0;
}

.announcement-scroll .accent {
    color: var(--impact-accent);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

/* Staggered Delay for Grid Items */
.product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:nth-child(3) {
    transition-delay: 0.2s;
}

.product-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Announcement Bar Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
    border-bottom: none;
}

/* Transparent state: white text over hero gradient */
.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .header-icon-btn {
    color: #ffffff;
}
.header:not(.scrolled) .nw-wordmark-svg {
    color: #ffffff;
}
.header:not(.scrolled) .cart-dot {
    background: var(--bg-primary);
    color: var(--impact-dark);
}

.header.scrolled {
    position: fixed;
    top: 0;
    animation: slideDownHeader 0.3s ease-out forwards;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

@keyframes slideDownHeader {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.header.scrolled .nav-link,
.header.scrolled .header-icon-btn {
    color: var(--text-primary);
}
.header.scrolled .nw-wordmark-svg {
    color: var(--text-primary);
}
.header.scrolled .cart-dot {
    background: var(--impact-dark);
    color: white;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.header .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .nav-desktop {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Modern spacing for premium look */
}

.header .header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--sp-4);
}

.mobile-only {
    display: none !important;
}

@media (max-width: 600px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.logo h1 {
    font-weight: 800;
    letter-spacing: 5px;
}

/* NEXTWEAR SVG Wordmark */
.nw-wordmark-svg {
    display: inline-flex;
    height: 48px;
    /* Increased desktop size */
    align-items: center;
    color: #0d0d0d;
    text-decoration: none !important;
}

.nw-wordmark-svg:hover {
    opacity: 0.85;
}

.nw-wordmark-svg svg {
    height: 100%;
    width: auto;
}

/* Footer / dark-bg variant */
.footer .nw-wordmark-svg,
.nw-wordmark--dark {
    color: #ffffff;
    height: 52px;
}

/* Slogan */
.nw-slogan {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    display: block;
}

.nw-slogan--light {
    color: rgba(0, 0, 0, 0.35);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}
.nav-link.active {
    color: var(--text-primary);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--impact-accent);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    opacity: 0.4;
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover svg {
    transform: translateY(2px);
}

/* Header Action Icons */
.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    padding: 8px;
}

.header-icon-btn:hover {
    opacity: 0.6;
}

.header-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.cart-dot {
    position: absolute;
    top: 2px;
    right: 0px;
    background: var(--impact-dark);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    width: 100%;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    background: var(--hero-bg, linear-gradient(135deg, #e8e8e8 0%, #dcdcdc 50%, #d0d0d0 100%));
    transition: background 1.2s ease;
}

.hero-inner {
    padding: 72px 0 72px 0;
}

.hero-slider { position: relative; width: 100%; min-height: 600px; height: 75vh; max-height: 800px; border-radius: 16px; overflow: hidden; }

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active { opacity: 1; visibility: visible; z-index: 10; }

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s linear;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.05);
}

/* Themed Hero Slides (Adaptive Colors) */
.hero-slide-themed {
    background: var(--impact-bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-12);
    min-height: inherit;
    overflow: hidden;
    /* position: relative removed — .hero-slide already sets position: absolute,
       which is required for slides to stack. Overriding with relative breaks the carousel. */
}

/* Background Textures */
.hero-slide-themed::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

.hero-slide-themed::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 170, 0.02) 40%, rgba(0, 212, 170, 0.02) 45%, transparent 45%, transparent 50%, rgba(0,0,0,0.01) 50%, rgba(0,0,0,0.01) 60%, transparent 60%);
    z-index: 1;
    transform: rotate(-15deg);
}

.hero-slide-themed .hero-content {
    text-align: left;
    max-width: 500px;
    padding: 0;
    z-index: 5;
}

.hero-slide-themed .hero-btns {
    justify-content: flex-start;
}

.hero-slide-themed .hero-product-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    z-index: 4;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.hero-slide-themed.active .hero-product-img {
    opacity: 1;
    animation: float 6s ease-in-out infinite;
}


.hero-slide-themed .hero-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: var(--sp-8);
    color: var(--impact-accent);
}

.hero-slide-themed .hero-heading-large {
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: var(--sp-4);
    font-weight: 800;
}

.hero-slide-themed .hero-heading-line {
    width: 60px;
    height: 4px;
    background: var(--impact-accent);
    margin-bottom: var(--sp-8);
}

.hero-watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes float {
  0% { transform: translateY(-50%) rotate(-8deg); }
  50% { transform: translateY(-55%) rotate(-8deg); }
  100% { transform: translateY(-50%) rotate(-8deg); }
}



.hero-btns {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: 40px;
}

.hero-btns .btn {
    border-radius: 999px;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-btns .btn-primary {
    background: var(--impact-accent);
    color: white;
    border: none;
}

.hero-btns .btn-outline {
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.02);
    color: #444;
}

.hero-btns .btn-outline:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    z-index: 10;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    border-right: 1px solid rgba(0,0,0,0.08);
    padding-right: var(--sp-8);
}

.hero-feature-item:last-child {
    border-right: none;
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--impact-accent);
}

.hero-feature-info h5 {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: #1a2a3a; /* Locked dark color for visibility */
}

.hero-feature-info p {
    font-size: 0.75rem;
    color: #5B8EB5; /* Muted blue-gray for subtext */
    margin: 0;
}

.hero-slide-themed .hero-overlay {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: var(--sp-6);
    min-height: 320px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    text-transform: uppercase;
    margin-bottom: var(--sp-6);
    letter-spacing: -0.03em;
}

/* Slider Progress Indicators */
.hero-progress {
    position: absolute;
    bottom: var(--sp-12);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: -25px;
    bottom: -25px;
    left: -10px;
    right: -10px;
    z-index: 10;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--impact-accent);
}

.progress-line.active::after {
    animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* ============================
   HERO — CINEMATIC MODIFIER (IMAGE-BASED REDESIGN)
   ============================ */

/* Force Edge-to-Edge for Cinematic Hero */
.hero--cinematic .hero-inner {
    padding: 0 !important;
}
.hero--cinematic .container {
    padding: 0 !important;
    max-width: 100% !important;
}

.hero--cinematic {
    background: #050707 !important;
}

.hero--cinematic .hero-slider {
    border-radius: 0;
    min-height: 720px;
    height: 85vh;
    max-height: 900px;
}

.hero--cinematic .hero-slide-themed.is-image-bg {
    background-color: #050707 !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    background-image: var(--bg-desktop) !important;
    --slide-bg: none;
    display: flex;
    flex-direction: row !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 100px 48px 48px 48px !important;
    align-items: center;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    overflow: hidden;
}

@media (min-width: 1440px) {
    .hero--cinematic .hero-slide-themed.is-image-bg {
        padding-left: calc((100% - 1440px) / 2 + 48px) !important;
    }
}

.hero--cinematic .hero-slide-themed.bg-aviator {
    background-size: contain !important;
    background-position: center right !important;
}

/* Content Area */
.hero--cinematic .hero-content {
    max-width: 600px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    /* Use text-shadow instead of a background box to protect legibility without hard edges */
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero--cinematic .hero-slide-themed.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

/* Typography Updates */
.hero--cinematic .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.7;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero--cinematic .hero-heading-large {
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
}

.hero--cinematic .hero-heading-large .line1 {
    font-size: clamp(72px, 7vw, 110px);
    font-weight: 800;
    color: white;
}

.hero--cinematic .hero-heading-large .line2 {
    font-size: clamp(72px, 7vw, 110px);
    font-weight: 800;
    color: var(--impact-accent);
}

.hero--cinematic .hero-desc {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.hero--cinematic .hero-price {
    font-size: 56px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 40px;
}

/* CTA Buttons */
.hero--cinematic .hero-btns {
    display: flex;
    gap: 16px;
}

.hero--cinematic .btn-primary {
    background: var(--impact-accent) !important;
    color: var(--impact-accent-text) !important;
    border-radius: 999px !important;
    padding: 18px 42px !important;
    font-weight: 700 !important;
    border: none;
    transition: all 0.3s ease;
}

.hero--cinematic .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,212,170,0.25);
}

.hero--cinematic .btn-outline {
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: transparent !important;
    color: white !important;
    border-radius: 999px !important;
    padding: 18px 42px !important;
}

.hero--cinematic .btn-outline:hover {
    background: rgba(255,255,255,0.05) !important;
}

.hero--cinematic .hero-slide-themed.is-image-bg .hero-overlay { display: none !important; }
.hero--cinematic .hero-slide-themed.is-image-bg .hero-features { display: none !important; }
.hero--cinematic .hero-slide-themed.is-image-bg .hero-heading-line { display: none !important; }
.hero--cinematic .hero-slide-themed.is-image-bg .hero-watermark { display: none !important; }
.hero--cinematic .hero-slide-themed.is-image-bg .hero-artwork { display: none !important; }

/* Mobile Version */
@media (max-width: 991px) {

    .hero--cinematic .hero-slider {
        height: 85vh !important;
        min-height: 600px !important;
    }
    .hero--cinematic .hero-slide-themed {
        height: 100% !important;
    }

    .hero--cinematic .hero-slide-themed.is-image-bg {
        padding: 48px 24px;
        height: auto;
        min-height: 600px;
        align-items: flex-start;
        background-position: center bottom !important;
        background-image: var(--bg-mobile) !important;
    }
    
    .hero--cinematic .hero-content {
        text-align: left;
        padding: 20px;
        margin-left: 0;
        text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    }
    
    .hero--cinematic .hero-price {
        font-size: 40px;
        margin-bottom: 24px;
    }
    
    .hero--cinematic .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero--cinematic .hero-heading-large .line1, 
    .hero--cinematic .hero-heading-large .line2 {
        font-size: clamp(48px, 12vw, 72px);
    }
}

/* Hero Mobile Responsive — All Styles */
@media (max-width: 768px) {
    .hero-inner { padding: 40px 0; }
    
    .hero-slider {
        min-height: 520px;
        height: auto;
        max-height: none;
    }

    .hero-slide-themed {
        flex-direction: column;
        padding: var(--sp-8) var(--sp-6);
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .hero-slide-themed .hero-content {
        text-align: center;
        max-width: 100%;
        z-index: 5;
        padding-top: var(--sp-4);
    }

    .hero-slide-themed .hero-heading-large {
        font-size: clamp(40px, 12vw, 64px);
        letter-spacing: -2px;
    }

    .hero-slide-themed .hero-heading-line {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-slide-themed .hero-product-img {
        position: relative;
        right: auto;
        top: auto;
        max-height: 220px;
        width: 100%;
        object-fit: contain;
        margin: 60px auto var(--sp-4) auto !important;
        transform: rotate(-5deg);
        max-width: 320px;
        opacity: 1;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
    }

    .hero-slide-themed.active .hero-product-img {
        opacity: 1;
        animation: floatMobile 5s ease-in-out infinite;
    }

    .hero-watermark {
        font-size: clamp(60px, 20vw, 120px);
        top: auto;
        bottom: 15%;
        right: 50%;
        transform: translateX(50%);
        opacity: 0.03;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btns .btn {
        padding: 14px 28px;
        font-size: 0.78rem;
    }

    .hero-slide-themed .hero-price {
        font-size: 1.6rem;
    }

    .hero-features.desktop-only {
        display: none;
    }
}

@keyframes floatMobile {
    0% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
    100% { transform: rotate(-5deg) translateY(0); }
}

@media (max-width: 480px) {
    .hero-slider { min-height: 480px; }
    .hero-slide-themed { padding: var(--sp-6) var(--sp-4); }
    .hero-slide-themed .hero-heading-large { font-size: clamp(32px, 13vw, 48px); }
    .hero-slide-themed .hero-product-img { width: 70%; max-width: 260px; }
    .hero-slide-themed .hero-price { font-size: 1.3rem; }
    .hero-btns .btn { padding: 12px 22px; font-size: 0.75rem; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--sp-4) var(--sp-12);
    border-radius: var(--round-full);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--impact-accent);
    color: var(--impact-accent-text);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-dark {
    background: var(--impact-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--impact-dark);
    transform: scale(1.02);
}

/* --- Product Page Optimized Button & Layout Classes --- */
.pd-buy-now {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--impact-accent) !important;
    color: var(--impact-accent-text) !important;
    border-radius: var(--round-full) !important;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.pd-buy-now:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.pd-add-cart {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent !important;
    border: 2px solid var(--text-primary) !important;
    color: var(--text-primary) !important;
    margin-bottom: 10px;
    border-radius: var(--round-full) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.pd-add-cart:hover {
    background: var(--text-primary) !important;
    color: white !important;
}

.pd-wishlist-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: var(--round-full);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    color: var(--text-primary);
}
.pd-wishlist-btn:hover {
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.02);
}

.pd-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.pd-whatsapp-link:hover {
    opacity: 0.8;
}

.pd-whatsapp-notify-btn {
    width: 100%;
    padding: 18px;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    text-align: center;
    background: #25d366 !important;
    color: white !important;
    font-weight: 700;
    border-radius: var(--round-full) !important;
    transition: all 0.3s ease;
}
.pd-whatsapp-notify-btn:hover {
    background: #20ba5a !important;
}

.checkout-psychology-trust {
    margin-bottom: var(--sp-4);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.size-btn.selected {
    border-color: var(--impact-dark) !important;
    background: var(--impact-dark) !important;
    color: white !important;
}
.size-btn.selected .size-main {
    color: #fff !important;
}
.size-btn.selected .size-sub {
    color: rgba(255, 255, 255, 0.75) !important;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-sale {
    background: var(--accent-secondary);
    color: white;
}

/* Category Showcase */
.categories-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    padding: var(--sp-10) 0 var(--sp-20) 0;
}

.category-card {
    position: relative;
    border-radius: 12px;
    background: var(--impact-dark);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid #eaeaea;
    color: #ffffff !important;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%);
    z-index: 2;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
    color: #ffffff;
}

.category-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    color: #ffffff;
}

.category-card-content p,
.category-card-content .category-badge {
    display: none;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--sp-6);
    padding: var(--sp-12) 0;
}

.product-card {
    border-radius: var(--round-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Slider Mode Styles */
.product-slider-container {
    position: relative;
    padding: 0 var(--sp-2);
}

.product-grid.slider-mode {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: var(--sp-6);
    padding: var(--sp-4) 0 var(--sp-12);
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.product-grid.slider-mode::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.product-grid.slider-mode .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    /* Move slightly up to center with image area */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    box-shadow: none;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: #000;
}

.slider-arrow:hover {
    background: var(--bg-secondary);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.slider-arrow-left {
    left: -22px;
}

.slider-arrow-right {
    right: -22px;
}

.view-all-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.view-all-link:hover {
    color: var(--impact-accent);
    border-bottom-color: var(--impact-accent);
}

@media (max-width: 900px) {
    .slider-arrow {
        display: none;
    }

    .product-slider-container {
        padding: 0;
    }

    .product-grid.slider-mode .product-card {
        flex: 0 0 240px;
    }
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.product-image picture,
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: var(--bg-primary);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Overrides for specific categories matching photography brand guidelines */
.product-card.category-watches .product-image picture,
.product-card.category-watches .product-image img {
    object-fit: cover;
    padding: 0;
}

.product-image picture.secondary-img,
.product-image img.secondary-img {
    opacity: 0;
}

.product-card:hover .product-image picture.secondary-img,
.product-card:hover .product-image img.secondary-img {
    opacity: 1;
}

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

.product-badge {
    position: relative;
    padding: 4px 12px;
    border-radius: var(--round-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    background: var(--accent-secondary);
    color: white;
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--sp-1);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-price {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.product-price .original-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: var(--sp-2);
}

/* Product Detail Page Price */
.product-price-large {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.product-price-large .original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 1.15rem;
}
.save-tag {
    display: inline-flex;
    align-items: center;
    background: var(--impact-accent, #00d4aa);
    color: #0d0d0d;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-category-label {
    font-size: 0.7rem;
    color: var(--impact-accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-secondary);
    padding: var(--sp-12) 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-8);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
}

.trust-icon {
    font-size: 2rem;
}

.trust-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section Headers */
.section-padding-mobile {
    padding: var(--sp-20) 0;
    /* 80px padding for desktop breathing room */
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-14);
    padding: 0;
}

.section-header p {
    margin: 0;
    color: var(--text-secondary);
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.section-header .accent {
    color: var(--impact-accent);
}

/* Sticky Bottom-Right Cart Card */
.sticky-cart-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    pointer-events: none;
    max-width: 420px;
    width: auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.sticky-cart-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.sticky-cart-inner {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.sticky-cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}
.sticky-cart-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    background: var(--bg-secondary);
}
.sticky-cart-info {
    min-width: 0;
}
.sticky-cart-name {
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    line-height: 1.3;
}
.sticky-cart-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    flex-wrap: nowrap;
}
.sticky-cart-price .original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.68rem;
}
.sticky-cart-price .discount-info {
    color: var(--impact-accent);
    font-size: 0.62rem;
    font-weight: 800;
}
.sticky-cart-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 6px;
}
.sticky-cart-btn:hover {
    opacity: 0.85;
}

/* Shift WhatsApp float up when sticky card is visible */
.sticky-cart-bar.visible ~ .wa-float {
    bottom: 110px;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 600px) {
    .sticky-cart-bar {
        right: 0;
        bottom: 0;
        left: 0;
        max-width: none;
        border-radius: 16px 16px 0 0;
        height: 80px;
        border-bottom: none;
    }
    .sticky-cart-inner {
        padding: 0 16px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .sticky-cart-product {
        flex: unset;
        min-width: unset;
    }
    .sticky-cart-thumb, .sticky-cart-name {
        display: none; /* Spec: simplify to just Price and CTA on mobile */
    }
    .sticky-cart-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sticky-cart-price {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .sticky-cart-price .original {
        font-size: 0.75rem;
    }
    .sticky-cart-price .discount-info {
        display: none;
    }
    .sticky-cart-btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        border-radius: var(--round-full);
        flex-shrink: 0;
    }
    .sticky-cart-bar.visible ~ .wa-float {
        bottom: 100px;
    }
}

/* Footer */
.footer {
    background: var(--impact-dark);
    color: white;
    padding: var(--sp-20) 0 var(--sp-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--sp-12);
    margin-bottom: var(--sp-20);
}

.footer-brand p {
    color: #888;
    margin-top: var(--sp-3);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand .brand-flag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
    color: var(--impact-accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.footer h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-6);
    color: var(--impact-accent);
}

.footer-link {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: var(--sp-3);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: var(--sp-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: var(--sp-4);
}

.footer-socials a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--impact-accent);
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }

    .categories-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .nav-desktop {
        display: none;
    }

    .header {
        padding: 0 var(--sp-4);
    }

    .menu-btn {
        display: flex !important;
    }
}

@media (max-width: 600px) {

    /* Horizontal Scroll for Categories */
    .categories-showcase {
        display: flex;
        overflow-x: auto;
        gap: var(--sp-4);
        padding: 0 16px var(--sp-4) 16px;
        /* Match container padding */
        margin: 0 -16px;
        /* Break out of container to align first item */
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .categories-showcase::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        aspect-ratio: 1/1;
    }

    /* Standard Grid for Category Pages - 2 Columns */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
        padding: var(--sp-4) 0;
        /* Only top/bottom, sides handled by .container */
    }

    /* Slider Mode for Home Page - Horizontal Scroll */
    .product-grid.slider-mode {
        display: flex;
        overflow-x: auto;
        gap: var(--sp-4);
        padding: 0 16px var(--sp-4) 16px;
        /* Match container padding */
        margin: 0 -16px;
        /* Break out of container to align first item */
        scroll-padding-left: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-grid.slider-mode::-webkit-scrollbar {
        display: none;
    }

    .product-grid.slider-mode .product-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-6) var(--sp-4);
    }

    .footer-grid .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: var(--sp-2);
        text-align: center;
    }
    
    .footer-connect {
        grid-column: 1 / -1;
        margin-top: var(--sp-2);
    }
    .footer-connect .connect-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 var(--sp-4);
    }

    .footer {
        padding: var(--sp-8) 0;
        padding-bottom: 90px; /* Space for WhatsApp float */
    }

    .footer h4 {
        margin-bottom: var(--sp-3);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--sp-3);
        text-align: center;
        padding-top: var(--sp-6);
        font-size: 0.75rem;
    }
    
    .footer-bottom .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile Header Fixes */
    .header {
        height: 64px;
        padding: 0;
        /* Horizontal padding now handled by .container inside */
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* Keeps left-side and right-side containers at edges */
        position: absolute;
        width: 100%;
    }
    .header.scrolled {
        /* position: sticky is removed, global class handles fixed animation */
    }

    .header-left {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .menu-btn {
        display: flex;
        padding: 8px;
        margin: 0;
    }

    .header .logo {
        flex: 0 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        margin-right: 0;
        order: 2;
    }

    .header-left {
        order: 1;
    }

    .header-actions {
        order: 3;
    }

    .header .nav-desktop {
        display: none;
    }

    .header-actions {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .header-actions>a[aria-label="Account"] {
        display: none;
        /* Hide account icon on mobile to match Impact */
    }

    .nw-wordmark-svg {
        height: 40px !important;
        /* Increased mobile size */
    }

    /* Mobile Hero Floating Card */
    .hero {
        height: auto;
        min-height: auto;
        padding: 12px 0 16px 0;
        /* Horizontal padding handled by .container */
        background: var(--bg-primary);
    }

    .hero-slider {
        position: relative;
        height: 75vh;
        min-height: 550px;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-content {
        padding: var(--sp-4);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Mobile Themed Hero Overrides */
    .hero-slide-themed {
        flex-direction: column-reverse;
        justify-content: center;
        padding: var(--sp-6);
        text-align: center;
    }

    .hero-slide-themed .hero-content {
        text-align: center;
        max-width: 100%;
        margin-top: var(--sp-4);
    }

    .hero-slide-themed .hero-product-img {
        position: relative;
        right: auto;
        top: auto;
        max-height: 220px;
        width: 100%;
        object-fit: contain;
        margin: 60px auto var(--sp-4) auto !important;
    }

    .hero-slide-themed.active .hero-product-img {
        transform: scale(1) rotate(0deg);
    }

    .hero-slide-themed .hero-price {
        font-size: 1.8rem;
    }

    /* Balanced section spacing and alignment on mobile */
    .section-padding-mobile {
        padding: var(--sp-24) 0 !important;
        /* Professional large gap like Shopify */
        text-align: left;
    }

    .section-header {
        text-align: left;
        margin-bottom: var(--sp-6);
    }

    .section-header p {
        margin: 0;
    }
}

/* Mobile Side Drawer */
.menu-btn {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--sp-2);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 10001;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.side-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 1px solid #f0f0f0;
}

.drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: var(--sp-2);
}

.drawer-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: var(--sp-6) var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.drawer-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    transition: color 0.2s;
}

.drawer-nav a:hover {
    color: var(--impact-accent);
}

.drawer-footer {
    padding: var(--sp-6) var(--sp-8);
    background: var(--bg-secondary);
}

/* ============================
   MEGA MENU DROPDOWN
   ============================ */
.nav-mega-wrap { position: relative; }
.nav-mega-wrap .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 680px;
    background: var(--bg-primary);
    border: 1px solid #eee;
    border-top: 3px solid var(--impact-accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    transform: translateX(-50%) translateY(10px);
}
.nav-mega-wrap:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-menu-img {
    border-radius: 0 0 0 12px;
    overflow: hidden;
    position: relative;
}
.mega-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mega-menu-img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.mega-menu-links {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mega-menu-links h5 {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    margin-bottom: 14px;
}
.mega-menu-links a {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}
.mega-menu-links a:hover {
    color: var(--impact-accent);
    padding-left: 6px;
}
.mega-menu-links .mega-shop-all {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-weight: 700;
    color: var(--impact-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* ============================
   DEAL BANNER
   ============================ */
.deal-banner {
    background: linear-gradient(135deg, var(--impact-accent), #0d9488);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}
.deal-banner.active { display: flex; }
.deal-banner:hover { background: linear-gradient(135deg, #0d9488, #0f766e); }
.deal-banner .deal-icon { font-size: 1.1rem; }
.deal-banner .deal-cta {
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* ============================
   SEARCH OVERLAY (Side Drawer)
   ============================ */
.search-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.search-overlay-backdrop.active { opacity: 1; visibility: visible; }
.search-overlay {
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 520px;
    max-width: calc(90vw - 20px);
    height: auto;
    background: var(--bg-primary);
    z-index: 10002;
    transform: translateX(calc(100% + 20px));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    overflow: hidden;
    border-radius: 12px;
}
.search-overlay.active { transform: translateX(0); }
.search-overlay-header {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    gap: 16px;
    border-bottom: 1px solid #eee;
}
.search-overlay-input {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
}
.search-overlay-input::placeholder { color: #bbb; }
.search-overlay-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.search-overlay-close:hover { transform: rotate(90deg); }
.search-overlay-close svg { width: 22px; height: 22px; }
.search-overlay-body {
    flex: 1;
    padding: 24px 28px;
    width: 100%;
    overflow-y: auto;
}
.search-overlay-body h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    margin-bottom: 20px;
}
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.search-result-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s;
}
.search-result-card:hover { transform: translateY(-4px); }
.search-result-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info h3 { font-size: 0.9rem; font-weight: 600; margin: 0; }
.search-result-info p { font-size: 0.8rem; color: #999; margin: 2px 0 0; }
.search-result-info .search-price { font-weight: 800; color: var(--text-primary); font-size: 0.95rem; }
.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.search-no-results .search-no-icon { font-size: 3rem; margin-bottom: 16px; }

@media (max-width: 600px) {
    .search-overlay { max-width: 100vw; width: 100%; }
    .search-overlay-header { padding: 16px 20px; }
    .search-overlay-input { font-size: 1.1rem; }
    .search-overlay-body { padding: 24px 20px; }
    .search-results-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================
   CART DRAWER (Impact-style)
   ============================ */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.cart-drawer-backdrop.active { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 460px;
    max-width: calc(90vw - 20px);
    height: auto;
    background: var(--bg-primary);
    z-index: 10002;
    transform: translateX(calc(100% + 20px));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    overflow: hidden;
    border-radius: 12px;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid #eee;
}
.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.cart-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.cart-drawer-close:hover { transform: rotate(90deg); }
.cart-drawer-close svg { width: 22px; height: 22px; }
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 28px;
    text-align: center;
}
.cart-drawer-items { padding: 0; }
.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}
.cart-drawer-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cart-drawer-item-info .cart-item-price {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0 0 10px;
}
.cart-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}
.cart-drawer-item-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cart-drawer-item-qty button:hover { background: var(--bg-secondary); }
.cart-drawer-item-qty span {
    width: 36px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}
.cart-drawer-item-remove {
    border: none;
    background: none;
    cursor: pointer;
    color: #ccc;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
}
.cart-drawer-item-remove:hover { color: #ef4444; }
.cart-drawer-item-remove svg { width: 18px; height: 18px; }
.cart-drawer-footer {
    padding: 20px 28px;
    border-top: 1px solid #eee;
    background: var(--bg-primary);
}
.cart-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.cart-drawer-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.cart-drawer-viewcart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    color: var(--text-primary);
    background: transparent;
}

/* ============================
   PRODUCT CARD BADGES
   ============================ */
/* Badge Stacking Wrapper */
.product-badges-wrapper {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 5;
    pointer-events: none;
}

.product-badge-sale {
    position: relative;
    padding: 4px 10px;
    border-radius: var(--round-full);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 5;
    background: #ef4444;
    color: white;
}
.product-badge-new {
    position: relative;
    padding: 4px 10px;
    border-radius: var(--round-full);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 5;
    background: var(--impact-dark);
    color: white;
}
.product-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
}
.product-stars svg { width: 12px; height: 12px; }
.product-stars .star-filled { fill: #f59e0b; stroke: #f59e0b; }
.product-stars .star-empty { fill: none; stroke: #d1d5db; }
.product-stars .star-count { font-size: 0.7rem; color: #999; margin-left: 4px; font-weight: 600; }

/* ============================
   PRODUCT PAGE — TRUST BADGES
   ============================ */
.trust-badges-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: var(--sp-6) 0;
}
.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: var(--round-md);
    border-left: 4px solid var(--impact-accent);
    transition: transform 0.2s;
}
.trust-badge-card:hover { transform: translateX(4px); }
.trust-badge-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.trust-badge-text h5 {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.trust-badge-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 2px 0 0;
}

/* ============================
   PRODUCT PAGE — ACCORDION
   ============================ */
.pd-accordion {
    margin-top: var(--sp-12);
    border-top: 1px solid #eee;
}
.pd-accordion-item { border-bottom: 1px solid #eee; }
.pd-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    font-family: inherit;
    transition: color 0.2s;
}
.pd-accordion-header:hover { color: var(--impact-accent); }
.pd-accordion-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.pd-accordion-item.open .pd-accordion-chevron { transform: rotate(180deg); }
.pd-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-accordion-item.open .pd-accordion-body { max-height: 600px; }
.pd-accordion-content {
    padding: 0 0 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-wrap;
}

/* ============================
   PRODUCT PAGE — REVIEWS
   ============================ */
.reviews-section {
    padding: var(--sp-12) 0;
}
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--sp-8);
}
.reviews-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.reviews-stars-big { display: flex; gap: 2px; }
.reviews-stars-big svg { width: 22px; height: 22px; fill: #f59e0b; stroke: #f59e0b; }
.reviews-count-text { font-size: 0.85rem; color: var(--text-secondary); }
.review-card {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.review-card:last-child { border-bottom: none; }
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.review-author { font-weight: 700; font-size: 0.95rem; }
.review-date { font-size: 0.75rem; color: #999; }
.review-stars { display: flex; gap: 1px; margin-bottom: 8px; }
.review-stars svg { width: 14px; height: 14px; fill: #f59e0b; stroke: #f59e0b; }
.review-stars svg.empty { fill: #e5e7eb; stroke: #e5e7eb; }
.review-comment { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================
   PRODUCT PAGE — UPSELL / CROSS-SELL
   ============================ */
.upsell-section {
    padding: var(--sp-16) 0 var(--sp-12);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.upsell-card {
    background: var(--bg-primary);
    border-radius: var(--round-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.upsell-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.upsell-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-secondary);
    display: block;
}
.upsell-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.upsell-card:hover .upsell-card-img img {
    transform: scale(1.05);
}
.upsell-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.upsell-card-body h4 {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.upsell-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.upsell-card-price .current {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
}
.upsell-card-price .original {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}
.upsell-card-price .discount-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--impact-accent);
}
.upsell-add-btn {
    margin-top: auto;
    width: 100%;
    border: 2px solid var(--impact-dark);
    background: none;
    color: var(--impact-dark);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 10px 16px;
    border-radius: var(--round-full);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.upsell-add-btn:hover {
    background: var(--impact-dark);
    color: white;
}

@media (max-width: 900px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .upsell-card-body {
        padding: 12px;
    }
    .upsell-card-body h4 {
        font-size: 0.72rem;
    }
    .upsell-card-price .current {
        font-size: 0.8rem;
    }
}

/* ============================
   STICKY PRODUCT BAR
   ============================ */
.sticky-product-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 0;
}
.sticky-product-bar.visible { bottom: 0; }
.sticky-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--sp-12);
    display: flex;
    align-items: center;
    gap: 16px;
}
.sticky-bar-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}
.sticky-bar-img img { width: 100%; height: 100%; object-fit: cover; }
.sticky-bar-info { flex: 1; min-width: 0; }
.sticky-bar-info h4 { font-size: 0.85rem; font-weight: 700; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-bar-info p { font-size: 0.95rem; font-weight: 800; margin: 2px 0 0; }
.sticky-bar-btn {
    padding: 12px 32px;
    background: var(--impact-accent);
    color: white;
    border: none;
    border-radius: var(--round-full);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    white-space: nowrap;
}
.sticky-bar-btn:hover { transform: scale(1.05); box-shadow: 0 8px 20px var(--accent-glow); }

@media (max-width: 600px) {
    .sticky-bar-inner { padding: 0 16px; }
    .sticky-bar-btn { padding: 10px 20px; font-size: 0.75rem; }
}

/* ============================
   HOMEPAGE — IN DEMAND SECTION
   ============================ */
.in-demand-section {
    padding: var(--sp-20) 0;
    background: var(--bg-primary);
}

/* ============================
   HOMEPAGE — SUMMER ESSENTIALS
   ============================ */
.summer-section {
    padding: var(--sp-20) 0;
    background: var(--bg-secondary);
}
.summer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
}
.summer-card {
    position: relative;
    border-radius: var(--round-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s;
}
.summer-card:hover { transform: translateY(-4px); }
.summer-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25,1,0.5,1);
}
.summer-card:hover .summer-card-bg { transform: scale(1.05); }
.summer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 2;
}
.summer-card-content {
    position: relative;
    z-index: 3;
    padding: 28px;
    width: 100%;
}
.summer-card-content h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 4px; }
.summer-card-content p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

@media (max-width: 600px) {
    .summer-grid { grid-template-columns: 1fr; }
    .summer-card { aspect-ratio: 16/10; }
}

/* ============================
   HOMEPAGE — PRODUCT SPOTLIGHT
   ============================ */
.spotlight-section {
    padding: var(--sp-20) 0;
    background: var(--bg-secondary); /* Grey background behind the white card */
}
.spotlight-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-12);
    background: var(--bg-primary); /* White card */
    border-radius: var(--round-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06); /* Subtle depth */
    overflow: hidden;
    padding: var(--sp-10);
    align-items: center;
}
.spotlight-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.spotlight-card:hover .spotlight-img img { transform: scale(1.03); }
.spotlight-info {
    padding: var(--sp-12);
}
.spotlight-label {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--impact-accent);
    margin-bottom: var(--sp-4);
}
.spotlight-info h2 {
    font-size: 2.5rem;
    margin-bottom: var(--sp-3);
    text-transform: uppercase;
}
.spotlight-info .spotlight-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--sp-6);
    color: var(--text-primary);
}
.spotlight-info .spotlight-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--sp-8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.spotlight-info .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    min-width: 160px;
    font-size: 0.85rem;
    line-height: 1;
    box-sizing: border-box;
    text-align: center;
    font-family: inherit;
}

@media (max-width: 768px) {
    .spotlight-card { grid-template-columns: 1fr; }
    .spotlight-info { padding: var(--sp-8); }
    .spotlight-info h2 { font-size: 1.8rem; }
}

/* ============================
   GLOBAL POLISH & ANIMATIONS
   ============================ */
/* Section reveal animation */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.section-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Save badge (discount) pulse animation */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.product-badge-sale { animation: badgePulse 2s infinite; }

/* Smooth hover for all buttons */
.btn { transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Footer link icon alignment */
.footer-link { display: flex; align-items: center; gap: 8px; }

/* ============================
   RESPONSIVE: MOBILE POLISH
   ============================ */

/* --- Category Showcase: centered on all sizes --- */
@media (max-width: 600px) {
    .categories-showcase {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: var(--sp-4) 0 !important;
        margin: 0 !important;
        overflow-x: visible !important;
    }
    .category-card {
        flex: none !important;
        aspect-ratio: 1/1.1 !important;
        scroll-snap-align: none !important;
    }
    .category-card-content { padding: 14px; }
    .category-card-content h3 { font-size: 1rem; }
}

/* --- In Demand Section: 2-col grid on mobile --- */
@media (max-width: 768px) {
    .in-demand-section .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .in-demand-section .product-card .btn {
        padding: 10px !important;
        font-size: 0.65rem !important;
    }
}

/* --- Summer Essentials mobile --- */
@media (max-width: 600px) {
    .summer-grid { gap: 12px; }
    .summer-card-content { padding: 20px; }
    .summer-card-content h3 { font-size: 1.2rem; }
    .summer-card-content p { font-size: 0.8rem; }
}

/* --- Spotlight card mobile --- */
@media (max-width: 600px) {
    .spotlight-info h2 { font-size: 1.5rem; }
    .spotlight-info .spotlight-price { font-size: 1.4rem; }
    .spotlight-info .spotlight-desc { font-size: 0.85rem; }
    .spotlight-info { padding: var(--sp-6) !important; }
}

/* --- Trust Bar mobile --- */
@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .trust-item {
        flex-direction: row !important;
        text-align: left;
        gap: 16px;
        padding: 16px;
        background: var(--bg-secondary);
        border-radius: var(--round-md);
    }
    .trust-item h4 { font-size: 0.85rem; margin-bottom: 2px; }
    .trust-item p { font-size: 0.75rem; }
}

/* --- Product Page Mobile Overhaul --- */
@media (max-width: 900px) {
    .product-studio {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    .gallery-studio {
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }
    /* Full-bleed gallery on mobile */
    .main-img-studio {
        border-radius: 0 !important;
        aspect-ratio: 1/1 !important;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }
    .main-img-studio img {
        object-fit: cover !important;
    }
    /* Gallery nav always visible on mobile (touch devices) */
    .main-img-studio .gallery-nav-btn {
        opacity: 0.8 !important;
        pointer-events: auto !important;
        width: 36px;
        height: 36px;
    }
    .main-img-studio .gallery-zoom-btn {
        opacity: 0.8 !important;
        pointer-events: auto !important;
        width: 36px;
        height: 36px;
        bottom: 12px;
        right: 28px;
    }
    /* Horizontal thumbnails */
    .thumbs-vertical {
        flex-direction: row !important;
        width: 100% !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 4px 0;
    }
    .thumb {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0;
    }
    /* Info section on mobile */
    .info-studio {
        position: static !important;
        padding: var(--sp-6) 0 !important;
    }
    .info-studio h1 {
        font-size: 1.8rem !important;
    }
    .product-price-large {
        font-size: 1.8rem !important;
    }
    .product-price-large .original { font-size: 1rem !important; }
    .product-price-large .save-tag { font-size: 0.65rem !important; }
    /* Trust badges compact on mobile */
    .trust-badges-row { gap: 8px; margin: var(--sp-4) 0; }
    .trust-badge-card { padding: 10px 14px; }
    .trust-badge-icon { width: 28px; height: 28px; font-size: 1.1rem; }
    .trust-badge-text h5 { font-size: 0.78rem; }
    .trust-badge-text p { font-size: 0.7rem; }
    /* Qty & Purchase buttons */
    .qty-box { margin-bottom: var(--sp-4); }
    .purchase-actions .btn { font-size: 0.85rem !important; padding: 16px !important; }
    /* Accordion */
    .pd-accordion { margin-top: var(--sp-8); }
    .pd-accordion-header { font-size: 0.8rem; padding: 16px 0; }
    /* Upsell cards */
    .upsell-card { flex: 0 0 200px; padding: 12px; }
    .upsell-card-img { width: 56px; height: 56px; }
    .upsell-card-info h4 { font-size: 0.75rem; }
    .upsell-card-info p { font-size: 0.8rem; }
    .upsell-add-btn { font-size: 0.65rem; padding: 5px 10px; }
    /* Sticky bar mobile */
    .sticky-bar-inner { padding: 0 12px; gap: 10px; }
    .sticky-bar-img { width: 40px; height: 40px; }
    .sticky-bar-info h4 { font-size: 0.75rem; }
    .sticky-bar-info p { font-size: 0.85rem; }
    .sticky-bar-btn { padding: 10px 18px; font-size: 0.7rem; }
}

/* --- Section headers: consistent alignment on mobile --- */
@media (max-width: 600px) {
    .section-header {
        text-align: left !important;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header p {
        font-size: 0.85rem;
    }
    .view-all-link {
        font-size: 0.75rem;
    }
    /* Homepage sections spacing */
    .in-demand-section,
    .summer-section,
    .spotlight-section {
        padding: var(--sp-12) 0;
    }
    /* Product cards on mobile */
    .product-card .product-info { padding: var(--sp-3) 16px; }
    .product-title { font-size: 0.8rem; }
    .product-price { font-size: 0.85rem; }
    .original-price { font-size: 0.7rem; }
    .product-card .btn { padding: 10px !important; font-size: 0.65rem !important; }
}

/* --- Zoom Lightbox mobile fixes --- */
@media (max-width: 768px) {
    .zoom-lightbox-img-wrap { max-width: 95vw; max-height: 75vh; }
    .zoom-lightbox-img-wrap img { max-width: 95vw; max-height: 75vh; border-radius: 4px; }
    .zoom-lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .zoom-lb-nav { width: 40px; height: 40px; }
    .zoom-lb-nav.prev { left: 8px; }
    .zoom-lb-nav.next { right: 8px; }
    .zoom-lb-thumbs { bottom: 12px; }
    .zoom-lb-thumb { width: 44px; height: 44px; }
    .zoom-lb-counter { bottom: 68px; font-size: 0.75rem; }
}

/* ============================
   MOBILE-HIDE utility
   ============================ */
@media (max-width: 600px) {
    .mobile-hide { display: none !important; }
    .desktop-only { display: none !important; }
}
@media (min-width: 601px) {
    .mobile-only { display: none !important; }
}

/* ============================
   SPOTLIGHT / FEATURED PRODUCT
   ============================ */
/* Removed duplicate .spotlight-card definition */
.spotlight-img {
    flex: 0 0 40%;
    border-radius: var(--round-md);
    overflow: hidden;
}
.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotlight-info {
    flex: 1;
}
.spotlight-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--impact-accent);
    margin-bottom: 8px;
}
.spotlight-price {
    font-size: 2rem;
    font-weight: 800;
    margin: var(--sp-3) 0;
}
.spotlight-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}

/* ============================
   MOBILE HERO — Compact (item #6)
   ============================ */
@media (max-width: 600px) {
    .hero {
        padding: 0 !important;
        margin-top: 0;
        padding-top: 0 !important;
    }
    .hero-inner {
        padding: 64px 0 64px 0;
    }
    .hero-slider {
        height: 75vh !important;
        min-height: 320px;
        border-radius: 12px;
    }
    .hero-slide-themed {
        padding: var(--sp-4) !important;
    }
    .hero-slide-themed .hero-product-img {
        max-height: 220px !important;
        object-fit: contain !important;
        margin-top: 60px !important;
    }
    .hero-slide-themed .hero-heading-line {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-slide-themed .hero-heading-large {
        font-size: clamp(32px, 10vw, 52px) !important;
        letter-spacing: -1px;
    }
    .hero-slide-themed .hero-price {
        font-size: 1.4rem !important;
        margin-bottom: var(--sp-3) !important;
    }
    .hero-btns .btn {
        padding: 12px 24px !important;
        font-size: 0.75rem !important;
    }
    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
    .hero-progress {
        bottom: var(--sp-4);
        gap: 10px;
    }
    .progress-line {
        width: 40px;
    }
}

/* ============================
   SPACE BETWEEN TOP BAR & HERO (item #2)
   ============================ */
@media (max-width: 600px) {
    .announcement-bar {
        height: 30px;
        font-size: 0.65rem;
    }
    .section-padding-mobile {
        padding: var(--sp-8) 0 !important;
    }
}

/* ============================
   BURGER ICON VISIBILITY (item #7)
   ============================ */
.menu-btn .ico {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}
/* White on transparent header (same as cart/search) */
.header:not(.scrolled) .menu-btn {
    color: #ffffff;
}
.header.scrolled .menu-btn {
    color: var(--text-primary);
}

/* ============================
   SALE BANNER COMPACT ON MOBILE (item #8)
   ============================ */
@media (max-width: 600px) {
    .deal-banner.active {
        padding: 6px 12px;
        font-size: 0.7rem;
        gap: 8px;
        letter-spacing: 0.04em;
    }
    .deal-banner .deal-cta {
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    .deal-banner .deal-icon {
        font-size: 0.9rem;
    }
}

/* ============================
   SECTION SPACING (item #10)
   ============================ */
@media (max-width: 600px) {
    .in-demand-section,
    .new-arrivals-section,
    .summer-section,
    .spotlight-section,
    .trust-bar,
    .faq-section {
        padding: var(--sp-12) 0 !important;
    }
    /* Vertical gaps between sections */
    .in-demand-section + .new-arrivals-section,
    .new-arrivals-section + .summer-section,
    .summer-section + .spotlight-section,
    .spotlight-section + .trust-bar,
    .trust-bar + .faq-section {
        margin-top: 0;
    }

    /* Section header alignment — match container padding */
    .section-header {
        padding: 0 !important;
    }

    /* Search overlay overflow fix */
    .search-overlay {
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Featured product spotlight card */
    .spotlight-card {
        flex-direction: column !important;
    }
    .spotlight-img {
        width: 100% !important;
        height: 250px !important;
    }
    .spotlight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--round-md);
    }
    .spotlight-info {
        padding: var(--sp-6) 0 !important;
    }
    .spotlight-info h2 {
        font-size: 1.6rem !important;
        margin: 6px 0 !important;
    }
    .spotlight-info .spotlight-price {
        font-size: 1.4rem !important;
    }
    .spotlight-info .spotlight-desc {
        font-size: 0.85rem !important;
        margin: 8px 0 14px !important;
    }
    .spotlight-info .btn {
        width: 100%;
        text-align: center;
        padding: 14px !important;
        font-size: 0.8rem !important;
    }

    /* Trust swiper cards — proper sizing & visible dots/lines */
    .trust-swiper-track {
        width: 100%;
    }
    .trust-swipe-card {
        min-height: auto;
        padding: 32px 24px;
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .trust-swipe-card p {
        font-size: 0.82rem;
        max-width: 260px;
        margin: 0 auto;
    }
    .trust-swiper {
        padding-bottom: 48px !important;
    }
    .trust-swiper-dots {
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 20;
    }
    .trust-dot {
        display: block !important;
        width: 30px;
        height: 4px;
        border-radius: 2px;
        background: #94a3b8; /* Darker slate gray for high contrast */
        transition: all 0.3s ease;
        transform: none !important;
        cursor: pointer;
    }
    .trust-dot.active {
        background: var(--impact-accent) !important;
    }

    /* Hero height fix — override the 70vh from earlier media query */
    .hero-slider {
        height: 75vh !important;
        min-height: 320px;
    }
}

/* ============================
   TRUST SWIPER — Mobile Swipable Cards (item #12)
   ============================ */
.trust-swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 32px;
}
.trust-swiper-track {
    display: flex;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    touch-action: pan-y;
}
.trust-swipe-card {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-secondary);
    border-radius: var(--round-md);
}
.trust-swipe-icon {
    color: var(--text-primary);
    margin-bottom: 16px;
}
.trust-swipe-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: 0;
}
.trust-swipe-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}
.trust-swiper-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}
.trust-dot.active {
    background: var(--impact-dark);
    transform: scale(1.3);
}

/* ============================
   FAQ SECTION (item #13)
   ============================ */
.faq-section {
    padding: var(--sp-20) 0;
    background: var(--bg-secondary);
}
.faq-wrapper-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 60px;
    box-shadow: none;
}
@media (max-width: 900px) {
    .faq-wrapper-card { padding: var(--sp-8); border-radius: 16px; }
}
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
.faq-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: var(--sp-4) var(--sp-8);
}
@media (max-width: 600px) {
    .faq-card { padding: var(--sp-4) var(--sp-6); border-radius: 12px; }
}
.faq-list {
    width: 100%;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item:first-child {
    border-top: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--impact-accent);
}
.faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
    padding: 5px;
    color: #000;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
@media (max-width: 600px) {
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 0;
    }
    .faq-answer p {
        font-size: 0.85rem;
        padding-bottom: 16px;
    }
}

/* ============================
   UPSELL / CROSS-SELL SECTIONS
   ============================ */
.upsell-section {
    padding: var(--sp-20) 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}
.upsell-card {
    background: var(--bg-primary);
    border-radius: var(--round-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
.upsell-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.upsell-card-img {
    display: block;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: var(--bg-secondary);
}
.upsell-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.upsell-card:hover .upsell-card-img img {
    transform: scale(1.06);
}
.upsell-card-body {
    padding: var(--sp-4);
}
.upsell-card-body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.upsell-card-price {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.upsell-card-price .original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.75rem;
    font-weight: 400;
}
.upsell-card-price .discount-tag {
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
}
.upsell-add-btn {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--impact-dark);
    background: transparent;
    color: var(--impact-dark);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--round-full);
    cursor: pointer;
    transition: all 0.2s;
}
.upsell-add-btn:hover {
    background: var(--impact-dark);
    color: white;
}

@media (max-width: 900px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }
    .upsell-section {
        padding: var(--sp-12) 0;
    }
}
@media (max-width: 600px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .upsell-card-body {
        padding: 10px;
    }
    .upsell-card-body h4 {
        font-size: 0.78rem;
    }
    .upsell-card-price {
        font-size: 0.78rem;
    }
    .upsell-add-btn {
        padding: 8px;
        font-size: 0.65rem;
    }
}

/* --- Desktop polish --- */
@media (min-width: 901px) {
    .product-studio {
        max-width: 100%;
        margin: 0 auto;
    }
    /* Desktop: show summer grid, hide stack */
    .summer-stack { display: none !important; }
}

/* ============================
   SKELETON LOADING SYSTEM
   Premium shimmer placeholders
   ============================ */
@keyframes skeletonShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-card {
    border-radius: var(--round-md);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
}

.skeleton-info {
    padding: 16px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
    margin-bottom: 10px;
}

.skeleton-line.cat {
    width: 40%;
    height: 8px;
    margin-bottom: 12px;
}

.skeleton-line.title {
    width: 85%;
    height: 14px;
}

.skeleton-line.title-short {
    width: 60%;
    height: 14px;
}

.skeleton-line.price {
    width: 45%;
    height: 18px;
    margin-top: 4px;
}

.skeleton-line.stars {
    width: 55%;
    height: 10px;
    margin-top: 6px;
}

.skeleton-btn {
    height: 40px;
    margin: 0 16px 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
}

/* Stagger animation delays for natural feel */
.skeleton-card:nth-child(2) .skeleton-image,
.skeleton-card:nth-child(2) .skeleton-line,
.skeleton-card:nth-child(2) .skeleton-btn { animation-delay: 0.15s; }
.skeleton-card:nth-child(3) .skeleton-image,
.skeleton-card:nth-child(3) .skeleton-line,
.skeleton-card:nth-child(3) .skeleton-btn { animation-delay: 0.3s; }
.skeleton-card:nth-child(4) .skeleton-image,
.skeleton-card:nth-child(4) .skeleton-line,
.skeleton-card:nth-child(4) .skeleton-btn { animation-delay: 0.45s; }

/* Fade-in for real content replacing skeletons */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card.fade-in {
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Page fade-in transition */
.page-fade-in {
    animation: pageFadeIn 0.5s ease-out forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; filter: blur(4px); transform: translateY(6px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Accessibility: respect reduced motion */
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.upsell-card-price {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.upsell-card-price .original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.75rem;
    font-weight: 400;
}
.upsell-card-price .discount-tag {
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
}
.upsell-add-btn {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--impact-dark);
    background: transparent;
    color: var(--impact-dark);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--round-full);
    cursor: pointer;
    transition: all 0.2s;
}
.upsell-add-btn:hover {
    background: var(--impact-dark);
    color: white;
}

@media (max-width: 900px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }
    .upsell-section {
        padding: var(--sp-12) 0;
    }
}
@media (max-width: 600px) {
    .upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .upsell-card-body {
        padding: 10px;
    }
    .upsell-card-body h4 {
        font-size: 0.78rem;
    }
    .upsell-card-price {
        font-size: 0.78rem;
    }
    .upsell-add-btn {
        padding: 8px;
        font-size: 0.65rem;
    }
}



/* ============================
   SKELETON LOADING SYSTEM
   Premium shimmer placeholders
   ============================ */
@keyframes skeletonShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-card {
    border-radius: var(--round-md);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
}

.skeleton-info {
    padding: 16px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
    margin-bottom: 10px;
}

.skeleton-line.cat {
    width: 40%;
    height: 8px;
    margin-bottom: 12px;
}

.skeleton-line.title {
    width: 85%;
    height: 14px;
}

.skeleton-line.title-short {
    width: 60%;
    height: 14px;
}

.skeleton-line.price {
    width: 45%;
    height: 18px;
    margin-top: 4px;
}

.skeleton-line.stars {
    width: 55%;
    height: 10px;
    margin-top: 6px;
}

.skeleton-btn {
    height: 40px;
    margin: 0 16px 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
}

/* Stagger animation delays for natural feel */
.skeleton-card:nth-child(2) .skeleton-image,
.skeleton-card:nth-child(2) .skeleton-line,
.skeleton-card:nth-child(2) .skeleton-btn { animation-delay: 0.15s; }
.skeleton-card:nth-child(3) .skeleton-image,
.skeleton-card:nth-child(3) .skeleton-line,
.skeleton-card:nth-child(3) .skeleton-btn { animation-delay: 0.3s; }
.skeleton-card:nth-child(4) .skeleton-image,
.skeleton-card:nth-child(4) .skeleton-line,
.skeleton-card:nth-child(4) .skeleton-btn { animation-delay: 0.45s; }

/* Fade-in for real content replacing skeletons */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card.fade-in {
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Page fade-in transition */
.page-fade-in {
    animation: pageFadeIn 0.5s ease-out forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; filter: blur(4px); transform: translateY(6px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .skeleton-image,
    .skeleton-line,
    .skeleton-btn { animation: none; }
    .product-card.fade-in { animation: none; opacity: 1; }
    .page-fade-in { animation: none; opacity: 1; filter: none; }
}



/* Absolute Mobile Override for Hero Image */
@media (max-width: 1024px) {
    .hero {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    .hero-inner {
        padding: 80px 0 20px 0 !important;
    }
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        border-radius: 0 !important;
    }
    .hero-slide {
        position: absolute !important;
        height: auto !important;
        min-height: auto !important;
    }
    .hero-slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .hero-slide-themed {
        flex-direction: column-reverse !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 60px 24px 40px 24px !important;
        height: auto !important;
        min-height: auto !important;
    }
    .hero-slide-themed .hero-product-img {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        max-height: 200px !important;
        width: 80% !important;
        max-width: 320px !important;
        object-fit: contain !important;
        margin: 0 auto 12px auto !important;
        transform: rotate(-5deg) !important;
        display: block !important;
    }
    .hero-slide-themed .hero-heading-large {
        font-size: clamp(32px, 10vw, 48px) !important;
        line-height: 1.05 !important;
        margin-bottom: 8px !important;
    }
    .hero-slide-themed .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }
    .hero-slide-themed .hero-price {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    .hero-heading-line {
        margin: 0 auto 12px auto !important;
    }
    .hero-btns {
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 380px !important;
        gap: 8px !important;
    }
    .hero-btns .btn {
        justify-content: center !important;
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
    }
    .hero-progress {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 12px 0 0 0 !important;
        padding-bottom: 12px !important;
    }

    /* Header - match .container side padding (16px) for consistent edge alignment */
    .header {
        padding: 0 16px !important;
    }
    .header-icon-btn {
        padding: 8px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .header-icon-btn.desktop-only {
        display: none !important;
    }
    .header-icon-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
    .menu-btn {
        padding: 8px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: -8px !important;
    }
    .menu-btn .ico {
        width: 22px !important;
        height: 22px !important;
    }
    .header-left {
        gap: 0px !important;
    }
    .header-actions {
        gap: 0px !important;
    }
    .header-actions > :last-child {
        margin-right: -8px !important;
    }
}

/* ==========================================
   THE MINIMAL "N" SVG LOADER SYSTEM
   ========================================== */
.nw-mini-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: nw-breathe 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  --right-stem-color: var(--color-accent, #00d4aa);
  color: var(--color-dark, #0d0d0d);
}

.nw-mini-loader.flip-variant {
  animation: nw-flip 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes nw-breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes nw-flip {
  0% { transform: perspective(120px) rotateY(0deg); }
  50% { transform: perspective(120px) rotateY(180deg); }
  100% { transform: perspective(120px) rotateY(360deg); }
}

/* Make skeleton images capable of centering the loader */
.skeleton-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc; /* fallback color for 'N' left side if dark var doesn't cascade */
}

/* Button Loading States */
.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: not-allowed;
  opacity: 0.9;
}

.btn-loading.mint {
  color: var(--color-dark, #0d0d0d);
}

.btn-loading.mint .nw-mini-loader {
  --right-stem-color: currentColor;
}

/* ==========================================================================
   MOBILE STACK INTERACTIVE (Restored & Branded)
   ========================================================================== */
.summer-stack-interactive {
    flex-direction: column;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
    --card-w: 240px;
    --card-h: 240px;
}

/* ── Category pills ── */
.cat-pills {
    display: flex; gap: 8px;
    justify-content: center;
    padding: 10px 22px 0;
}
.pill {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.3px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.25s;
    white-space: nowrap;
}
.pill.active {
    background: var(--text-primary); color: white; border-color: var(--text-primary);
}
.pill:not(.active) {
    background: transparent; color: var(--text-secondary); border-color: #ddd;
}

/* ── DECK STAGE ── */
.deck-stage {
    position: relative;
    height: 280px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.deck-card {
    position: absolute;
    width: var(--card-w);
    height: var(--card-h);
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    will-change: transform;
    transform-origin: center bottom;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}
.deck-card:active { cursor: grabbing; }

.deck-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}

.deck-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%);
}

.deck-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 18px;
}

.card-tag {
    display: inline-block;
    background: var(--impact-accent);
    color: white;
    font-size: 9px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 3px 9px; border-radius: 50px;
    margin-bottom: 7px;
}

.card-title {
    font-family: inherit;
    font-size: 26px; letter-spacing: -0.02em;
    font-weight: 800;
    color: white; line-height: 1.1;
}
.card-sub {
    font-size: 14px; font-weight: 700; color: var(--impact-accent);
    margin-top: 4px;
}

.card-count {
    display: flex; align-items: center; gap: 6px;
    margin-top: 10px;
}
.card-count-num {
    font-size: 11px; font-weight: 600; color: white;
}
.card-count-label {
    font-size: 10px; color: rgba(255,255,255,0.55);
}
.card-arrow {
    margin-left: auto;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

/* Peek card label */
.peek-label {
    position: absolute;
    font-family: inherit;
    font-weight: 800;
    font-size: 18px; letter-spacing: -0.02em;
    color: rgba(255,255,255,0.6);
    bottom: 24px; left: 22px;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* ── Swipe indicator ── */
.swipe-indicator {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 0 0;
}
.swipe-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ccc; transition: all 0.3s cubic-bezier(0.34,1.3,0.64,1);
}
.swipe-dot.active { background: var(--impact-accent); transform: scale(1.4); }

/* ── Products ── */
.products-section { padding: 24px 0 0; }
.products-row {
    display: flex; gap: 16px; overflow-x: auto;
    padding: 0 16px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.products-row::-webkit-scrollbar { display: none; }

.products-row .product-card {
    min-width: 160px; max-width: 160px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

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


/* Fix Slide 2 and 3 */
.hero--cinematic .hero-slide-themed:not(.is-image-bg) {
    display: flex !important;
    justify-content: space-between !important;
}



@media (max-width: 991px) {
    .hero--cinematic .hero-slide-themed.is-image-bg {
        padding: 40px 20px 20px 20px !important;
        align-items: stretch !important;
        background-position: center bottom !important;
    }
    
    .hero--cinematic .hero-slide-themed.is-image-bg .hero-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
    }

    .hero--cinematic .hero-slide-themed.is-image-bg .hero-eyebrow { order: 1 !important; margin-bottom: 10px !important; }
    .hero--cinematic .hero-slide-themed.is-image-bg .hero-heading-large { order: 2 !important; margin-bottom: 15px !important; }
    
    .hero--cinematic .hero-slide-themed.is-image-bg .hero-heading-large::after {
        content: '';
        display: block;
        width: 180px;
        height: 2px;
        background: var(--impact-accent);
        margin: 20px auto 0;
    }

    .hero--cinematic .hero-slide-themed.is-image-bg .hero-price { 
        order: 3 !important; 
        font-size: 32px !important; 
        margin-bottom: 15px !important; 
    }
    .hero--cinematic .hero-slide-themed.is-image-bg .hero-desc { 
        order: 4 !important; 
        margin-bottom: 0 !important; 
        max-width: 280px; 
    }
    
    .hero--cinematic .hero-slide-themed.is-image-bg .hero-btns {
        order: 5 !important;
        margin-top: auto !important;
        padding-top: 150px !important; 
        flex-direction: column !important;
    }
}

.pd-sold-out-badge {
    background: #ef4444 !important;
    color: white !important;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: var(--round-full);
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-right: var(--sp-3);
    margin-bottom: 8px;
    vertical-align: middle;
}

/* ═══════════════════════════════════════
   QUICK VIEW MODAL SYSTEM
   ═══════════════════════════════════════ */
.qv-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.qv-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.qv-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.95);
    width: 90%;
    max-width: 960px;
    max-height: 90vh;
    background: var(--bg-primary);
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-radius: var(--round-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    z-index: 1101;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}
.qv-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}
.qv-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: background 0.2s, transform 0.2s;
}
.qv-close:hover {
    background: var(--border-color, rgba(0, 0, 0, 0.08));
    transform: scale(1.05);
}
.qv-close svg {
    width: 18px;
    height: 18px;
}
.qv-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
    min-height: 500px;
}
/* Left Gallery */
.qv-gallery-section {
    padding: var(--sp-6);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
    min-height: 400px;
}
.qv-main-img-wrap {
    aspect-ratio: 1/1;
    max-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: var(--round-md);
    background: var(--bg-primary);
}
.qv-main-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity 0.2s ease;
}
.qv-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.2s, background 0.2s;
    padding: 0;
}
.qv-nav-btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-50%) scale(1.05);
}
.qv-nav-btn.prev { left: 16px; }
.qv-nav-btn.next { right: 16px; }
.qv-nav-btn svg { width: 20px; height: 20px; }

.qv-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.qv-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: var(--round-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-primary);
    transition: border-color 0.2s;
}
.qv-thumb.active {
    border-color: var(--impact-accent);
}
.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Details */
.qv-details-section {
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}
.qv-details-top {
    display: flex;
    flex-direction: column;
}
.qv-cat-label {
    text-transform: uppercase;
    color: var(--impact-accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.qv-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.qv-price-row {
    margin-bottom: 20px;
}
.qv-current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}
.qv-original-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.15rem;
    margin-left: 8px;
    font-weight: 400;
}
.qv-save-tag {
    background: var(--impact-accent);
    color: var(--impact-accent-text);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
    margin-left: 10px;
}
.qv-condition-badge {
    margin-bottom: var(--sp-4);
}
.qv-sizes-wrap {
    margin-bottom: 24px;
}
.qv-sizes-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.qv-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.qv-size-btn {
    border: 2px solid var(--border-color, rgba(0, 0, 0, 0.08));
    background: transparent;
    padding: 8px 14px;
    border-radius: var(--round-md);
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.2s;
    min-width: 60px;
    text-align: center;
}
.qv-size-btn:hover {
    border-color: var(--text-primary);
}
.qv-size-btn.selected {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}

.qv-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.qv-qty-box {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-radius: var(--round-md);
    overflow: hidden;
}
.qv-qty-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: background 0.2s;
}
.qv-qty-btn:hover {
    background: var(--bg-secondary);
}
.qv-qty-input {
    width: 40px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 2px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-right: 2px solid var(--border-color, rgba(0, 0, 0, 0.08));
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
}
.qv-qty-input::-webkit-outer-spin-button,
.qv-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qv-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.qv-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--round-full);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.qv-btn-cart {
    background: var(--impact-accent);
    color: var(--impact-accent-text);
}
.qv-btn-cart:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.qv-btn-buy {
    background: var(--text-primary);
    color: var(--bg-primary);
}
.qv-btn-buy:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.qv-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.qv-btn-whatsapp:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.qv-view-full {
    align-self: center;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.2s;
}
.qv-view-full:hover {
    color: var(--text-primary);
}

/* Skeleton Loading State */
.qv-skeleton {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-primary);
    z-index: 5;
    transition: opacity 0.3s;
}
.qv-skeleton-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-top: 4px solid var(--impact-accent);
    border-radius: 50%;
    animation: qvSpin 1s linear infinite;
}
@keyframes qvSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .qv-modal {
        width: 95%;
        max-height: 95vh;
        top: 50%;
        transform: translate(-50%, -45%) scale(0.95);
    }
    .qv-modal.active {
        transform: translate(-50%, -50%) scale(1);
    }
    .qv-content-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .qv-gallery-section {
        min-height: 300px;
        padding: var(--sp-4);
        border-right: none;
        border-bottom: 1px solid var(--border-color, rgba(0, 0, 0, 0.05));
    }
    .qv-main-img-wrap {
        max-height: 250px;
    }
    .qv-details-section {
        padding: var(--sp-6);
    }
    .qv-title {
        font-size: 1.4rem;
    }
}

