/* ═══════════════════════════════════════════════════════════════
   STICKER SUPPLY SHOP - Electric Playful Theme
   Dark • Lime Accent • Bold • Cute • Futuristic
   
   Table of Contents:
   0. View Transitions
   1. CSS Variables
   2. Reset & Base
   3. Layout & Container
   4. Header & Navigation
   5. Hero Section
   6. Trust Bar
   7. Builder Section (Upload & Config)
   8. How It Works
   9. Why Us
   10. Social Proof / Testimonials
   11. Final CTA
   12. Footer
   13. FAQ Page
   14. File Guidelines Page
   15. Generic Content Pages
   16. Gallery
   17. Shipping Page
   18. Thank You & Error Pages
   19. Modals & Overlays
   20. Cart Drawer
   21. JS Interaction States
   22. Animations
   23. Utilities
   24. Media Queries (Consolidated)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   0. VIEW TRANSITIONS
   Cross-document page transitions (Chrome 126+, Safari 18+)
   Falls back to instant navigation on unsupported browsers.
   ═══════════════════════════════════════════════════════════════ */

/* Enable cross-document transitions for all page navigations */
@view-transition {
    navigation: auto;
}

/* ── Outgoing page ── */
::view-transition-old(root) {
    animation: 220ms cubic-bezier(0.4, 0, 1, 1) both vt-fade-out;
}

/* ── Incoming page ── */
::view-transition-new(root) {
    animation: 280ms cubic-bezier(0, 0, 0.2, 1) both vt-fade-in;
}

@keyframes vt-fade-out {
    to {
        opacity: 0;
        transform: scale(0.98) translateY(4px);
    }
}

@keyframes vt-fade-in {
    from {
        opacity: 0;
        transform: scale(1.01) translateY(-4px);
    }
}

/* ── Header stays locked in place during transitions ── */
.header {
    view-transition-name: site-header;
}

/* No animation for the header — it's the same on every page */
::view-transition-old(site-header),
::view-transition-new(site-header) {
    animation: none;
    mix-blend-mode: normal;
}

/* ── Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Electric palette */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    
    /* Lime accent - from SSS logo */
    --lime: #9bc848;
    --lime-bright: #b8e060;
    --lime-dark: #7ba830;
    --lime-glow: rgba(155, 200, 72, 0.4);
    --lime-subtle: rgba(155, 200, 72, 0.1);
    
    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #909090; /* Improved contrast: 5.8:1 ratio (was 4.3:1) */
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Semantic */
    --success: #22c55e;
    --error: #ef4444;
    
    /* Surface colors (used in cart/modals) */
    --surface: var(--bg-card);
    --surface-light: var(--bg-card-hover);
    --border: var(--gray-800);
    --text-muted: var(--gray-400);
    
    /* Radius - rounded = cute */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows & Glows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --glow-lime: 0 0 20px var(--lime-glow), 0 0 40px rgba(155, 200, 72, 0.2);
    --glow-lime-sm: 0 0 10px var(--lime-glow);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Inter', -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Body scroll lock when modals are open - iOS compatible */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

/* Prevent media elements from causing horizontal overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Clip overflow on major sections */
section, header, footer, main, article, aside {
    max-width: 100vw;
    overflow-x: clip;
}

/* Focus states */
*:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

/* Smooth transitions on interactive elements */
a, button, input, .size-btn, .qty-row, .finish-btn, .step, .why-card {
    transition: all 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   3. LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(155, 200, 72, 0.4));
    transition: filter 0.3s ease;
}

/* Logo Easter egg glow effect */
.logo-img.glow-active {
    filter: drop-shadow(0 0 20px rgba(155, 200, 72, 0.9)) drop-shadow(0 0 40px rgba(155, 200, 72, 0.6));
    animation: logo-pulse 0.4s ease-out;
}

/* Page glow overlay */
.page-glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    background: radial-gradient(circle at var(--glow-x, 50px) var(--glow-y, 50px), 
        rgba(155, 200, 72, 0.4) 0%, 
        rgba(155, 200, 72, 0.1) 30%,
        transparent 70%);
    transition: opacity 0.3s ease-out;
}

/* iOS fix: disable glow effects and overlays on mobile to prevent touch blocking */
@media (max-width: 768px) {
    /* Disable noise texture overlay */
    body::before {
        display: none !important;
    }
    
    .page-glow-overlay {
        display: none !important;
    }
    
    .logo-img {
        filter: none !important;
    }
    
    .logo-img.glow-active {
        filter: none !important;
        animation: none !important;
    }
}

.page-glow-overlay.active {
    animation: glow-spread 1.2s ease-out forwards;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login-ghost {
    background: transparent;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-login-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-login {
    background: var(--lime);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--lime-bright);
    box-shadow: var(--glow-lime-sm);
    transform: translateY(-1px);
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cart-btn svg {
    pointer-events: none;
    transition: stroke 0.2s;
}

.cart-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-400);
    transition: stroke 0.2s;
}

.cart-btn:hover svg {
    stroke: var(--lime);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--lime);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge[data-count="0"],
.cart-badge:empty {
    display: none;
}

/* Hamburger Menu Button */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Button - hidden on desktop */
.mobile-menu-btn {
    display: none;
}

/* Mobile Menu Dropdown - hidden on desktop */
.mobile-menu {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
    padding: 0;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu.active {
        display: none !important;
        visibility: hidden !important;
    }
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-800);
    transition: all 0.2s;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    color: var(--lime);
    background: rgba(155, 200, 72, 0.1);
}

/* Mobile Navigation Bar - Marquee Style - NOW HIDDEN */
nav.mobile-nav-bar {
    display: none !important; /* Replaced by hamburger menu */
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2d2d44;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    overflow: hidden;
}

.mobile-nav-bar .mobile-nav-scroll {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    animation: mobile-nav-scroll 20s linear infinite;
    width: max-content;
}

@keyframes mobile-nav-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

a.mobile-nav-link,
a.mobile-nav-link:link,
a.mobile-nav-link:visited {
    flex-shrink: 0;
    display: inline-block;
    padding: 10px 18px;
    background: #9BC848;
    border: none;
    border-radius: 24px;
    color: #0d0d14;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

a.mobile-nav-link:hover,
a.mobile-nav-link:active {
    background: #b5d96a;
    color: #0d0d14;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Subtle gradient glow behind */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--lime-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

/* Neon Sign Animation */
.hero h1.neon-sign {
    color: #fff !important;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px var(--lime),
        0 0 60px var(--lime),
        0 0 90px var(--lime),
        0 0 120px var(--lime),
        0 0 150px var(--lime) !important;
    animation: neon-flicker 3s ease-in-out infinite, neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    0% {
        text-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px var(--lime),
            0 0 60px var(--lime),
            0 0 90px var(--lime),
            0 0 120px var(--lime);
    }
    100% {
        text-shadow:
            0 0 15px #fff,
            0 0 30px #fff,
            0 0 50px var(--lime),
            0 0 100px var(--lime),
            0 0 150px var(--lime),
            0 0 200px var(--lime),
            0 0 250px var(--lime-bright);
    }
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.95;
    }
}

.hero h1 .highlight {
    color: var(--lime);
    position: relative;
}

.hero p,
.hero-tagline {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-since {
    display: block;
    margin-top: 4px;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.hero .btn-primary:hover {
    background: var(--lime-bright);
    box-shadow: var(--glow-lime);
    transform: translateY(-2px);
}

.hero-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   6. TRUST BAR
   ═══════════════════════════════════════════════════════════════ */

.trust-bar {
    background: #0a0a0a;
    border: none;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* LED dot matrix grid overlay */
.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(0,0,0,0.3) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 1;
}

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

.marquee-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    white-space: nowrap;
    text-shadow: 
        0 0 5px var(--lime),
        0 0 10px var(--lime),
        0 0 20px rgba(155, 200, 72, 0.5);
}

/* No bullet prefix */

/* Mobile: static centered trust bar */
.trust-bar-mobile {
    display: none;
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
}

.trust-bar-mobile .trust-items-static {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-bar-mobile .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lime);
    white-space: nowrap;
    text-shadow: 
        0 0 5px var(--lime),
        0 0 10px var(--lime);
}

/* ═══════════════════════════════════════════════════════════════
   7. BUILDER SECTION (Upload & Config)
   ═══════════════════════════════════════════════════════════════ */

.builder-section {
    padding: 64px 0 32px;
    overflow: clip;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Left column - sticky to follow scroll */
.preview-column {
    position: sticky;
    top: 20px;
    align-self: start;
    margin-top: 0;
    padding-top: 0;
}

/* Right column */
.config-column {
    align-self: start;
    margin-top: 0;
    padding-top: 0;
}

/* Upload Zone - Glass card */
.upload-zone {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px dashed rgba(155, 200, 72, 0.3);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

.upload-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--lime-subtle) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.upload-zone:hover {
    border-color: var(--lime);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.upload-zone:hover::before {
    opacity: 1;
}

.upload-zone.drag-over,
.upload-zone.dragover {
    border-color: var(--lime);
    background: linear-gradient(135deg, rgba(155, 200, 72, 0.1) 0%, rgba(155, 200, 72, 0.05) 100%);
    transform: scale(1.02);
    box-shadow: var(--glow-lime);
}

/* Upload zone with preview */
.upload-zone.has-preview {
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--lime);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.upload-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--lime);
    position: relative;
}

.upload-zone h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.upload-zone p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
    position: relative;
}

