/* =========================================
   1. Variables & Reset Updates
   ========================================= */
:root {
    --color-primary: #000000;
    --color-accent: #D9357C;
    --color-white: #FFFFFF;
    --color-gray-dark: #1a1a1a;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    --container-width: 1200px;
}

html,
body {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   2. Typography & Utils
   ========================================= */
h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    /* Ensure fluid width */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    /* Prevent padding spread */
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-sharp {
    border-radius: 0;
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-secondary-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    /* Or match the max-width of the cart button */
    box-sizing: border-box;
    padding: 16px 24px;
    margin-top: 15px;
    /* Creates breathing room between the two buttons */
    background: transparent;
    color: #FFF;
    /* White text */
    border: 2px solid #D9357C;
    /* Pink border */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: rgba(217, 53, 124, 0.1);
    /* Subtle pink glow on hover */
}

/* =========================================
   3. Header
   ========================================= */
/* =========================================
   3. Header (Premium Sticky)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    /* Crucial */
}

/* Scrolled State (Black & Tight) */
.site-header.scrolled {
    background: #000000;
    padding: 10px 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Height is now controlled by padding */
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-white);
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0.8;
    position: relative;
    /* For underline */
    padding-bottom: 5px;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--color-white);
    /* Keep white, underline adds color */
}

/* Hot Pink Sliding Underline */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after {
    width: 100%;
}

/* =========================================
   4. Hero V2 (Full Screen)
   ========================================= */
/* Hero Section (V2 - Refined) */
.hero-v2 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg,
.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title-v2 {
    font-size: 8rem;
    /* Massive */
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--color-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-title-v2 {
        font-size: 4rem;
    }
}

/* =========================================
   5. Infinite Marquee
   ========================================= */
.marquee-container {
    background: #000;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
    /* Hollow text */
    margin-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   6. Image Comparison Slider (Clean Install - Pixel-Lock)
   ========================================= */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    /* Aspect Ratio is handled by the base image naturally */
}

/* Base Image (Master - Sets the Stage) */
.slider-img-after {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Optional, but good for consistency */
}

/* Overlay Window (Clipper) */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    /* Initial State */
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid #fff;
}

/* Top Image (Slave - Forced to Match Master via JS) */
.slider-img-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    /* CRITICAL: Width is set by JS to match base image pixels exactly. */
    width: auto;
    max-width: none !important;
    /* Allow it to overflow the overlay container */
    object-fit: cover;
}

/* Ghost Mode for Images (Non-Interactive) */
.slider-img-after,
.slider-img-before {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

/* Handle */
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Initial State */
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    z-index: 3;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    touch-action: none;
    /* Important for touch events */
}



.slider-label {
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    pointer-events: none;
    z-index: 4;
}


/* Mobile Tweaks */
@media (max-width: 768px) {
    .comparison-slider {
        margin-bottom: 50px;
    }

    .slider-handle {
        width: 50px;
        height: 50px;
        /* Larger touch target */
    }
}

/* =========================================
   7. Product Cards V2
   ========================================= */
.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card-v2 {
    background: transparent;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card-v2:hover {
    transform: scale(1.02);
}

.product-image-v2 {
    background: var(--color-gray-dark);
    padding: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.product-image-v2 img {
    max-height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-info-v2 h3 {
    font-size: 2rem;
    margin: 0;
}

.product-info-v2 .price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
}

.product-desc {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* =========================================
   8. Features Minimal
   ========================================= */
.features-minimal {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    background: #050505;
}

.features-grid-minimal {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.feature-item:hover {
    opacity: 1;
}

.icon-minimal {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature-item h4 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
}

.social-links a {
    margin: 0 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* =========================================
   PDP (Product Detail Page) Styles
   ========================================= */
.pdp-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 120px;
    /* Space for fixed header */
    margin-bottom: 80px;
}

.pdp-gallery {
    flex: 1;
    min-width: 300px;
}

.pdp-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 20px;
    background: #1a1a1a;
    /* Dark styling match */
    margin-bottom: 20px;
}

.pdp-thumbnails {
    display: flex;
    gap: 15px;
}

.pdp-thumb {
    width: 80px;
    height: 80px;
    padding: 10px;
    object-fit: contain;
    background: #1a1a1a;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #333;
    transition: border-color 0.2s;
}

.pdp-thumb:hover {
    border-color: var(--color-accent);
}

.pdp-info {
    flex: 1;
    min-width: 300px;
}

.pdp-title {
    font-size: 3.5rem;
    /* Big */
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color-white);
}

.pdp-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    /* Hot Pink */
    margin-bottom: 25px;
    display: block;
}

.pdp-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.pdp-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pdp-bullets li {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title.center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .pdp-hero {
        flex-direction: column;
        gap: 30px;
        margin-top: 100px;
    }

    .pdp-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   9. Product Page (Split Screen)
   ========================================= */
.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
    /* Offset for fixed header */
}

/* Left: Gallery */
.product-gallery {
    background-color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    height: calc(100vh - 80px);
    /* Fill screen minus header */
    position: sticky;
    top: 80px;
}

.product-gallery img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Right: Details */
.product-details {
    padding: 60px 80px;
    background-color: var(--color-primary);
    overflow-y: auto;
}

/* Typography & Elements */
.product-title {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--color-white);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
}