.upload-formats {
    font-size: 12px;
    color: var(--gray-500);
    position: relative;
}

.upload-preview-img {
    max-width: 100%;
    max-height: 600px;
    border-radius: var(--radius);
    transition: width 0.3s ease, height 0.3s ease;
}

/* Config Card - Glass effect */
.config-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    margin-top: 0;
}

.config-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: var(--lime);
}

/* Config Group & Label */
.config-group {
    margin-bottom: 24px;
}

.config-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.config-label .size-help-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--lime);
    text-decoration: none;
}

.config-label .size-help-link:hover {
    text-decoration: underline;
}

.required-indicator {
    color: var(--lime);
}

/* Size Options */
.size-grid,
.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.size-btn {
    background: var(--bg-dark);
    border: 1px solid var(--gray-700);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    cursor: pointer;
}

.size-btn:hover {
    border-color: var(--gray-500);
    color: var(--white);
    background: var(--bg-card-hover);
}

.size-btn.active {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: var(--glow-lime-sm);
}

.size-btn.disabled {
    opacity: 0.5;
    background: var(--bg-card);
    color: var(--gray-500);
}

.size-btn.size-mismatch {
    opacity: 0.4;
    background: var(--bg-card);
    border-color: var(--gray-700);
    color: var(--gray-500);
    position: relative;
}

.size-btn.size-mismatch:hover {
    opacity: 0.6;
    border-color: var(--gray-600);
}

.size-btn.size-mismatch::after {
    content: '□';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 10px;
    color: var(--gray-500);
}

/* Size Custom Input */
.size-custom {
    grid-column: span 3;
    margin-top: 12px;
}

.size-custom.auto-suggested {
    animation: suggestPulse 0.5s ease;
    background: var(--lime-subtle);
    border-radius: var(--radius);
    padding: 8px;
    margin: -8px;
}

.size-custom.disabled {
    opacity: 0.5;
}

.size-custom.disabled input {
    background: var(--bg-card);
    color: var(--gray-500);
}

.size-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-custom-input {
    width: 70px;
    padding: 10px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.size-custom-input:focus {
    outline: none;
    border-color: var(--lime);
}

.size-custom-x {
    color: var(--gray-400);
    font-size: 16px;
    font-weight: 500;
}

.size-custom-unit {
    color: var(--gray-400);
    font-size: 14px;
}

.size-custom-note {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

/* Quantity List */
.qty-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.qty-row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    margin-bottom: 4px;
    transition: all 0.15s;
    gap: 12px;
    background: var(--bg-dark);
}

.qty-row:last-child {
    margin-bottom: 0;
}

.qty-row:hover {
    border-color: var(--gray-600);
    background: var(--bg-card-hover);
}

.qty-row.active {
    background: rgba(155, 200, 72, 0.08);
    border-color: var(--lime);
    box-shadow: 0 0 0 1px var(--lime);
}

.qty-row.popular {
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

/* Selected quantity row - lime highlight */
.qty-row:has(input[type="radio"]:checked) {
    border: 2px solid var(--lime);
    background: rgba(155, 200, 72, 0.1);
}

.qty-row input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--lime);
    cursor: pointer;
    flex-shrink: 0;
}

.qty-row .qty-num {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    min-width: 55px;
}

.qty-row .qty-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    min-width: 70px;
    text-align: right;
    margin-left: auto;
}

.qty-row .qty-savings {
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-dark);
    background: var(--lime);
    padding: 3px 8px;
    border-radius: 10px;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
}

.qty-savings-placeholder {
    min-width: 70px;
}

.qty-row .qty-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

.qty-row .qty-badge.starter,
.qty-row .qty-badge.sample {
    color: var(--text-muted);
    background: var(--surface-light);
    border: 1px solid var(--border);
}

.qty-row .qty-badge.popular {
    color: #000;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    font-weight: 700;
}

/* Custom Quantity Input */
.qty-row-custom {
    flex-wrap: wrap;
}

.qty-custom-input {
    width: 120px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
    transition: all 0.2s;
}

.qty-custom-input::placeholder {
    color: var(--text-muted);
}

.qty-custom-input:focus {
    outline: none;
    border-color: var(--lime);
    background: var(--bg-dark);
    box-shadow: 0 0 0 2px rgba(155, 200, 72, 0.2);
}

.qty-custom-input::-webkit-outer-spin-button,
.qty-custom-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-custom-input[type=number] {
    -moz-appearance: textfield;
}

/* Finish Options */
.finish-grid,
.finish-options {
    display: flex;
    gap: 12px;
}

.finish-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius);
    cursor: pointer;
}

.finish-btn:hover {
    border-color: var(--gray-500);
}

.finish-btn.active {
    border-color: var(--lime);
    background: rgba(155, 200, 72, 0.1);
}

.finish-preview {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.finish-preview.glossy {
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #fff 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

.finish-preview.matte {
    background: linear-gradient(135deg, #d0d0d0 0%, #c0c0c0 100%);
}

.finish-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.finish-info strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.finish-info small {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
}

.finish-warning {
    margin-top: 8px;
    font-size: 13px;
    color: var(--error);
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, rgba(155, 200, 72, 0.15) 0%, rgba(155, 200, 72, 0.05) 100%);
    border: 1px solid rgba(155, 200, 72, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 24px 0;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--lime);
}

.price-value.price-updated {
    animation: priceUpdate 0.3s ease;
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-400);
}

.shipping-note {
    color: var(--lime);
    font-weight: 500;
}

/* CTA Button */
.cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 32px;
    background: var(--lime);
    border: none;
    border-radius: var(--radius-full);
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(155, 200, 72, 0.3);
}

.cta-btn:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(155, 200, 72, 0.4);
}

.cta-btn:active {
    transform: translateY(0);
}

.cta-icon {
    font-size: 20px;
}

/* Guarantees */
.guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
}

.guarantee-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Price Summary */
.price-summary {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.price-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid var(--gray-800);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.btn-checkout {
    width: 100%;
    background: var(--lime);
    color: var(--bg-dark);
    padding: 8px 12px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-checkout:hover {
    background: var(--lime-bright);
    box-shadow: var(--glow-lime);
    transform: translateY(-1px);
}

.cart-secure {
    font-size: 10px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 2px;
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Upload Tips */
.upload-tips {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
    max-width: 100%;
    box-sizing: border-box;
}

.upload-tips h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-list {
    list-style: none;
}

.tip-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 10px;
    line-height: 1.5;
}

.tip-list li:last-child {
    margin-bottom: 0;
}

.tip-list li strong {
    color: var(--white);
}

/* File Tips (alternate styling) */
.file-tips {
    background: linear-gradient(135deg, rgba(155, 200, 72, 0.08) 0%, rgba(155, 200, 72, 0.02) 100%);
    border: 1px solid rgba(155, 200, 72, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
}

.file-tips h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.5;
}

.tips-list li strong {
    color: var(--white);
    font-weight: 600;
}

.tip-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.tips-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lime);
    text-decoration: none;
}

.tips-link:hover {
    color: var(--lime-bright);
    text-decoration: underline;
}

.file-tips.hidden-after-upload {
    display: none;
}

/* Email Artwork & Change Design */
.email-artwork-option {
    margin-top: 16px;
    text-align: center;
}

.email-artwork-toggle {
    background: transparent;
    border: 1px dashed var(--gray-700);
    border-radius: var(--radius);
    padding: 12px 20px;
    color: var(--gray-400);
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.email-artwork-toggle:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: rgba(155, 200, 72, 0.05);
}

.email-artwork-toggle strong {
    color: var(--lime);
}

.email-artwork-active {
    margin-top: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

.email-artwork-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(155, 200, 72, 0.05);
    border: 1px solid rgba(155, 200, 72, 0.2);
    border-radius: var(--radius);
}

.email-icon {
    font-size: 24px;
}

.email-details {
    flex: 1;
}

.email-instruction {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.email-address {
    color: var(--lime);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.email-address:hover {
    text-decoration: underline;
}

.email-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.upload-instead-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--gray-400);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    text-align: center;
}

.upload-instead-btn:hover {
    border-color: var(--gray-600);
    color: var(--white);
}

.change-design-container {
    margin-top: 16px;
    text-align: center;
}

.change-design-btn {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 12px 24px;
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.change-design-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: rgba(155, 200, 72, 0.05);
}

/* Design Name Input */
.design-name-input {
    margin-bottom: 20px;
}

.design-name-input label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.design-name-input input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
}

.design-name-input input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: var(--glow-lime-sm);
}

.design-name-input input::placeholder {
    color: var(--gray-500);
}

.design-name-input.shake {
    animation: shake 0.5s ease;
}

.design-name-input.error input {
    border-color: var(--error);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* File Guidelines Compact */
.file-guidelines-compact {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
}

.guidelines-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-800);
}

.guidelines-content {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.6;
}

.guidelines-content p {
    margin-bottom: 8px;
}

.guidelines-content strong {
    color: var(--white);
}

.guidelines-warning {
    font-size: 12px;
    color: #fbbf24;
    margin-top: 16px;
    padding: 12px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius);
}

/* Sticker Preview/Canvas */
.sticker-stage {
    background: linear-gradient(135deg, var(--gray-800) 25%, transparent 25%),
                linear-gradient(225deg, var(--gray-800) 25%, transparent 25%),
                linear-gradient(45deg, var(--gray-800) 25%, transparent 25%),
                linear-gradient(315deg, var(--gray-800) 25%, var(--gray-900) 25%);
    background-size: 20px 20px;
    background-color: var(--bg-dark);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
}

.sticker-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-canvas {
    max-width: 100%;
    max-height: 240px;
    border-radius: 4px;
}

/* Proof Approval Section */
.proof-approval-section {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    padding: 4px 6px;
    margin-top: 4px;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.proof-approval-section h4 {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 3px;
    text-align: center;
}

.proof-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.proof-note {
    font-size: 9px;
    color: var(--gray-500);
    margin-top: 3px;
    text-align: center;
}

.proof-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.proof-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 4px 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.proof-option:hover {
    border-color: var(--gray-600);
    background: var(--surface-light);
    transform: translateY(-2px);
}

.proof-option.active,
.proof-option:has(input[type="radio"]:checked) {
    border-color: var(--lime);
    background: rgba(155, 200, 72, 0.1);
    box-shadow: 0 0 0 1px var(--lime);
}

.proof-option input[type="radio"] {
    display: none;
}

.proof-option-icon {
    font-size: 14px;
}

.proof-option-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.proof-option.active .proof-option-text,
.proof-option:has(input[type="radio"]:checked) .proof-option-text {
    color: var(--lime);
}

/* Email input for proofs */
.proof-contact-wrapper {
    margin-top: 10px;
}

.proof-contact-wrapper input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
}

.proof-contact-wrapper input:focus {
    outline: none;
    border-color: var(--lime);
}

/* Honeypot - hidden from humans */
.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   8. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-400);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.step:hover {
    border-color: rgba(155, 200, 72, 0.3);
    transform: translateY(-4px);
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--lime);
    color: var(--bg-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--glow-lime-sm);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   9. WHY US
   ═══════════════════════════════════════════════════════════════ */

.why-us {
    padding: 40px 0 80px;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

@media (hover: hover) and (pointer: fine) {
    .why-card:hover {
        border-color: var(--lime);
        box-shadow: var(--glow-lime-sm);
    }
}

.why-card-icon,
.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--lime);
    display: flex;
    justify-content: center;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   10. SOCIAL PROOF / TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.section-heading-center {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.section-subheading-center {
    text-align: center;
    color: #FBBC04;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.social-proof {
    padding: 64px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    overflow: hidden;
}

/* Infinite Scroll Ticker Wrapper */
.testimonial-ticker-wrapper {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    padding: 20px 0;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE */
    cursor: grab;
    /* Edge fades via mask — stays fixed while content scrolls */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.testimonial-ticker-wrapper:active {
    cursor: grabbing;
}

.testimonial-ticker-wrapper::-webkit-scrollbar {
    display: none;               /* Chrome/Safari */
}

/* Ticker Container - holds all cards, no animation (JS handles scroll) */
.testimonial-ticker {
    display: flex;
    gap: 24px;
    min-width: max-content;
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual Testimonial Cards */
a.testimonial-card,
a.testimonial-card:link,
a.testimonial-card:visited,
a.testimonial-card:hover,
a.testimonial-card:active,
a.testimonial-card * {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Hover effects — desktop/mouse only, not touch */
@media (hover: hover) and (pointer: fine) {
    .testimonial-card:hover {
        border-color: var(--lime);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(155, 200, 72, 0.15);
    }
}

.testimonial-stars {
    font-size: 24px;
    color: var(--lime);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text,
.testimonial-quote {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author .author-name {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    font-style: normal;
}

.testimonial-author .author-detail {
    font-size: 14px;
    color: var(--gray-400);
    font-style: normal;
}

.testimonial-card-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-ticker {
        animation-duration: 30s;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-ticker-wrapper::before,
    .testimonial-ticker-wrapper::after {
        width: 50px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   11. FINAL CTA
   ═══════════════════════════════════════════════════════════════ */

.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime) 50%, var(--lime-bright) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.08;
}

.final-cta::after {
    display: none;
}

.final-cta h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--bg-dark);
    margin-bottom: 16px;
    position: relative;
}

.final-cta p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: var(--bg-dark);
    color: var(--lime);
    position: relative;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.final-cta .btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* CTA Section (used on multiple pages) */
.cta-section {
    background: linear-gradient(135deg, #7ba830 0%, #9bc848 50%, #b8e060 100%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--lime);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--gray-800);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 4fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: center;
}

.footer-brand {
    max-width: 280px;
    text-align: center;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--lime);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--lime);
}

/* Footer Trust Badges */
.footer-trust-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
    margin-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.footer-trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-badge-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.payment-methods {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-trust-section {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
    }
    
    .footer-trust-item {
        min-width: 100%;
        padding: 8px 0;
    }
    
    .trust-badge-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .payment-methods {
        font-size: 12px;
        line-height: 1.8;
        max-width: 280px;
        margin: 0 auto;
    }
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════
   13. FAQ PAGE
   ═══════════════════════════════════════════════════════════════ */

.faq-hero {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-800);
}

.faq-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 12px;
}

.faq-hero p {
    font-size: 16px;
    color: var(--gray-400);
}

.faq-section {
    background: var(--bg-dark);
    padding: 48px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--gray-700);
}

.faq-item.active {
    border-color: var(--lime);
}

.faq-question {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--lime);
}

.faq-question .icon {
    color: var(--gray-500);
    transition: transform 0.2s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--lime);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.faq-answer-content a {
    color: var(--lime);
}

.contact-box {
    background: linear-gradient(135deg, rgba(155, 200, 72, 0.1) 0%, rgba(155, 200, 72, 0.02) 100%);
    border: 1px solid rgba(155, 200, 72, 0.2);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: "💬";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
}

.contact-box h2,
.contact-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-box p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    background: var(--lime);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.contact-box .btn-primary:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   14. FILE GUIDELINES PAGE
   ═══════════════════════════════════════════════════════════════ */

.guidelines-hero {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 60px 0 100px;
    text-align: center;
    border-bottom: 1px solid var(--gray-800);
}

.guidelines-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 12px;
}

.guidelines-hero p {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto;
}