.pricing-offer-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
    font-weight: 500;
}

.price-new {
    color: #D9357C;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.offer-badge {
    background: #D9357C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #ffd700;
    /* Gold */
}

.rating-text {
    color: #888;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
}

.add-to-cart {
    font-size: 2rem;
    padding: 20px;
    margin-bottom: 50px;
    background-color: var(--color-accent);
    color: var(--color-white);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.add-to-cart:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.product-inline-cart {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    /* Matches the mobile text padding */
    margin: 20px 0;
}

/* Force the button to calculate its own width with 20px padding on each side */
.btn-safe-cart {
    width: calc(100% - 40px) !important;
    /* Forces 20px of space on both sides */
    margin: 20px auto !important;
    /* Centers it perfectly */
    display: block !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    .product-inline-cart {
        padding: 0;
        /* Removes side padding so it aligns strictly left with the desktop text */
        max-width: 380px;
        /* Prevents the button from stretching too far to the right */
    }

    .btn-safe-cart {
        width: 100% !important;
        max-width: 380px !important;
        margin: 20px 0 !important;
        /* Removes the auto-center, aligns it left with the text */
    }
}

/* What's Inside List */
.whats-inside {
    margin-bottom: 50px;
}

.whats-inside h2,
.whats-inside h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #888;
}

.hype-list {
    padding-left: 0;
}

.hype-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--color-white);
}

.hype-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* How It Works (Mini) */
.how-it-works-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 20px;
    border-radius: 4px;
}