.quick-specs {
    background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 40px;
    margin: -60px auto 24px;
    max-width: 1000px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quick-specs h2 {
    color: var(--lime);
    text-align: center;
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec-item {
    background: var(--bg-dark);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}

.spec-item:hover {
    border-color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155, 200, 72, 0.15);
}

.spec-item .value {
    font-size: 32px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 8px;
}

.spec-item .label {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.5;
}

.spec-link {
    cursor: pointer;
    text-decoration: none;
}

.spec-link:hover {
    text-decoration: none;
}

.guidelines-content {
    background: var(--bg-dark);
    padding: 24px 20px 60px;
}

.guideline-section {
    max-width: 800px;
    margin: 0 auto;
}

.guideline-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.guideline-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guideline-card h2 .icon {
    font-size: 24px;
}

.guideline-card .subtitle {
    font-size: 14px;
    color: var(--lime);
    margin-bottom: 16px;
    font-weight: 500;
}

.guideline-card p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guideline-card ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.guideline-card ul li {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--gray-800);
}

.guideline-card ul li:last-child {
    border-bottom: none;
}

.guideline-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: 700;
}

.guideline-card strong {
    color: var(--white);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(155, 200, 72, 0.12) 0%, rgba(155, 200, 72, 0.04) 100%);
    border: 1px solid rgba(155, 200, 72, 0.25);
    border-left: 3px solid var(--lime);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

.highlight-box strong {
    color: var(--lime);
}

.warning-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.04) 100%);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-left: 3px solid #fbbf24;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

.warning-box strong {
    color: #fbbf24;
}

/* ═══════════════════════════════════════════════════════════════
   15. GALLERY
   ═══════════════════════════════════════════════════════════════ */

.gallery-hero {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-800);
}

.gallery-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 12px;
}

.gallery-hero p {
    font-size: 16px;
    color: var(--gray-400);
}

.gallery-content {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-widget {
    width: 100%;
    min-height: 400px;
}

.gallery-widget iframe.lightwidget-widget {
    width: 100% !important;
    min-height: 600px;
}

.gallery-section {
    background: var(--bg-dark);
    padding: 64px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: var(--glow-lime-sm);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
}

.gallery-cta {
    background: linear-gradient(135deg, var(--lime-dark) 0%, var(--lime) 50%, var(--lime-bright) 100%);
    padding: 48px 20px;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.gallery-cta p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta .btn-primary {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--lime);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-cta .btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    padding: 20px 16px;
    border-radius: 8px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-400);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   17. SHIPPING PAGE
   ═══════════════════════════════════════════════════════════════ */

.shipping-hero {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-800);
}

.shipping-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 12px;
}

.shipping-hero p {
    font-size: 16px;
    color: var(--gray-400);
}

.shipping-content {
    background: var(--bg-dark);
    padding: 64px 0;
}

.shipping-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.shipping-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-card p,
.shipping-card ul {
    list-style: none;
    padding: 0;
}

.shipping-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-800);
}

.shipping-card li:last-child {
    border-bottom: none;
}

.shipping-card strong {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   18. MODALS & OVERLAYS
   ═══════════════════════════════════════════════════════════════ */

/* Modal overlay base styles */
.modal,
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
}

.modal.open,
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 24px;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    color: var(--gray-300);
    font-size: 14px;
    line-height: 1.6;
}