.step-mini {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-icon {
    font-size: 1.5rem;
}

.step-label {
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: 1px;
}

.step-arrow {
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .product-wrapper {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        height: 50vh;
        position: relative;
        top: 0;
    }

    .product-details {
        padding: 40px 20px;
    }

    .product-title {
        font-size: 3.5rem;
    }
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-section {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 60vh;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 60px;
    /* Increased inner padding */
    border-radius: 8px;
    border: 1px solid #333;
}

/* =========================================
   10. Cart Drawer
   ========================================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background: #000;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--color-white);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
}

.cart-header h2 {
    font-size: 2rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.cart-close:hover {
    color: var(--color-accent);
}

.cart-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cart-item-img img {
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.cart-item-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #fff;
    color: #000;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #333;
    background: #050505;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* =========================================
   11. Mobile Responsiveness
   ========================================= */

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
/* Mobile Menu Styles Moved to Section 16 to avoid duplicates */

/* Sticky Mobile Bar (Mobile Only) */
.sticky-mobile-bar {
    display: none;
    /* Hidden by default */
}

@media (max-width: 768px) {
    .sticky-mobile-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        /* Force full viewport */
        margin: 0 !important;
        padding: 15px 0 !important;
        /* Top/Bottom only */
        background: #000 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 1000 !important;
        box-sizing: border-box !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .sticky-mobile-bar .sticky-price {
        display: none !important;
    }

    .sticky-mobile-bar .btn-sticky {
        width: 90% !important;
        /* Center with breathing room */
        max-width: 400px !important;
        margin: 0 auto !important;
        /* Classic centering */
        display: block !important;
        /* Ensure it respects margin auto */
    }
}

/* =========================================
   Mobile Header (Dedicated)
   ========================================= */
.mobile-header-bar {
    display: none;
    /* Hidden on desktop */
}

/* Media Queries (< 768px) */
@media (max-width: 768px) {

    /* Hide Desktop Header */
    .site-header {
        display: none !important;
    }

    /* Show Mobile Header */
    /* Show Mobile Header (Absolute Strategy) */
    .mobile-header-bar {
        display: flex;
        align-items: center;
        position: fixed;
        /* Sticky Header */
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #000;
        z-index: 1000;
        padding: 0 20px;
        border-bottom: 1px solid #222;
        box-sizing: border-box;
    }

    .mobile-header-bar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        font-size: 2rem;
        z-index: 1002;
        white-space: nowrap;
    }

    .mobile-header-bar .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .mobile-header-bar .hamburger-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .mobile-header-bar .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-header-bar .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-header-bar .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .main-nav,
    .desktop-btn {
        display: none !important;
    }

    /* Header */
    /* .site-header {
        height: 80px;
        padding: 0 5%;
        display: flex;
        align-items: center;
        position: fixed;
    } */

    .header-inner {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Center Logo */
        position: relative;
        height: 100%;
    }

    .logo {
        margin: 0 auto;
        /* Explicit centering */
        position: relative;
        z-index: 1002;
        left: 0;
        /* Reset any previous positioning */
        transform: none;
    }

    /* .hamburger-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2002;
        width: 30px;
        height: 21px;
    } */

    /* Hero */
    .hero-v2 {
        height: 80vh;
        /* Request: 80vh */
        background-size: cover;
        background-position: center;
        position: relative;
        margin-bottom: 60px;
        /* Request: Spacing */
    }

    .hero-overlay {
        opacity: 0.6;
        /* Request: Dark Overlay */
        background: #000;
        z-index: 1;
    }

    .hero-title-v2 {
        font-size: 3.5rem;
        /* Request: Smaller Headline */
    }

    .hero-content-v2 {
        padding: 0 20px;
    }

    /* Marquee Spacing */
    .marquee-container {
        margin-bottom: 60px;
    }

    /* Slider */
    /* Slider - Fixed Height & No Zoom */
    /* Slider styles are now handled globally in Section 6 */
    /* No mobile-specific overrides needed for basic layout, handled by responsive images */

    /* Base Image Wrapper (After) */
    .image-container {
        position: absolute !important;
        /* Changed to absolute to stick to container */
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }

    /* Overlay Image Wrapper (Before) - Clipped */
    .image-container.overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        height: 100% !important;
        width: 50%;
        /* Initial Clip */
        overflow: hidden !important;
        z-index: 2;
        border-right: 2px solid var(--color-accent);
        /* Restore border */
    }

    /* Images - Force Fill */
    .image-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: left top !important;
        /* Keep aligned */
        display: block !important;
    }

    /* Overlay Image - Full Width via JS (or fallback) */
    .image-container.overlay img {
        /* JS sets specific pixel width, but we set max-width: none to allow it */
        max-width: none !important;
        /* Fallback if JS fails, though JS should handle it */
    }

    .label {
        font-size: 10px !important;
        padding: 4px 8px;
        /* Reduce padding too */
    }

    /* Layout Stacking */
    .features-grid-minimal {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Request: 2x2 Grid */
        gap: 30px;
    }

    /* Product Cards */
    .product-grid-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-card-v2 {
        padding: 0;
        /* Request: Remove padding */
        overflow: hidden;
    }

    .product-image-v2 {
        background: #111;
        width: 100%;
    }

    .product-image-v2 img {
        width: 100%;
        display: block;
    }

    .product-info-v2 {
        padding: 20px;
        /* Restore padding for text */
    }

    .product-info-v2 .btn {
        padding: 10px 0;
        /* Request: Reduced height */
        font-size: 14px;
        /* Request: Smaller font */
        height: auto;
    }

    /* Product Page Mobile Overrides */
    .product-wrapper {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        height: 40vh;
        position: relative;
    }

    .product-details {
        padding-bottom: 100px;
    }

    /* Space for sticky bar */
    .sticky-mobile-bar {
        display: flex;
    }

    /* Cart Drawer Mobile */
    .cart-drawer {
        width: 100%;
        max-width: 100%;
        border-left: none;
    }
}