.modal-footer {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Skip Proof Warning Modal */
.skip-proof-modal {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    text-align: center;
    padding: 40px;
}

.skip-proof-modal h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.skip-proof-modal .modal-subtitle {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.skip-proof-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
    margin-bottom: 20px;
}

.skip-proof-warning p {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 12px;
}

.skip-proof-warning ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skip-proof-warning ul li {
    color: var(--gray-300);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.skip-proof-warning ul li:last-child {
    border-bottom: none;
}

.skip-proof-warning ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.skip-proof-note {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.skip-proof-buttons {
    display: flex;
    gap: 12px;
}

.btn-go-back {
    flex: 1;
    padding: 14px 20px;
    background: var(--lime);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-go-back:hover {
    background: var(--lime-bright);
}

.btn-confirm-skip {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-confirm-skip:hover {
    border-color: var(--gray-600);
    color: var(--gray-300);
}

/* Cart Success Modal */
.cart-success-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-success-modal.active {
    display: flex;
}

.cart-success-content {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

.cart-success-icon {
    width: 64px;
    height: 64px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--bg-dark);
}

.cart-success-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.cart-success-content p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.cart-success-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-add-more {
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: var(--bg-dark);
    border: 1px solid var(--gray-700);
    color: var(--white);
}

.btn-add-more:hover {
    background: var(--bg-card-hover);
    border-color: var(--gray-600);
}

.btn-checkout-now {
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: var(--lime);
    border: none;
    color: var(--bg-dark);
}

.btn-checkout-now:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
    box-shadow: var(--glow-lime-sm);
}

/* Upload Confirm Modal */
.upload-confirm-modal {
    text-align: center;
    max-width: 450px;
    background: var(--bg-card);
    overflow-y: auto;
    max-height: 90vh;
    padding-top: 16px;
}

.upload-confirm-modal h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.upload-confirm-preview {
    background: linear-gradient(-45deg, #6366f1, #8b5cf6, #3b82f6, #0ea5e9, #6366f1);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    border-radius: var(--radius);
    padding: 20px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-confirm-preview img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.upload-confirm-modal .modal-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.upload-notes-section {
    margin: 4px 0;
    text-align: left;
}

.notes-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.notes-optional {
    font-weight: 400;
    color: var(--gray-500);
}

.artwork-notes {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 60px;
    background: var(--bg-dark);
    color: var(--white);
}

.artwork-notes:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: var(--glow-lime-sm);
}

.artwork-notes::placeholder {
    color: var(--gray-500);
}

/* Border Comparison Section */
.border-comparison {
    margin-top: 8px;
    padding: 12px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    border: 1px solid var(--gray-800);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.border-comparison.error {
    border-color: var(--error);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.border-comparison.shake {
    animation: shake 0.5s ease;
}

.border-comparison-title {
    font-weight: 600;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 8px;
}

.border-comparison-examples {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.border-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.border-example-img {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    border-radius: 6px;
    background: linear-gradient(-45deg, #6366f1, #8b5cf6, #3b82f6, #0ea5e9);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.border-example-img img {
    width: 44px;
    height: auto;
    object-fit: contain;
}

.border-example span {
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 500;
    line-height: 1.3;
    display: block;
    text-align: center;
}

.border-comparison-note {
    font-size: 11px;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
}

/* Selectable border options */
.border-option {
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    border: 3px solid var(--gray-700);
    position: relative;
    background: var(--bg-dark);
}

.border-option:hover {
    border-color: var(--gray-500);
    background: rgba(255,255,255,0.05);
}

.border-option:active {
    transform: scale(0.98);
}

.border-option.selected {
    border-color: var(--lime);
    background: rgba(155, 200, 72, 0.15);
    box-shadow: 0 0 12px rgba(155, 200, 72, 0.3);
}

.border-check {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--lime);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.border-option.selected .border-check {
    display: flex;
}

/* ═══════════════════════════════════════════════════════════════
   20. CART DRAWER
   ═══════════════════════════════════════════════════════════════ */

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid var(--gray-700);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
}

.cart-drawer.open,
.cart-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.cart-overlay.open,
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Required for ::after scroll indicator */
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.cart-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 24px;
}

.cart-close:hover {
    color: var(--white);
}

/* Scrollable content wrapper (items + proof + discount) */
.cart-scrollable {
    flex: 1;
    min-height: 0; /* Critical for flexbox scrolling */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Persistent scrollbar for scrollable area */
.cart-scrollable::-webkit-scrollbar {
    width: 8px;
}

.cart-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 4px 0;
}

.cart-scrollable::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cart-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--lime-bright);
}

/* Firefox scrollbar */
.cart-scrollable {
    scrollbar-width: thin;
    scrollbar-color: var(--lime) rgba(255, 255, 255, 0.05);
}

.cart-items {
    padding: 20px;
    padding-bottom: 0; /* Remove bottom padding since proof section follows */
}

/* Proof approval section (moved from footer) - COMPACT */
.cart-proof-section {
    padding: 12px 16px;
    background: var(--surface);
    border-top: 1px solid var(--gray-800);
}

.proof-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.proof-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.proof-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 6px;
    background: var(--gray-800);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.proof-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.proof-option input[type="radio"]:checked + .proof-option-icon {
    transform: scale(1.15);
}

.proof-option input[type="radio"]:checked ~ .proof-option-text {
    color: var(--lime);
    font-weight: 700;
}

.proof-option:has(input:checked) {
    background: rgba(155, 200, 72, 0.1);
    border-color: var(--lime);
}

.proof-option-icon {
    font-size: 18px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.proof-option-text {
    font-size: 11px;
    color: var(--gray-300);
    transition: all 0.2s ease;
}

.proof-note {
    font-size: 10px;
    color: var(--gray-400);
    text-align: center;
    margin: 6px 0 0 0;
}

/* Proof options highlight when validation fails */
.proof-options.highlight .proof-option {
    border-color: var(--lime) !important;
    animation: proof-glow 0.5s ease-in-out 3;
}

@keyframes proof-glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(155, 200, 72, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(155, 200, 72, 0.8), 0 0 30px rgba(155, 200, 72, 0.4);
        transform: scale(1.03);
    }
}

.proof-contact-wrapper {
    margin-top: 8px;
}

.proof-contact-input {
    width: 100%;
    padding: 8px 10px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
}

.proof-contact-input:focus {
    outline: none;
    border-color: var(--lime);
}

/* Discount code section (moved from footer) - COMPACT */
.cart-discount-section {
    padding: 12px 16px;
    background: var(--bg-dark);
    border-top: 1px solid var(--gray-800);
}

.discount-input-group {
    display: flex;
    gap: 6px;
}

.discount-input-group input {
    flex: 1;
    padding: 8px 10px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
}

.discount-input-group input::placeholder {
    color: var(--gray-500);
    text-transform: none;
}

.discount-input-group input:focus {
    outline: none;
    border-color: var(--lime);
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-specs {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--lime);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 4px;
    min-height: 44px; /* iOS tap target requirement */
    min-width: 44px;
    touch-action: manipulation; /* Prevents double-tap zoom on iOS */
    -webkit-tap-highlight-color: rgba(239, 68, 68, 0.1); /* Visual feedback on mobile */
}

.cart-item-remove:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.cart-empty {
    padding: 80px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.cart-empty-icon {
    font-size: 72px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(155, 200, 72, 0.3));
}

.cart-empty-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-empty-subtitle {
    color: var(--gray-400);
    font-size: 15px;
    margin-bottom: 32px;
}

.cart-empty a.cart-empty-cta,
a.cart-empty-cta {
    display: inline-block;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none !important;
    background: var(--lime) !important;
    color: var(--bg-dark) !important;
    transition: all 0.2s ease;
}

.cart-empty a.cart-empty-cta:hover,
a.cart-empty-cta:hover {
    background: var(--lime-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(155, 200, 72, 0.4);
    color: var(--bg-dark) !important;
}

.cart-footer {
    padding: 16px 20px;
    background: var(--bg-dark);
    border-top: 2px solid var(--gray-800);
    flex-shrink: 0;
    /* Sticky footer - always visible */
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* Compact totals in footer */
.cart-totals-compact {
    margin-bottom: 12px;
}

.cart-totals-compact .cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--gray-300);
}

.cart-totals-compact .cart-row-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--gray-700);
}

.cart-totals-compact .cart-row-total span:last-child {
    color: var(--lime);
    font-size: 20px;
}

.cart-totals-compact .discount-amount {
    color: var(--lime);
    font-weight: 600;
}

.cart-tax-note {
    font-size: 11px;
    color: var(--gray-500);
    margin: 4px 0 0 0;
    text-align: center;
}

.cart-totals {
    margin-bottom: 8px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 12px;
    flex-shrink: 0;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--gray-400);
}

.cart-row.total {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    padding-top: 4px;
    margin-top: 2px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.cart-subtotal,
.cart-shipping,
.cart-tax,
.cart-subtotal,
.cart-shipping,
.cart-tax {
    color: var(--gray-400);
    border-bottom: 1px solid var(--border);
}

.cart-total {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    padding-top: 6px;
}

.cart-total span:last-child {
    color: var(--lime);
    font-size: 20px;
}

.free-shipping {
    color: var(--lime);
    font-weight: 600;
}

.tax-calc-text {
    font-size: 12px;
    color: var(--gray-500);
}

.cart-discount {
    font-size: 16px;
    color: var(--lime);
    padding-top: 4px;
    display: flex;
    justify-content: space-between;
}

.discount-code-section {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid var(--gray-700);
    flex-shrink: 0;
}

.discount-input-group {
    display: flex;
    gap: 4px;
}

.discount-input-group input {
    flex: 1;
    padding: 6px 8px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 4px;
    color: var(--white);
    font-size: 11px;
    text-transform: uppercase;
}

.discount-input-group input::placeholder {
    color: var(--gray-500);
    text-transform: none;
}

.discount-input-group input:focus {
    outline: none;
    border-color: var(--lime);
}

.btn-apply-discount {
    padding: 6px 10px;
    background: var(--lime);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-apply-discount:hover {
    background: var(--lime-light);
    transform: translateY(-2px);
}

.btn-apply-discount:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-remove-discount {
    padding: 8px 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-remove-discount:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.discount-message {
    margin-top: 8px;
    font-size: 13px;
    min-height: 18px;
}

.discount-message.success {
    color: var(--lime);
}

.discount-message.error {
    color: var(--error);
}

/* Cart has-items state */
.cart-drawer.has-items .cart-empty {
    display: none;
}

.cart-drawer:not(.has-items) .cart-items,
.cart-drawer:not(.has-items) .cart-footer {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   21. JS INTERACTION STATES
   ═══════════════════════════════════════════════════════════════ */

/* Shake animation for errors */
.upload-zone.shake {
    animation: shake 0.5s ease;
    border-color: var(--error);
}

/* Toast notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease;
    max-width: 90vw;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

/* Toast types */
.toast-warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(245, 158, 11, 0.1));
}

.toast-error {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(239, 68, 68, 0.1));
}

.toast-success {
    border-color: var(--lime);
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(155, 200, 72, 0.1));
}

.toast-info {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(59, 130, 246, 0.1));
}

.toast.toast-exit {
    animation: toastSlideOut 0.3s ease forwards;
}

/* Loading spinner */
.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-700);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   22. ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--glow-lime-sm); }
    50% { box-shadow: var(--glow-lime); }
}

@keyframes logo-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow-spread {
    0% {
        opacity: 0.8;
        background-size: 100% 100%;
    }
    50% {
        opacity: 0.5;
        background-size: 300% 300%;
    }
    100% {
        opacity: 0;
        background-size: 500% 500%;
    }
}

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

@keyframes suggestPulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: var(--glow-lime-sm); }
}

@keyframes priceUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--lime); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Utility animation class */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* ═══════════════════════════════════════════════════════════════
   23. UTILITIES
   ═══════════════════════════════════════════════════════════════ */

/* (reserved for utility classes if needed) */