/* =========================================
   12. Product Spotlight
   ========================================= */
.spotlight-section {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

/* 1. Infinite Horizontal Image Marquee */
.spotlight-content {
    display: flex;
    flex-direction: column;
    /* Stack marquee and text */
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    /* Full width */
    margin: 0 auto;
    overflow: hidden;
    /* Hide scrollbars */
}

.image-marquee-wrapper {
    width: 100vw;
    /* Full viewport width */
    max-width: 100%;
    overflow: hidden;
    /* Hide overflow */
    position: relative;
    margin-bottom: 20px;
}

.marquee-track {
    display: flex;
    width: max-content;
    /* Allow track to stretch */
    animation: scrollImages 20s linear infinite;
}

.marquee-image {
    height: 350px;
    width: auto;
    flex-shrink: 0;
    aspect-ratio: 960 / 1056;
    object-fit: contain;
    margin-right: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .marquee-image {
        height: 250px;
        /* aspect-ratio stays locked via base class */
    }
}

/* Infinite Scroll Animation */
@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half the length (since we doubled images) */
}

/* Text Alignment */
.spotlight-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically if needed */
    text-align: center;
    margin-top: 50px;
    /* Gap between image and text */
}

.spotlight-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--color-white);
    letter-spacing: 2px;
}

.spotlight-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.spotlight-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-spotlight {
    font-size: 1.5rem;
    padding: 15px 40px;
    width: auto;
    min-width: 250px;
    letter-spacing: 2px;
}

/* Mobile Adjustments for Spotlight */
@media (max-width: 900px) {
    .spotlight-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .spotlight-image-container {
        height: 400px;
    }

    .spotlight-details {
        padding-left: 0;
    }
}

/* =========================================
   13. SHOEVA DNA Section
   ========================================= */
.dna-section {
    background-color: #000;
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.dna-title {
    font-size: 3rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Force 4-Column DNA Grid on Desktop */
@media (min-width: 768px) {
    .dna-grid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        max-width: 1200px;
        margin: 0 auto;
    }

    .dna-item {
        width: 22%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Mobile DNA Stack */
@media (max-width: 767px) {
    .dna-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .dna-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.dna-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(217, 53, 124, 0.3));
}

.dna-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.dna-item-desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
}


/* =========================================
   14. Media Section (White)
   ========================================= */
.media-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    color: #000000;
}

.media-title {
    font-family: var(--font-heading);
    color: #000000;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.media-logo-item {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

/* =========================================
   15. Mega Footer
   ========================================= */
.mega-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

/* Force 4-Column Footer Grid on Desktop */
@media (min-width: 768px) {
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px !important;
        text-align: left !important;
        max-width: 1200px;
        margin: 0 auto 60px;
    }

    .footer-bottom {
        display: flex !important;
        justify-content: space-between !important;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Mobile Footer Stack */
@media (max-width: 767px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #D9357C;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-input {
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    margin-bottom: 10px;
}

.btn-footer {
    width: 100%;
    padding: 12px;
    background-color: #D9357C;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D9357C;
}

.footer-address {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

.social-links {
    display: none;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
}

/* =========================================
   16. Trust & Service Section
   ========================================= */
/* =========================================
   16. Trust & Service Section (Fixed)
   ========================================= */
.trust-bar {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    padding: 60px 0;
    border-top: 1px solid #eee;
    width: 100%;
    position: relative;
    z-index: 10;
    /* Ensure it sits on top if needed */
}

/* Force Flex Row on Desktop */
@media (min-width: 769px) {
    .trust-grid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .trust-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        border-right: 1px solid #eee;
        /* Divider */
    }

    .trust-item:last-child {
        border-right: none;
    }
}

.trust-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    stroke: #D9357C;
    stroke-width: 2;
    fill: none;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #000 !important;
}

.trust-text {
    font-size: 0.9rem;
    color: #555 !important;
    line-height: 1.5;
    max-width: 250px;
}

/* Trust Bar Mobile (Tablet & Phone) */
@media (max-width: 768px) {
    .trust-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* 2x2 Grid */
        gap: 40px;
        padding: 0 20px;
    }

    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =========================================
   Mobile Menu Fixes
   ========================================= */
/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    /* Dynamic Viewport Height */
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 1) !important;
    /* Solid Black */
    z-index: 2147483647 !important;
    /* Nuclear Option */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: auto;
    /* Catch all clicks */
    border-radius: 0 !important;
}

/* Hide mobile menu entirely on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    /* Request: 30px gap */
}

.mobile-nav a {
    color: #FFFFFF !important;
    font-size: 24px;
    /* Request: 24px */
    text-decoration: none;
    font-family: var(--font-heading, sans-serif);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    margin: 0;
    /* Gap handles spacing */
}

.mobile-menu.open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a.active {
    color: var(--color-accent) !important;
}

/* Ensure hamburger in desktop header is hidden on mobile via .site-header display:none */
/* The .hamburger-btn styles are now handled in the Media Query section for the mobile header */
/* When menu is open, make hamburger (or X) white */
.mobile-menu.open~.header-inner .hamburger-btn span,
.hamburger-btn.active span {
    background-color: #fff !important;
}

/* Legal Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 150px auto;
    padding: 0 20px;
    color: #ccc;
    line-height: 1.6;
}

.policy-content h1 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
}

/* =========================================
   13. Marquee Fix (Seamless Loop Rewrite)
   ========================================= */
.marquee-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden !important;
    /* The Jail */
    position: relative;
    background: #000;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    /* The Track */
    will-change: transform;
    animation: scrollLeft 20s linear infinite;
}

.marquee-track span {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Mobile Size */
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    color: transparent;
    /* Hollow Effect */
    -webkit-text-stroke: 1px #FFF;
    opacity: 0.8;
    padding-right: 0;
    /* No gap needed, space is in text */
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way (1 full copy) */
    }
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .marquee-track span {
        font-size: 4rem;
        /* Desktop Size */
        -webkit-text-stroke: 2px #FFF;
    }
}

/* =========================================
   15. Safe Center Cart Button (Floating)
   ========================================= */
/* --- RESET --- */
.cart-safe-wrapper,
.btn-safe-cart {
    box-sizing: border-box !important;
}

/* --- THE SAFETY ZONE (Wrapper) --- */
.cart-safe-wrapper {
    width: 100%;
    padding: 0 20px;
    /* Permanent breathing room */
    display: flex;
    justify-content: center;
    /* Aligns center always */
    margin: 20px 0;
}

/* --- THE FLOATER (Button) --- */
.btn-safe-cart {
    width: 100%;
    /* Fill the safe zone */
    max-width: 450px;
    /* Constraint to prevent clipping */
    margin: 0 auto;
    /* Force Center */
    background: #D9357C;
    color: white;
    padding: 16px 0;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    /* Soft edges */
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-safe-cart:hover {
    background: #b02661;
}

/* --- MOBILE FLOATING DOCK --- */
@media (max-width: 768px) {
    .cart-safe-wrapper {
        position: fixed !important;
        bottom: 20px !important;
        /* Float UP */
        left: 0;
        right: 0;
        z-index: 9999;
        background: transparent;
        /* No black bar */
        padding: 0 20px;
        /* Maintain gaps */
        pointer-events: none;
        /* Let clicks pass through wrapper */
        justify-content: center;
        /* Double ensure center */
    }

    .btn-safe-cart {
        pointer-events: auto;
        /* Re-enable clicks on button */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        /* Pop */
        width: 100%;
        max-width: 450px;
        /* Maintain constraint on mobile */
    }

    /* Add padding to body so content isn't hidden behind floating button */
    body {
        padding-bottom: 100px;
    }
}

/* =========================================
   Interactive Product Carousel Upgrade
   ========================================= */
.product-carousel-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-display {
    position: relative;
    width: 100%;
    aspect-ratio: 960 / 1056;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

#primary-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.carousel-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.carousel-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: 0.2s;
}

.active-thumb {
    border: 2px solid #D9357C;
    opacity: 1;
}