/* ═══════════════════════════════════════════════════════════════
   24. MEDIA QUERIES (Consolidated)
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .builder-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 32px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .builder-grid {
        grid-template-columns: 1fr;
    }
    
    .nav .nav-link,
    .nav .btn-login {
        display: none;
    }
    
    .nav {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Show hamburger on mobile */
    .hamburger,
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Show mobile menu when active */
    .mobile-menu.active {
        display: flex;
        visibility: visible;
    }
    
    /* Hide old marquee nav */
    nav.mobile-nav-bar {
        display: none !important;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .trust-bar {
        display: none;
    }
    
    .trust-bar-mobile {
        display: block;
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-specs {
        margin: -40px 16px 40px;
        padding: 24px;
    }
    
    .guidelines-hero h1 {
        font-size: 32px;
    }
    
    .guideline-card {
        padding: 24px;
    }
}

/* Mobile - 640px (Gallery) */
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Mobile - 500px (consolidated) */
@media (max-width: 500px) {
    /* Container & layout - symmetric padding */
    .container {
        padding: 0 16px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .container,
    .builder-section,
    section {
        max-width: 100%;
        overflow-x: hidden;
        margin-left: 0;
        margin-right: 0;
    }
    
    .builder-section {
        padding: 32px 0;
        width: 100%;
    }
    
    /* Hero */
    .hero {
        padding: 100px 16px 40px;
        overflow: visible;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.1;
    }
    
    /* Stack headline words vertically on mobile */
    .hero h1.neon-sign span {
        display: block;
    }
    
    .hero h1.neon-sign {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--lime),
            0 0 30px var(--lime),
            0 0 45px var(--lime) !important;
    }
    
    .hero::before {
        display: block;
        top: -100px;
        width: 100%;
        height: 400px;
        background: radial-gradient(ellipse at center top, rgba(155, 200, 72, 0.3) 0%, transparent 60%);
    }
    
    /* Builder section */
    .builder-section {
        padding: 32px 0;
    }
    
    .builder-grid {
        padding: 0;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .builder-grid > * {
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }
    
    .preview-column,
    .upload-zone,
    .email-artwork-option,
    .email-artwork-toggle,
    .email-artwork-active,
    .file-tips,
    .upload-tips,
    .config-column,
    .config-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .email-artwork-active {
        padding: 16px;
    }
    
    .email-artwork-info {
        padding: 12px;
        gap: 12px;
    }
    
    .design-name-input {
        margin-bottom: 16px;
    }
    
    .design-name-input input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .preview-column {
        overflow: hidden;
    }
    
    .upload-zone {
        padding: 40px 16px;
        margin: 0;
    }
    
    .upload-tips {
        padding: 16px;
    }
    
    .tip-list li {
        font-size: 13px;
        padding: 10px 0;
    }
    
    /* Config card */
    .config-card {
        padding: 20px 16px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .config-label {
        font-size: 13px;
    }
    
    .config-label .size-help-link {
        font-size: 12px;
    }
    
    .size-grid {
        gap: 8px;
    }
    
    .size-btn {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    /* Quantity rows */
    .qty-row {
        padding: 12px;
    }
    
    .qty-row .qty-num {
        font-size: 14px;
    }
    
    .qty-row .qty-price {
        font-size: 14px;
        min-width: 60px;
    }
    
    .qty-row .qty-savings {
        font-size: 10px;
        padding: 2px 6px;
        min-width: auto;
    }
    
    /* Price summary */
    .price-summary {
        padding: 20px 16px;
    }
    
    /* Quick specs */
    .quick-specs {
        margin: -30px 16px 24px;
        padding: 16px 12px;
        border-radius: 12px;
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .quick-specs h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        width: 100%;
    }
    
    .spec-item {
        padding: 8px 4px;
        border-radius: 6px;
        text-align: center;
        min-width: 0;
    }
    
    .spec-item .value {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .spec-item .label {
        font-size: 8px;
        line-height: 1.2;
    }
    
    /* Why section */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 20px 16px;
    }
    
    /* How it works */
    .steps {
        gap: 16px;
    }
    
    .step {
        padding: 20px 16px;
    }
    
    /* Guarantees - keep 2 columns (3 left, 3 right) */
    .guarantees {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .guarantee-item {
        font-size: 12px;
    }
    
    /* CTA section */
    .cta-section {
        padding: 60px 16px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    /* Gallery CTA */
    .gallery-cta {
        padding: 32px 16px;
    }
    
    .gallery-cta h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .gallery-cta p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .gallery-cta .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Guideline and shipping cards */
    .guideline-section,
    .shipping-section,
    .faq-section {
        padding: 0 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .guideline-card,
    .shipping-card {
        padding: 20px 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .shipping-content,
    .guidelines-content,
    .faq-content {
        padding: 32px 0;
    }
    
    /* Footer */
    .footer {
        padding: 48px 16px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
    
    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .footer-col a {
        font-size: 13px;
    }
    
    /* Upload confirm modal */
    .upload-confirm-modal {
        padding: 16px;
        max-height: calc(100vh - 40px);
    }
    
    .upload-confirm-modal h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .upload-confirm-preview {
        padding: 12px;
        margin: 8px 0;
    }
    
    .upload-confirm-preview img {
        max-width: 120px;
        max-height: 120px;
    }
    
    .upload-confirm-modal .modal-subtitle {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .notes-label {
        font-size: 13px;
    }
    
    .artwork-notes {
        min-height: 48px;
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .border-comparison {
        padding: 10px;
        margin-top: 8px;
    }
    
    .border-comparison-title {
        font-size: 12px;
    }
    
    .border-comparison-examples {
        gap: 16px;
    }
    
    .border-example-img {
        width: 56px;
        height: 56px;
    }
    
    .border-example-img img {
        width: 36px;
    }
    
    /* Cart footer - fixed at bottom, NOT scrollable */
    .cart-footer {
        padding: 12px 16px;
        position: sticky;
        bottom: 0;
        background: #1a1a1a;
        border-top: 2px solid var(--gray-800);
        z-index: 10;
        /* Remove max-height and overflow - footer should NOT scroll */
    }
    
    /* Cart items should be scrollable on mobile */
    .cart-items {
        flex: 1;
        min-height: 0; /* Critical for flexbox scrolling */
        overflow-y: auto;
        overflow-x: hidden;
        padding: 16px;
        max-height: calc(100vh - 300px); /* Leave room for header + footer + checkout */
        -webkit-overflow-scrolling: touch;
    }
    
    /* DISABLED - Checkout button should NOT be fixed on mobile */
    /* .cart-drawer.active .cart-footer .btn-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        padding: 16px;
        font-size: 16px;
        z-index: 1002;
    }
    
    .cart-drawer.active .cart-footer .cart-secure {
        position: fixed;
        bottom: 56px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 4px;
        text-align: center;
        z-index: 1002;
    } */
    
    /* Checkout button scrolls with footer content */
    .cart-drawer.active .cart-footer .btn-checkout {
        position: relative;
        width: 100%;
        margin-top: 16px;
        padding: 16px;
        font-size: 16px;
    }
    
    .cart-subtotal,
    .cart-shipping,
    .cart-tax {
        display: flex;
        justify-content: space-between;
        padding: 1px 0;
        font-size: 11px;
    }
    
    .cart-total {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        font-weight: 700;
        padding-top: 3px;
        margin-top: 2px;
        border-top: 1px solid var(--gray-800);
    }
    
    /* Proof section - vertical layout on mobile */
    .proof-approval-section {
        padding: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    
    .proof-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .proof-options {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    
    .proof-option {
        padding: 14px 6px;
        gap: 4px;
        touch-action: manipulation;
    }
    
    .proof-option-icon {
        font-size: 22px;
    }
    
    .proof-option-text {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .proof-note {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .proof-contact-wrapper {
        margin-top: 20px;
        margin-bottom: 120px;
        padding: 20px;
        background: var(--lime);
        border-radius: 16px;
    }
    
    .proof-contact-wrapper input {
        padding: 20px 24px;
        font-size: 18px;
        background: var(--white);
        color: var(--bg-dark);
        border: 4px solid var(--bg-dark);
        border-radius: 16px;
        min-height: 64px;
        font-weight: 700;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
    }
    
    .proof-contact-wrapper input::placeholder {
        color: var(--gray-600);
        font-weight: 500;
    }
    
    .btn-checkout {
        padding: 10px;
        font-size: 13px;
        margin-top: 6px;
    }
    
    .cart-secure {
        font-size: 9px;
        margin-top: 3px;
    }
}

/* Fix: Remove underline from all btn-primary links */
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    text-decoration: none !important;
}

/* Fix: Prevent bottom cutoff on mobile */
html,
body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Fix: Use CSS Grid for consistent price alignment across all quantity rows */
.qty-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    gap: 8px;
    align-items: center;
}

.qty-row input[type="radio"] {
    grid-column: 1;
}

.qty-row .qty-num {
    grid-column: 2;
}

.qty-row .qty-badge {
    grid-column: 3;
    justify-self: start;
}

.qty-row .qty-price {
    grid-column: 4;
    justify-self: end;
    margin-left: 0;
}

.qty-row .qty-savings,
.qty-row .qty-savings-placeholder {
    grid-column: 5;
    justify-self: end;
}

@media (max-width: 768px) {
    .qty-row {
        gap: 6px;
    }
}

/* Cart drawer improvements - mobile friendly */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    align-items: start;
}

.cart-item-price {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    margin-top: 0;
    font-size: 18px;
}

.cart-item-details {
    grid-column: 2;
    grid-row: 1;
}

.cart-item-header {
    margin-bottom: 4px;
}

.cart-item-specs {
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-email-note {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-notes {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 4px;
    line-height: 1.2;
}

.cart-item-remove {
    margin-top: 4px;
}

/* Make cart footer sticky at bottom */
.cart-drawer {
    display: flex;
    flex-direction: column;
}

.cart-items {
    flex: 1;
    min-height: 0; /* Critical for flexbox scrolling */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    background: #1a1a1a;
    border-top: 2px solid var(--gray-800);
    z-index: 10;
}

/* Reduce spacing in cart totals */
.cart-subtotal,
.cart-shipping,
.cart-tax {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gray-800);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 8px;
    margin-top: 4px;
}

.cart-total span:last-child {
    font-size: 28px;
}

/* Proof Contact Modal */
.proof-contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.proof-contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.proof-contact-modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.proof-contact-modal.active .proof-contact-modal-content {
    transform: scale(1);
}

.proof-contact-modal h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.proof-contact-modal p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.proof-contact-modal-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    background: var(--bg-dark);
    color: var(--white);
    border: 2px solid var(--gray-700);
    border-radius: 12px;
    margin-bottom: 24px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.proof-contact-modal-input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(155, 200, 72, 0.1);
}

.proof-contact-modal-input::placeholder {
    color: var(--gray-600);
}

.proof-contact-modal-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.proof-contact-modal-buttons .btn-cancel,
.proof-contact-modal-buttons .btn-confirm {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.proof-contact-modal-buttons .btn-cancel {
    background: var(--gray-800);
    color: var(--gray-300);
}

.proof-contact-modal-buttons .btn-cancel:hover {
    background: var(--gray-700);
}

.proof-contact-modal-buttons .btn-confirm {
    background: var(--lime);
    color: var(--bg-dark);
}

.proof-contact-modal-buttons .btn-confirm:hover {
    background: var(--lime-bright);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .proof-contact-modal-content {
        padding: 24px;
    }
    
    .proof-contact-modal h3 {
        font-size: 20px;
    }
    
    .proof-contact-modal-input {
        font-size: 16px;
        padding: 14px 16px;
    }
}
/* ============================================
   iPhone-Specific Responsive Breakpoints
   Optimized for modern iPhone viewport sizes
   ============================================ */

/* Very Small iPhones (SE, mini) - ≤374px */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .builder-grid {
        gap: 16px;
    }
    
    .config-card {
        padding: 16px 12px;
    }
    
    .size-btn {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .qty-row {
        padding: 10px;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr auto;
        gap: 10px;
    }
    
    .cart-item-remove {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .proof-option {
        padding: 12px 4px;
        font-size: 12px;
    }
    
    .btn-checkout {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Standard iPhones (12, 13, 14, 15, 16 base) - 375-413px */
@media (min-width: 375px) and (max-width: 413px) {
    /* Optimized for 390-393px viewport width */
    
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .builder-preview {
        max-width: 340px;
        margin: 0 auto;
    }
    
    .upload-zone {
        padding: 36px 16px;
    }
    
    .config-card {
        padding: 20px 16px;
    }
    
    .size-grid {
        gap: 8px;
    }
    
    .size-btn {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    /* Cart optimization for standard iPhone widths */
    .cart-item {
        grid-template-columns: 70px 1fr 65px; /* Fixed price width prevents overflow */
        gap: 10px;
        padding: 14px 12px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* Prevent any horizontal overflow */
    }
    
    .cart-item-details {
        font-size: 14px;
    }
    
    .cart-item-remove {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
        min-width: 80px;
    }
    
    .cart-item-price {
        font-size: 17px;
    }
    
    /* Modal sizing */
    .upload-confirm-modal {
        max-width: 360px;
        padding: 20px 16px;
    }
    
    .proof-options {
        gap: 8px;
    }
    
    .proof-option {
        padding: 16px 8px;
    }
    
    .proof-option-icon {
        font-size: 28px;
    }
    
    /* CTA buttons */
    .btn-primary,
    .btn-checkout {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 52px;
    }
    
    /* Better touch targets */
    .nav .cart-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Larger iPhones (Plus, Pro Max, Air) - 414-767px */
@media (min-width: 414px) and (max-width: 767px) {
    /* Utilize extra width (428-440px viewports) */
    
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .builder-preview {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .builder-grid {
        gap: 28px;
    }
    
    .upload-zone {
        padding: 44px 20px;
    }
    
    .config-card {
        padding: 24px 20px;
    }
    
    .size-grid {
        gap: 10px;
    }
    
    .size-btn {
        padding: 14px 10px;
        font-size: 14px;
    }
    
    /* Cart - more spacious on larger iPhones */
    .cart-drawer {
        max-width: 420px;
        width: 100vw;
    }
    
    .cart-item {
        grid-template-columns: 75px 1fr 70px; /* Fixed price width to prevent overflow */
        gap: 12px;
        padding: 16px 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cart-item-details {
        font-size: 15px;
    }
    
    .cart-item-remove {
        padding: 12px 18px;
        font-size: 14px;
        min-height: 48px;
        min-width: 90px;
    }
    
    .cart-item-price {
        font-size: 19px;
    }
    
    /* Modal optimization */
    .upload-confirm-modal {
        max-width: 400px;
        padding: 24px 20px;
    }
    
    .upload-confirm-preview img {
        max-width: 140px;
        max-height: 140px;
    }
    
    .proof-options {
        gap: 10px;
    }
    
    .proof-option {
        padding: 18px 12px;
    }
    
    .proof-option-icon {
        font-size: 32px;
    }
    
    /* Quantity selector - better spacing */
    .qty-row {
        padding: 14px 16px;
    }
    
    /* Footer - 2 columns with more breathing room */
    .footer-links {
        gap: 24px 20px;
    }
    
    /* CTA buttons - larger touch targets */
    .btn-primary,
    .btn-checkout {
        padding: 18px 28px;
        font-size: 17px;
        min-height: 56px;
    }
    
    /* Specs grid - can show 4 columns on wider phones */
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

/* Fix for awkward 393-500px gap */
@media (min-width: 393px) and (max-width: 499px) {
    /* Prevent hybrid layouts in this range */
    
    .container {
        padding: 0 18px;
    }
    
    .builder-grid {
        gap: 24px;
    }
    
    .cart-item {
        padding: 16px 14px;
    }
    
    .proof-option {
        padding: 16px 10px;
    }
}

/* ============================================
   CART UX IMPROVEMENTS - Mobile Scroll Fix
   ============================================ */

/* Ensure cart drawer never overflows horizontally */
.cart-drawer {
    overflow-x: hidden;
    max-width: 100vw;
}

.cart-drawer * {
    box-sizing: border-box;
}

/* Cart items container - properly scrollable */
.cart-items {
    width: 100%;
    overflow-x: hidden !important;
}

.cart-item {
    width: 100%;
    min-width: 0; /* Allows flex/grid children to shrink */
}

/* Prevent text overflow in cart items */
.cart-item-details {
    min-width: 0; /* Critical for text truncation to work */
    overflow: hidden;
}

.cart-item-name,
.cart-item-specs,
.cart-item-notes {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Mobile: Tighten cart layout further */
@media (max-width: 390px) {
    .cart-item {
        grid-template-columns: 65px 1fr 60px;
        gap: 8px;
        padding: 12px 10px;
    }
    
    .cart-item-price {
        font-size: 15px;
    }
    
    .cart-item-details {
        font-size: 13px;
    }
    
    .cart-items {
        padding: 12px 10px;
    }
}

/* Scroll hint for mobile users */
@media (max-width: 767px) {
    .cart-drawer.has-items .cart-header::after {
        content: '↓ Scroll to see all items ↓';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -24px;
        text-align: center;
        font-size: 10px;
        color: var(--lime);
        font-weight: 600;
        animation: fadeIn 0.5s ease-in-out;
        pointer-events: none;
        opacity: 0.8;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 0.8; transform: translateY(0); }
    }
    
    /* Add padding to cart header to make room for hint */
    .cart-drawer.has-items .cart-header {
        padding-bottom: 32px;
        position: relative;
    }
}
/* ============================================
   CART FIX V2 - Proof Section Visibility
   ============================================ */

/* Mobile: Cart needs better structure */
@media (max-width: 767px) {
    /* Cart drawer full height - use dvh for Safari dynamic viewport */
    .cart-drawer {
        display: flex;
        flex-direction: column;
        height: 100vh; /* Fallback for older browsers */
        height: 100dvh; /* Dynamic viewport height - accounts for Safari URL bar */
        height: -webkit-fill-available; /* iOS Safari fallback */
        max-height: 100dvh;
        overflow: hidden;
    }
    
    /* Cart header - fixed at top */
    .cart-header {
        flex-shrink: 0;
        padding: 16px;
        border-bottom: 1px solid var(--gray-800);
        position: relative;
        background: #1a1a1a;
        z-index: 20;
    }
    
    /* Scroll indicator - highly visible */
    .cart-drawer.has-items .cart-header::after {
        content: '↓ Scroll down to see all items & checkout options ↓';
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: -28px;
        background: rgba(155, 200, 72, 0.2);
        border: 1px dashed var(--lime);
        border-radius: 6px;
        padding: 6px 8px;
        text-align: center;
        font-size: 10px;
        color: var(--lime);
        font-weight: 700;
        animation: pulse 2s infinite;
        z-index: 15;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.8; transform: translateY(0); }
        50% { opacity: 1; transform: translateY(2px); }
    }
    
    .cart-drawer.has-items .cart-header {
        padding-bottom: 36px; /* Room for scroll hint */
    }
    
    /* Cart items - scrollable, takes available space but capped */
    .cart-items {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 16px;
        -webkit-overflow-scrolling: touch;
        min-height: 0; /* Important for flex scrolling */
        max-height: calc(100dvh - 340px) !important; /* Reserve 340px for header + footer */
        max-height: calc(100vh - 340px); /* Fallback */
    }
    
    /* Cart footer - NOT sticky, scrolls with content */
    .cart-footer {
        flex-shrink: 0;
        padding: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 20px)); /* Home indicator safe area - default 20px */
        border-top: 2px solid var(--gray-800);
        background: #1a1a1a;
        /* Remove sticky positioning on mobile to ensure proof section visible */
        position: relative;
        bottom: auto;
        max-height: 300px; /* Cap footer height */
        overflow-y: auto; /* Allow scroll if needed */
    }
    
    /* Proof section - always visible in footer */
    .proof-approval-section {
        margin: 12px 0 16px 0;
        padding: 14px;
        background: var(--surface);
        border: 1px solid var(--lime);
        border-radius: var(--radius-lg);
    }
    
    /* Ensure checkout button is always accessible - NOT FIXED */
    .cart-drawer.active .cart-footer .btn-checkout,
    .btn-checkout {
        position: relative !important; /* Override any fixed positioning */
        width: 100%;
        margin-top: 12px;
        padding: 16px;
        font-size: 16px;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    /* Secure checkout text - also not fixed */
    .cart-drawer.active .cart-footer .cart-secure,
    .cart-secure {
        position: relative !important;
        margin-top: 8px;
        bottom: auto !important;
    }
    
    /* Show native scrollbar on mobile for clarity */
    .cart-items::-webkit-scrollbar {
        width: 6px;
    }
    
    .cart-items::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    
    .cart-items::-webkit-scrollbar-thumb {
        background: var(--lime);
        border-radius: 3px;
    }
    
    .cart-items::-webkit-scrollbar-thumb:hover {
        background: var(--lime-bright);
    }
}

/* ============================================
   CART FOOTER CONDENSING - Reduce Vertical Space
   V2: Even tighter for mobile - Jan 2026
   ============================================ */

@media (max-width: 767px) {
    /* Ultra-tight totals section */
    .cart-subtotal,
    .cart-shipping,
    .cart-tax {
        padding: 1px 0 !important;
        font-size: 11px !important;
        margin-bottom: 0 !important;
        line-height: 1.3;
    }
    
    .cart-total {
        padding: 3px 0 2px !important;
        margin-top: 2px !important;
        font-size: 14px !important;
    }
    
    .cart-total span:last-child {
        font-size: 18px !important;
    }
    
    /* Compact proof section */
    .proof-approval-section {
        padding: 8px !important;
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }
    
    .proof-approval-section h4 {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }
    
    .proof-label {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        font-weight: 600;
    }
    
    /* Compact proof options */
    .proof-options {
        gap: 4px !important;
    }
    
    .proof-option {
        padding: 8px 4px !important;
        gap: 2px !important;
    }
    
    .proof-option-icon {
        font-size: 16px !important;
    }
    
    .proof-option-text {
        font-size: 10px !important;
        line-height: 1.1;
    }
    
    .proof-note {
        font-size: 9px !important;
        margin-top: 3px !important;
        margin-bottom: 0;
    }
    
    /* Tight footer overall - with safe area for iPhone home indicator */
    .cart-footer {
        padding: 8px 12px !important;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)) !important;
    }
    
    /* Compact totals container */
    .cart-totals {
        padding: 6px !important;
        margin-bottom: 6px !important;
    }
    
    /* Tighter checkout button */
    .btn-checkout {
        padding: 14px !important;
        margin-top: 8px !important;
        font-size: 15px !important;
    }
    
    .cart-secure {
        font-size: 10px !important;
        margin-top: 4px !important;
    }
}


/* ================================================
   NEWSLETTER SIGNUP SECTION
   ================================================ */

.footer-newsletter-section {
    background: linear-gradient(135deg, #9bc848 0%, #7a9e39 100%);
    padding: 1.5rem 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -0.3px;
}

.newsletter-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-submit {
    padding: 0.7rem 1.5rem;
    background: white;
    color: #7a9e39;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: inherit;
}

.newsletter-submit:hover:not(:disabled) {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2d5016;
    border-radius: 8px;
    font-weight: 600;
    animation: fadeIn 0.3s;
}

.newsletter-error {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 600px) {
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
        padding: 1rem;
    }
}

/* Legal Pages (Privacy, Terms) */
.legal-hero {
    padding: 120px 20px 40px;
    text-align: center;
    background: var(--bg-dark);
}

.legal-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-hero p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--brand-green);
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 16px 32px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 24px 16px 60px;
    }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    background: #0a0a0a;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-logo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.google-g {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4285F4;
    flex-shrink: 0;
}

.google-reviews-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.google-reviews-stars .stars {
    color: #FBBC04;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.google-reviews-stars .rating-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.google-reviews-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 36px;
}

.google-review-card {
    max-width: 720px;
    margin: 0 auto;
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 0;
}

.google-review-photo {
    width: 220px;
    min-width: 220px;
    object-fit: cover;
    display: block;
}

.google-review-content {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.google-review-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-info .reviewer-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.3;
}

.reviewer-info .reviewer-meta {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
}

.review-stars-row {
    color: #FBBC04;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.review-text {
    color: rgba(255,255,255,0.82);
    font-size: 0.97rem;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.google-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.google-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.google-verified-badge svg {
    flex-shrink: 0;
}

.view-on-google {
    font-size: 0.8rem;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.view-on-google:hover {
    opacity: 0.75;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .google-review-card {
        flex-direction: column;
        margin: 0 16px;
    }
    .google-review-photo {
        width: 100%;
        min-width: unset;
        height: 220px;
    }
    .google-review-content {
        padding: 20px;
    }
}

/* ============================================
   Net 30 Account Section
   ============================================ */
.net30-section {
    padding: 12px 0;
    border-top: 1px solid var(--gray-700);
    margin-top: 12px;
}

.net30-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-300);
}

.net30-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--lime);
    cursor: pointer;
}

.net30-toggle-text {
    font-weight: 500;
}

.net30-fields {
    margin-top: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.net30-input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    box-sizing: border-box;
}

.net30-input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 2px rgba(155, 200, 72, 0.2);
}

.net30-input::placeholder {
    color: var(--gray-500);
}

.net30-input-short {
    width: calc(33.33% - 6px);
    display: inline-block;
}

.net30-row {
    display: flex;
    gap: 8px;
}

.net30-row .net30-input {
    flex: 1;
}

.net30-row .net30-input-short {
    flex: 0 0 80px;
}

.net30-status {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 8px;
    display: none;
}

.net30-status.valid {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.net30-status.invalid {
    display: block;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

.net30-status.loading {
    display: block;
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #64b5f6;
}

.net30-shipping {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-700);
}

.net30-shipping h4 {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

/* Net 30 checkout button variation */
.btn-checkout.net30-mode {
    background: linear-gradient(135deg, #1976d2, #1565c0);
}

.btn-checkout.net30-mode:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}
