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

        :root {
            /* Premium Color Palette */
            --primary-color: #2C3E50;        /* Deep Navy - Sophisticated & Trustworthy */
            --primary-light: #34495E;        /* Lighter Navy */
            --accent-color: #D4AF37;         /* Gold - Premium & Luxury */
            --accent-hover: #C19B2E;         /* Darker Gold */
            --secondary-color: #1A1A1A;      /* Rich Black */
            --text-primary: #2C3E50;         /* Dark Navy for headings */
            --text-secondary: #5A6C7D;       /* Muted Blue-Gray for body */
            --text-light: #8B9DAD;           /* Light Gray-Blue for subtle text */
            --background-light: #F8F9FA;     /* Off-White */
            --background-cream: #FFF9F0;     /* Warm Cream */
            --border-color: #E8ECEF;         /* Soft Gray */
            --border-dark: #D1D8DD;          /* Darker Gray */
            --success-color: #27AE60;        /* Professional Green */
            --error-color: #E74C3C;          /* Refined Red */
            --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.06);
            --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.08);
            --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.12);
            --shadow-xl: 0 16px 48px rgba(44, 62, 80, 0.15);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 16px;
            font-weight: 400;
            background: #FFFFFF;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-left: env(safe-area-inset-left, 0px);
            padding-right: env(safe-area-inset-right, 0px);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        /* iOS touch optimizations */
        button, a, input, select, textarea, .upload-circle, .upload-badge,
        .faq-question, .accordion-header, .pricing-card, .carousel-arrow,
        .carousel-dot, .filter-tab {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* Offer Banner */
        .offer-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: white;
            text-align: center;
            padding: 12px 16px;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.3px;
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 480px) {
            .offer-banner {
                padding: 10px 12px;
                font-size: 14px;
            }
        }

        /* Main Header */
        .main-header {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
            background: white;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .mobile-menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            display: none;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: var(--transition-smooth);
            border-radius: 8px;
        }

        .mobile-menu-toggle:hover {
            background: var(--background-light);
            color: var(--accent-color);
        }

        .mobile-menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        /* Show hamburger on mobile only */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .header-container {
                display: grid;
                grid-template-columns: auto 1fr auto;
            }

            .logo {
                justify-self: center;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: var(--transition-smooth);
            position: relative;
        }

        .logo-img {
            height: 100px;
            width: auto;
            display: block;
            transition: var(--transition-smooth);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Responsive logo sizes */
        @media (max-width: 768px) {
            .logo-img {
                height: 84px;
            }
        }

        /* Performance Optimization: Prevent CLS for images */
        #productImage {
            width: 100%;
            height: auto;
            display: block;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
        }

        .review-media img {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
        }

        .canvas-features-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-type-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        video {
            width: 100%;
            height: auto;
            background: #000;
            display: block;
        }

        .search-bar {
            display: none;
        }

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

        /* Sidebar Menu */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

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

        .sidebar-menu {
            position: fixed;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100%;
            background: white;
            z-index: 999;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
        }

        .sidebar-menu.active {
            left: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .sidebar-logo-img {
            height: 90px;
            width: auto;
            display: block;
        }

        .sidebar-close {
            background: none;
            border: none;
            font-size: 32px;
            color: var(--text-secondary);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition-smooth);
        }

        .sidebar-close:hover {
            background: var(--background-light);
            color: var(--accent-color);
        }

        .sidebar-content {
            padding: 20px 0;
        }

        .sidebar-content a {
            display: block;
            padding: 16px 24px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: var(--transition-smooth);
            position: relative;
        }

        .sidebar-content a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-color);
            transform: scaleY(0);
            transition: var(--transition-smooth);
        }

        .sidebar-content a:hover {
            background: var(--background-cream);
            color: var(--text-primary);
            padding-left: 28px;
        }

        .sidebar-content a:hover::before {
            transform: scaleY(1);
        }

        /* Desktop Navigation Menu */
        .desktop-nav {
            display: block;
            background: white;
            border-bottom: 1px solid var(--border-color);
            padding: 0;
        }

        .desktop-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 16px 20px;
        }

        .desktop-nav-container a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: var(--transition-smooth);
            position: relative;
            padding: 8px 0;
        }

        .desktop-nav-container a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .desktop-nav-container a:hover {
            color: var(--text-primary);
        }

        .desktop-nav-container a:hover::after {
            width: 100%;
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }

        .country-selector, .cart-icon, .account-icon {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            opacity: 1 !important;
            visibility: visible !important;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
        }

        /* Navigation Categories */
        .categories-nav {
            background: white;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }

        .categories-container a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.01em;
            transition: var(--transition-smooth);
            position: relative;
            padding: 4px 0;
        }

        .categories-container a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .categories-container a:hover {
            color: var(--text-primary);
        }

        .categories-container a:hover::before {
            width: 100%;
        }

        /* Main Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Product Title */
        .product-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 28px;
            text-align: center;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        /* Product Section */
        .product-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .product-image {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition-smooth);
        }

        @media (hover: hover) {
            .product-image:hover {
                box-shadow: var(--shadow-xl);
                transform: scale(1.01);
            }
        }

        .product-options {
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-width: 0;
            overflow: hidden;
        }

        .upload-section {
            background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
            padding: 35px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }

        /* Preview Badge - Prevent Cropping */
        .preview-badge {
            max-width: 95%;
            text-align: center;
            line-height: 1.3;
            white-space: normal !important;
            word-wrap: break-word;
        }

        .upload-instructions {
            margin-bottom: 20px;
            text-align: center;
        }

        .upload-instructions h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--text-primary);
            font-weight: 600;
        }

        .upload-instructions p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .upload-steps-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .upload-steps-row p {
            margin: 0;
        }

        .upload-step-sep {
            color: var(--text-light, #aaa);
            font-size: 16px;
            line-height: 1;
            user-select: none;
        }

        .upload-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-bottom: 30px;
            flex-wrap: nowrap;
            position: relative;
        }

        /* Swap Faces Button */
        .swap-faces-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-md);
            flex-shrink: 0;
            align-self: flex-end;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .swap-faces-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .swap-faces-btn:hover::before {
            left: 100%;
        }

        .swap-faces-btn:hover {
            transform: rotate(180deg) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .swap-faces-btn:active {
            transform: rotate(180deg) scale(0.95);
        }

        .swap-faces-btn svg {
            position: relative;
            z-index: 1;
        }

        /* Hide swap button by default (shown only when 2 faces needed) */
        .swap-faces-btn {
            display: none;
        }

        .swap-faces-btn.visible {
            display: flex;
        }

        .upload-box {
            position: relative;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        @media (hover: hover) {
            .upload-box:hover {
                transform: translateY(-4px);
            }
        }

        .upload-label {
            display: block;
            font-size: 12px;
            color: var(--text-secondary, #546e7a);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
        }

        .upload-badge {
            position: absolute;
            top: 25px;
            right: 0;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: 300;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 3;
            border: 3px solid white;
            transition: all 0.3s;
        }

        @media (hover: hover) {
            .upload-box:hover .upload-badge {
                transform: scale(1.1);
                box-shadow: 0 4px 12px rgba(95, 185, 171, 0.4);
            }
        }

        .upload-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 2.5px dashed var(--border-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            background: white;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            padding-bottom: 15px;
            box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
        }

        .upload-circle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 55%;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-image: url('https://static.vecteezy.com/system/resources/thumbnails/053/964/117/small/a-silhouette-of-a-person-with-a-circular-head-and-a-minimalistic-body-structure-showcasing-a-simple-design-png.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
            transition: var(--transition-smooth);
        }

        @media (hover: hover) {
            .upload-box:hover .upload-circle {
                border-color: var(--accent-color);
                background: var(--background-cream);
                transform: scale(1.08);
                box-shadow: var(--shadow-md);
            }

            .upload-box:hover .upload-circle::before {
                opacity: 0.4;
            }
        }

        .upload-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            margin-bottom: 10px;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .upload-text {
            font-size: 13px;
            color: #999;
            position: relative;
            z-index: 1;
            text-align: center;
            line-height: 1.2;
            font-weight: 500;
        }

        .upload-circle img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            z-index: 2;
        }

        .upload-circle.has-image::before {
            display: none;
        }

        .face-swap-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.3s;
            margin: 0 auto;
            max-width: fit-content;
        }

        .face-swap-btn:hover {
            background: #4da89a;
        }

        .advanced-options {
            text-align: center;
            cursor: pointer;
            color: var(--primary-color);
            font-size: 14px;
            margin-top: 15px;
            user-select: none;
            transition: opacity 0.3s;
        }

        .advanced-options:hover {
            opacity: 0.7;
        }

        @keyframes btn-glow-pulse {
            0%, 100% { box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35), 0 0 0 0 rgba(212, 175, 55, 0); }
            50% { box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5), 0 0 0 6px rgba(212, 175, 55, 0.08); }
        }

        @keyframes shimmer-sweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .preview-btn {
            background: linear-gradient(135deg, #D4AF37 0%, #F2D06B 50%, #D4AF37 100%);
            background-size: 200% 200%;
            color: #1a1a2e;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            animation: btn-glow-pulse 2.2s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .preview-btn .btn-icon {
            display: inline-flex;
            font-size: 20px;
            line-height: 1;
        }

        .preview-btn:disabled, .preview-btn.sold-out {
            animation: none;
        }

        .preview-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
            animation: shimmer-sweep 2.8s ease-in-out infinite;
        }

        .preview-btn:disabled::before, .preview-btn.sold-out::before {
            animation: none;
            display: none;
        }

        .preview-btn:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
            background-position: right center;
        }

        .preview-btn:active {
            transform: translateY(-1px) scale(0.99);
        }

        .preview-btn.sold-out {
            background: linear-gradient(135deg, #9e9e9e 0%, #bdbdbd 50%, #9e9e9e 100%);
            color: #fff;
            cursor: not-allowed;
            opacity: 0.6;
            box-shadow: none;
        }

        .preview-btn.sold-out:hover {
            transform: none;
            box-shadow: none;
        }

        /* Social Proof Section */
        .social-proof-section {
            background: #fafafa;
            border-radius: 16px;
            margin: 20px 0 0;
            overflow: hidden;
            border: 1px solid #e8e0d8;
            max-width: 100%;
            box-sizing: border-box;
        }
        .social-proof-header {
            text-align: center;
            padding: 18px 16px 12px;
        }
        .social-proof-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 4px 12px;
            margin-bottom: 8px;
        }
        .sp-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
        .sp-rating { font-weight: 800; font-size: 14px; color: #1f2937; }
        .social-proof-title {
            font-size: 17px;
            font-weight: 800;
            color: #111;
            margin-bottom: 2px;
        }
        .social-proof-subtitle {
            font-size: 12.5px;
            color: #6b7280;
            font-weight: 400;
        }

        /* Gallery scroll with fade hint */
        .community-gallery-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 12px 12px;
            position: relative;
            max-width: 100%;
        }
        .community-gallery-scroll::-webkit-scrollbar { display: none; }
        .community-gallery-track {
            display: flex;
            gap: 8px;
            min-width: min-content;
        }
        .cg-item {
            flex: 0 0 100px;
            height: 100px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            display: block;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            transition: transform 0.15s ease;
        }
        .cg-item { cursor: zoom-in; }
        .cg-item:active { transform: scale(0.95); }
        .cg-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cg-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.6));
            padding: 20px 6px 5px;
            text-align: center;
        }
        .cg-overlay span {
            color: #f59e0b;
            font-size: 10px;
            letter-spacing: 1px;
        }
        .cg-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100000;
            align-items: center;
            justify-content: center;
        }
        .cg-lightbox.active { display: flex; }
        .cg-lightbox-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .cg-lightbox-img {
            position: relative;
            max-width: 92vw;
            max-height: 88vh;
            border-radius: 12px;
            object-fit: contain;
            box-shadow: 0 8px 40px rgba(0,0,0,0.5);
            animation: cgZoomIn 0.25s ease-out;
        }
        @keyframes cgZoomIn {
            from { transform: scale(0.85); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .cg-lightbox-close {
            position: absolute;
            top: 16px;
            right: 18px;
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            font-size: 32px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .cg-lightbox-close:hover { background: rgba(255,255,255,0.3); }
        .cg-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.12);
            border: none;
            color: #fff;
            font-size: 36px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .cg-lightbox-nav:hover { background: rgba(255,255,255,0.25); }
        .cg-lightbox-prev { left: 12px; }
        .cg-lightbox-next { right: 12px; }
        .cg-more {
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cg-more-inner {
            text-align: center;
            line-height: 1.3;
        }
        .cg-more-icon { font-size: 22px; display: block; margin-bottom: 4px; }
        .cg-more-text { font-size: 11px; font-weight: 700; color: #374151; }

        /* Reviews strip */
        .sp-reviews-strip {
            display: flex;
            gap: 8px;
            padding: 0 12px 14px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            max-width: 100%;
        }
        .sp-reviews-strip::-webkit-scrollbar { display: none; }
        .sp-review {
            flex: 0 0 220px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px;
        }
        .sp-review-top {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        .sp-review-stars { color: #f59e0b; font-size: 11px; letter-spacing: 0.5px; }
        .sp-review-name { font-weight: 700; font-size: 12px; color: #111; }
        .sp-review-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
        }
        .sp-verified {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 10px;
            font-weight: 600;
            color: #059669;
            background: #ecfdf5;
            padding: 2px 7px;
            border-radius: 10px;
        }
        .sp-verified svg {
            width: 10px;
            height: 10px;
            flex-shrink: 0;
        }
        .sp-time-ago {
            font-size: 10px;
            color: #9ca3af;
            font-weight: 400;
        }
        .sp-review p {
            font-size: 12.5px;
            color: #4b5563;
            line-height: 1.5;
            margin: 0;
        }
        .sp-trustpilot-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            background: #fff;
            border-top: 1px solid #e8e0d8;
            text-decoration: none;
            color: #047857;
            font-size: 12.5px;
            font-weight: 600;
            transition: background 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        .sp-trustpilot-link:hover { background: #f0fdf4; }
        .sp-trustpilot-link:active { background: #dcfce7; }
        .sp-tp-stars { height: 16px; }

        /* Desktop: horizontal scroll */
        @media (min-width: 768px) {
            .cg-item { flex: 0 0 130px; height: 130px; }
            .sp-review { flex: 0 0 260px; }
        }

        /* Mobile: stack reviews vertically */
        @media (max-width: 767px) {
            .social-proof-section {
                border-radius: 12px;
                margin: 16px 0 0;
            }
            .social-proof-header {
                padding: 14px 14px 10px;
            }
            .social-proof-title {
                font-size: 15px;
            }
            .social-proof-subtitle {
                font-size: 11.5px;
            }
            .community-gallery-scroll {
                padding: 0 10px 10px;
            }
            .community-gallery-track {
                gap: 6px;
            }
            .cg-item {
                flex: 0 0 88px;
                height: 88px;
                border-radius: 10px;
            }
            .sp-reviews-strip {
                padding: 0 10px 12px;
                gap: 6px;
            }
            .sp-review {
                flex: 0 0 200px;
                padding: 10px;
                border-radius: 10px;
            }
            .sp-trustpilot-link {
                padding: 11px;
                font-size: 12px;
                min-height: 44px;
            }
        }

        /* Small phones */
        @media (max-width: 374px) {
            .social-proof-header {
                padding: 12px 10px 8px;
            }
            .social-proof-title {
                font-size: 14px;
            }
            .cg-item {
                flex: 0 0 76px;
                height: 76px;
            }
            .sp-review {
                padding: 10px;
            }
        }

        .add-message-btn {
            background: white;
            border: 2px solid var(--border-dark);
            color: var(--text-primary);
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            transition: var(--transition-smooth);
            font-family: 'Poppins', sans-serif;
        }

        .add-message-btn:hover {
            border-color: var(--accent-color);
            background: var(--background-cream);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .add-to-basket-btn {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-md);
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.02em;
            position: relative;
            overflow: hidden;
        }

        .add-to-basket-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .add-to-basket-btn:hover::before {
            left: 100%;
        }

        .add-to-basket-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .add-to-basket-btn:active {
            transform: translateY(0);
        }

        /* Accordion Sections */
        .accordion-section {
            border: 1px solid var(--border-color);
            border-radius: 14px;
            margin-bottom: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 1px 4px rgba(44, 62, 80, 0.05);
            transition: var(--transition-smooth);
        }

        @media (hover: hover) {
            .accordion-section:hover {
                box-shadow: 0 3px 12px rgba(44, 62, 80, 0.09);
            }
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            background: white;
            transition: background 0.2s;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary, #2c3e50);
            min-height: 44px;
        }

        .accordion-header span:last-child {
            font-size: 12px;
            color: var(--text-light, #999);
            transition: transform 0.3s;
        }

        .accordion-content.active + .accordion-header span:last-child,
        .accordion-section.active .accordion-header span:last-child {
            transform: rotate(180deg);
        }

        @media (hover: hover) {
            .accordion-header:hover {
                background: #f8f9fb;
            }
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-content.active {
            padding: 16px 20px 20px;
            max-height: 600px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        /* Info Sections */
        .info-section {
            background: var(--light-gray);
            padding: 40px 20px;
            margin-top: 40px;
        }

        .info-section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .info-section p {
            text-align: center;
            color: #666;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* Product Types Grid */
        .product-types-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .product-type-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-type-card img,
        .product-type-card video {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            border-radius: 8px;
            object-fit: cover;
        }

        .product-type-card video {
            max-height: 400px;
        }

        .product-type-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .product-type-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Canvas Features Section */
        .canvas-features-section {
            padding: 50px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .canvas-features-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #2c3e50;
            font-weight: 700;
        }

        .canvas-features-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .canvas-features-image {
            width: 100%;
        }

        .canvas-features-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .canvas-features-list h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #2c3e50;
            font-weight: 600;
        }

        .canvas-features-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .canvas-features-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text strong {
            display: block;
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 15px;
        }

        @media (max-width: 968px) {
            .canvas-features-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .canvas-features-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .canvas-features-list h3 {
                font-size: 24px;
                margin-bottom: 25px;
            }
        }

        @media (max-width: 768px) {
            .canvas-features-section {
                padding: 36px 16px;
            }

            .canvas-features-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .canvas-features-list h3 {
                font-size: 20px;
                text-align: center;
            }

            .canvas-features-list li {
                margin-bottom: 20px;
            }

            .feature-text strong {
                font-size: 16px;
            }

            .feature-text p {
                font-size: 14px;
            }
        }

        /* Customer Reviews Carousel */
        .reviews-section {
            padding: 40px 20px 44px;
            background: linear-gradient(180deg, #f9fafb 0%, #ffffff 40%, #ffffff 100%);
        }

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

        .reviews-header-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary, #2c3e50);
        }

        .reviews-rating-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .reviews-rating-display .rating-stars {
            color: #00b67a;
            font-size: 22px;
        }

        .reviews-rating-display .rating-text {
            font-size: 15px;
            color: var(--text-secondary, #666);
            font-weight: 500;
        }

        /* Trust stats bar below reviews header */
        .reviews-trust-stats {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin: 20px 0 8px;
            flex-wrap: wrap;
        }

        .reviews-trust-stat {
            text-align: center;
        }

        .reviews-trust-stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--accent-color, #D4AF37);
            line-height: 1.2;
        }

        .reviews-trust-stat-label {
            font-size: 11px;
            color: var(--text-secondary, #666);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-top: 2px;
        }

        .reviews-carousel-container {
            position: relative;
            max-width: 1400px;
            margin: 24px auto 0;
            padding: 0 60px;
        }

        .reviews-carousel-wrapper {
            overflow: hidden;
            border-radius: 14px;
            cursor: grab;
        }

        .reviews-carousel-wrapper:active {
            cursor: grabbing;
        }

        .reviews-carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 18px;
            width: fit-content;
        }

        .review-carousel-card {
            width: calc((100vw - 180px) / 3);
            max-width: 420px;
            background: white;
            border: 1px solid #eef0f3;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(44, 62, 80, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        @media (hover: hover) {
            .review-carousel-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
            }
        }

        .review-media {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .review-media img,
        .review-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-card-content {
            padding: 18px 20px;
        }

        .stars {
            color: #00b67a;
            font-size: 17px;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
            line-height: 1.6;
            color: #3a4a5c;
        }

        .review-author {
            color: #7a8a9c;
            font-size: 13px;
            font-weight: 600;
        }

        .review-product {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid #f0f2f5;
        }

        .product-thumbnail {
            width: 46px;
            height: 46px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid #eef0f3;
        }

        .product-name {
            font-size: 13px;
            color: #7a8a9c;
            font-weight: 500;
        }

        /* Carousel Arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1.5px solid #e0e3e8;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
            color: #4a5568;
        }

        @media (hover: hover) {
            .carousel-arrow:hover {
                background: var(--primary-color);
                border-color: var(--primary-color);
                color: white;
                box-shadow: 0 4px 14px rgba(44, 62, 80, 0.15);
            }
        }

        .carousel-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-arrow-left {
            left: 0;
        }

        .carousel-arrow-right {
            right: 0;
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #dde0e5;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .carousel-dot.active {
            background: var(--primary-color);
            width: 24px;
            border-radius: 4px;
        }

        .carousel-dot:hover {
            background: var(--primary-color);
            opacity: 0.6;
        }

        /* Reviews CTA Area - dual buttons */
        .reviews-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 22px;
            flex-wrap: wrap;
        }

        .reviews-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #00b67a 0%, #009f67 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s ease;
            box-shadow: 0 3px 12px rgba(0, 182, 122, 0.25);
        }

        @media (hover: hover) {
            .reviews-cta-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 18px rgba(0, 182, 122, 0.35);
            }
        }

        .reviews-community-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s ease;
            box-shadow: 0 3px 12px rgba(44, 62, 80, 0.18);
        }

        .reviews-community-btn svg {
            width: 18px;
            height: 18px;
        }

        @media (hover: hover) {
            .reviews-community-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 18px rgba(44, 62, 80, 0.28);
            }
        }

        .trustpilot-stars-img {
            height: 22px;
            width: auto;
        }

        @media (max-width: 768px) {
            .trustpilot-widget-wrap {
                display: none;
            }
        }

        /* Mobile Touch Scrolling */
        @media (max-width: 1024px) {
            .review-carousel-card {
                width: calc((100vw - 160px) / 2);
                max-width: 450px;
            }

            .reviews-carousel-container {
                padding: 0 50px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 768px) {
            .reviews-section {
                padding: 30px 14px 36px;
            }

            .reviews-header-section h2 {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .reviews-trust-stats {
                gap: 24px;
                margin: 12px 0 4px;
            }

            .reviews-trust-stat-num {
                font-size: 22px;
            }

            .reviews-trust-stat-label {
                font-size: 10px;
            }

            .review-carousel-card {
                width: calc(100vw - 120px);
                max-width: 500px;
            }

            .reviews-carousel-container {
                padding: 0 42px;
                margin-top: 16px;
            }

            .reviews-carousel-wrapper {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .reviews-carousel-wrapper::-webkit-scrollbar {
                display: none;
            }

            .reviews-carousel {
                scroll-snap-align: start;
            }

            .review-carousel-card {
                scroll-snap-align: start;
            }

            .review-media {
                height: 340px;
            }

            .carousel-arrow {
                width: 36px;
                height: 36px;
            }

            .reviews-cta {
                flex-direction: column;
                gap: 10px;
                margin-top: 16px;
            }

            .reviews-cta-button,
            .reviews-community-btn {
                width: 100%;
                justify-content: center;
                max-width: 340px;
            }
        }

        @media (max-width: 480px) {
            .reviews-section {
                padding: 24px 10px 32px;
            }

            .reviews-header-section h2 {
                font-size: 24px;
            }

            .reviews-rating-display .rating-stars {
                font-size: 20px;
            }

            .reviews-rating-display .rating-text {
                font-size: 13px;
            }

            .reviews-trust-stats {
                gap: 16px;
                margin: 10px 0 2px;
            }

            .reviews-trust-stat-num {
                font-size: 20px;
            }

            .reviews-carousel-container {
                padding: 0 32px;
                margin-top: 12px;
            }

            .review-carousel-card {
                width: calc(100vw - 90px);
                border-radius: 12px;
            }

            .carousel-arrow {
                width: 38px;
                height: 38px;
            }

            .carousel-arrow svg {
                width: 18px;
                height: 18px;
            }

            .review-media {
                height: 280px;
            }

            .review-text {
                font-size: 13px;
            }

            .review-card-content {
                padding: 14px 16px;
            }

            .reviews-cta-button,
            .reviews-community-btn {
                padding: 13px 22px;
                font-size: 14px;
            }

            .trustpilot-stars-img {
                height: 20px;
            }
        }

        /* How It Works */
        .how-it-works {
            padding: 40px 20px;
            background: var(--light-gray);
        }

        .how-it-works-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .example-images {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .before-after {
            text-align: center;
        }

        .before-after img {
            width: 100%;
            max-width: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .requirements-lists {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .requirement-list h4 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .requirement-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .check-icon, .cross-icon {
            font-size: 20px;
        }

        .check-icon {
            color: var(--success-color);
        }

        .cross-icon {
            color: var(--error-color);
        }

        /* Browse More */
        .browse-section {
            padding: 40px 20px;
            background: white;
        }

        .browse-carousel {
            max-width: 1400px;
            margin: 24px auto 0;
            position: relative;
        }

        .carousel-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            display: flex;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: thin;
        }

        .carousel-item {
            flex: 0 0 250px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s;
        }

        .carousel-item:hover {
            transform: translateY(-5px);
        }

        .carousel-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .view-all-btn {
            display: block;
            margin: 20px auto 0;
            padding: 12px 40px;
            background: white;
            border: 2px solid var(--secondary-color);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Footer */
        .footer {
            background: var(--light-gray);
            padding: 40px 20px 20px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            text-decoration: none;
            color: var(--text-color);
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: #666;
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: var(--primary-color);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .product-types-grid {
                max-width: 800px;
            }

            .product-type-card video {
                max-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .product-section {
                grid-template-columns: 1fr;
            }

            .how-it-works-content {
                grid-template-columns: 1fr;
            }

            .example-images {
                flex-direction: column;
            }

            .requirements-lists {
                grid-template-columns: 1fr;
            }

            .product-types-grid {
                gap: 30px;
            }

            .product-type-card {
                padding: 20px;
            }

            .product-type-card video {
                max-height: 300px;
            }

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

            .header-container {
                flex-direction: column;
                align-items: stretch;
            }

            .logo {
                font-size: 24px;
            }

            .search-bar {
                max-width: 100%;
            }

            .categories-container {
                gap: 15px;
                font-size: 14px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .categories-nav {
                display: none;
            }

            .categories-nav.active {
                display: block;
            }

            .product-title {
                font-size: 24px;
            }

            .carousel-item {
                flex: 0 0 200px;
            }
        }

        @media (max-width: 768px) {
            .upload-grid {
                gap: 16px;
            }

            .upload-circle {
                width: 130px;
                height: 130px;
            }

            .swap-faces-btn {
                width: 44px;
                height: 44px;
                margin-bottom: 28px;
            }

            .upload-instructions {
                margin-bottom: 16px;
            }

            .upload-instructions h3 {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .upload-label {
                font-size: 11px;
                margin-bottom: 8px;
            }

            .preview-btn {
                margin-top: 14px;
                min-height: 48px;
                border-radius: 50px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 70px;
            }

            /* Mobile Container Improvements */
            .container {
                padding: 15px;
                max-width: 100%;
            }

            /* Product Title - Better Mobile Sizing */
            .product-title {
                font-size: 22px !important;
                line-height: 1.3;
                margin-bottom: 14px;
                padding: 0 10px;
            }

            /* Upload Section - Optimized for Mobile */
            .upload-section {
                padding: 24px 14px 20px !important;
                padding-top: 58px !important;
                margin-top: 15px !important;
                border-radius: 14px;
            }

            /* "Preview Before Order" Badge - Mobile Friendly */
            .preview-badge {
                font-size: 10px !important;
                padding: 6px 14px !important;
                white-space: normal !important;
                max-width: 88% !important;
                text-align: center;
                line-height: 1.35 !important;
                top: 10px !important;
                border-radius: 16px !important;
                letter-spacing: 0.3px !important;
            }

            /* Upload Instructions - Compact on mobile */
            .upload-instructions {
                margin-bottom: 16px;
            }

            .upload-instructions h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .upload-instructions p {
                font-size: 12px;
                margin: 2px 0;
                line-height: 1.5;
            }

            .upload-steps-row {
                gap: 4px;
            }

            .upload-steps-row p {
                font-size: 11px !important;
            }

            /* Upload Grid - Mobile Optimized */
            .upload-grid {
                gap: 12px;
                margin-bottom: 16px;
                flex-wrap: nowrap;
            }

            .swap-faces-btn {
                width: 40px;
                height: 40px;
                margin-bottom: 24px;
                flex-shrink: 0;
                min-width: 40px;
            }

            .swap-faces-btn svg {
                width: 20px;
                height: 20px;
            }

            .upload-circle {
                width: 115px;
                height: 115px;
                padding-bottom: 10px;
                flex-shrink: 0;
                border-width: 2px;
            }

            .upload-circle::before {
                width: 55%;
                height: 55%;
                top: 10px;
            }

            .upload-icon {
                width: 32px;
                height: 32px;
                font-size: 20px;
            }

            .upload-text {
                font-size: 11px;
                line-height: 1.2;
            }

            .upload-badge {
                width: 32px;
                height: 32px;
                font-size: 18px;
                top: 20px;
                right: -2px;
                border-width: 2.5px;
            }

            .upload-box {
                flex-shrink: 0;
            }

            .upload-label {
                font-size: 11px;
                margin-bottom: 6px;
                letter-spacing: 0.8px;
                color: var(--text-secondary, #546e7a);
            }

            /* Preview Button - Better Touch Target */
            .preview-btn {
                padding: 16px 30px;
                font-size: 16px;
                margin-top: 12px;
                min-height: 52px;
                border-radius: 50px;
                letter-spacing: 0.05em;
            }

            /* Product Section Gap */
            .product-section {
                gap: 12px;
                margin-bottom: 28px;
            }

            /* Product Image - Compact on mobile so upload peeks above fold */
            .product-image {
                border-radius: 12px;
                margin-bottom: 0;
                max-height: 320px;
                width: auto;
                max-width: 100%;
                display: block;
                margin-left: auto;
                margin-right: auto;
                object-fit: contain;
            }

            /* FAQ Section - Mobile Optimized */
            .faq-question {
                font-size: 14px;
            }

            .faq-answer {
                font-size: 13px;
            }

            .accordion-header {
                padding: 16px 14px;
                font-size: 14px;
            }

            .accordion-content.active {
                padding: 12px 14px 16px;
            }

            /* Reviews Section - handled in main reviews CSS block */

            /* Canvas Features - Mobile */
            .canvas-features-section {
                padding: 28px 12px;
            }

            .canvas-features-title {
                font-size: 26px;
            }

            .canvas-features-list h3 {
                font-size: 18px;
            }

            .canvas-features-list li {
                font-size: 13px;
                padding: 8px 0;
            }

            /* Product Types - Mobile */
            .product-types-section {
                padding: 28px 12px;
            }

            .product-types-section h2 {
                font-size: 26px;
            }

            .product-type-card h3 {
                font-size: 18px;
            }

            .product-type-card p {
                font-size: 13px;
            }

            /* Browse More Section - Mobile */
            .browse-more-section {
                padding: 28px 12px;
            }

            .browse-more-section h2 {
                font-size: 26px;
            }

            .carousel-item {
                flex: 0 0 160px;
                height: 225px;
            }

            .carousel-container {
                gap: 12px;
            }

            .view-all-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            /* Header & Footer */
            .top-header {
                flex-direction: column;
                text-align: center;
                padding: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 15px;
            }

            /* Touch-Friendly Spacing - scoped to actual tap targets only */
            .preview-btn,
            .swap-faces-btn,
            .modal-upload-btn,
            .carousel-arrow,
            .faq-question,
            .accordion-header,
            .view-all-btn,
            .reviews-cta-button,
            .preview-cta-button,
            .loading-fb-btn,
            .artwork-library-fab {
                min-height: 44px;
            }

            /* Prevent Horizontal Scroll */
            body {
                overflow-x: hidden;
            }

            .container, .product-section, .upload-section {
                overflow-x: hidden;
            }
        }

        /* Extra Small Mobile Devices (iPhone SE, etc.) */
        @media (max-width: 375px) {
            .container {
                padding: 10px;
            }

            .product-title {
                font-size: 20px !important;
            }

            .upload-section {
                padding: 20px 10px 16px !important;
                padding-top: 54px !important;
                margin-top: 10px !important;
            }

            .preview-badge {
                font-size: 9.5px !important;
                padding: 5px 12px !important;
                top: 8px !important;
                max-width: 92% !important;
            }

            .upload-instructions h3 {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .upload-circle {
                width: 100px;
                height: 100px;
            }

            .upload-grid {
                gap: 8px;
            }

            .swap-faces-btn {
                width: 36px;
                height: 36px;
                min-width: 36px;
                margin-bottom: 18px;
            }

            .swap-faces-btn svg {
                width: 18px;
                height: 18px;
            }

            .upload-badge {
                width: 28px;
                height: 28px;
                font-size: 16px;
                top: 16px;
                right: -2px;
                border-width: 2px;
            }

            .upload-text {
                font-size: 10px;
            }

            .upload-label {
                font-size: 10px;
                letter-spacing: 0.6px;
            }

            .preview-btn {
                padding: 15px 20px;
                font-size: 15px;
                min-height: 48px;
                border-radius: 50px;
            }

            /* Tighter Spacing on Very Small Screens */
            .canvas-features-section,
            .product-types-section,
            .browse-more-section {
                padding: 24px 8px;
            }

            .reviews-section {
                padding: 20px 8px 28px;
            }
        }

        /* Language Switcher Dropdown */
        .lang-dropdown {
            position: relative;
            display: inline-block;
        }

        .lang-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 8px;
            margin-top: 5px;
        }

        .lang-content a {
            color: var(--text-color);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .lang-content a:hover {
            background-color: var(--light-gray);
        }

        .lang-dropdown:hover .lang-content {
            display: block;
        }

        /* Loading Spinner */
        .spinner {
            border: 3px solid var(--light-gray);
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            display: none;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hidden {
            display: none;
        }

        /* Face Selection Modal */
        .face-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            height: 100dvh;
        }

        .face-modal-overlay.active {
            display: flex;
        }

        .face-modal {
            background: white;
            border-radius: 16px;
            max-width: 800px;
            width: 90%;
            max-height: 80dvh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .face-modal-header {
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .face-modal-header h2 {
            margin: 0;
            font-size: 24px;
        }

        .face-modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .face-modal-close:hover {
            background: var(--light-gray);
            color: var(--text-color);
        }

        .face-modal-body {
            padding: 30px;
            overflow-y: auto;
            flex: 1;
            -webkit-overflow-scrolling: touch;
        }

        .modal-upload-section {
            margin-bottom: 30px;
            padding: 20px;
            background: var(--light-gray);
            border-radius: 12px;
            text-align: center;
        }

        .modal-upload-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .modal-upload-btn:hover {
            background: #4da89a;
            transform: translateY(-2px);
        }

        .modal-section-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-color);
        }

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

        .face-item {
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid transparent;
            transition: all 0.3s;
            position: relative;
        }

        .face-item:hover {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .face-item.selected {
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(95, 185, 171, 0.4);
        }

        .face-item img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            display: block;
        }

        .face-empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .face-empty-state-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .upload-processing {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            padding: 15px 25px;
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 500;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Face Modal - Mobile Responsive */
        @media (max-width: 768px) {
            .face-modal {
                width: 95%;
                max-height: 85dvh;
                border-radius: 14px;
            }

            .face-modal-header {
                padding: 16px 20px;
            }

            .face-modal-header h2 {
                font-size: 20px;
            }

            .face-modal-close {
                width: 44px;
                height: 44px;
                font-size: 30px;
            }

            .face-modal-body {
                padding: 20px;
                -webkit-overflow-scrolling: touch;
            }

            .modal-upload-section {
                margin-bottom: 20px;
                padding: 16px;
            }

            .face-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 12px;
            }

            .face-empty-state {
                padding: 40px 16px;
            }

            .face-empty-state-icon {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .face-modal {
                width: 98%;
                max-height: 90dvh;
                border-radius: 12px;
            }

            .face-modal-header {
                padding: 14px 16px;
            }

            .face-modal-header h2 {
                font-size: 18px;
            }

            .face-modal-body {
                padding: 16px;
            }

            .modal-upload-section {
                padding: 14px;
            }

            .modal-upload-btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
            }

            .face-grid {
                grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
                gap: 10px;
            }

            .modal-section-title {
                font-size: 14px;
            }
        }

        @media (max-width: 375px) {
            .face-modal-body {
                padding: 12px;
            }

            .face-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .face-empty-state {
                padding: 30px 12px;
            }
        }

        @media (max-height: 600px) {
            .face-modal {
                max-height: 95dvh;
                border-radius: 10px;
            }
            .face-modal-header {
                padding: 8px 12px;
            }
            .face-modal-header h2 {
                font-size: 16px;
            }
            .face-modal-body {
                padding: 10px;
            }
            .modal-upload-btn {
                padding: 8px 14px;
                font-size: 13px;
            }
        }

        /* Face Crop Tool */
        .face-crop-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000;
            z-index: 10001;
            flex-direction: column;
            height: 100dvh;
        }
        .face-crop-overlay.active {
            display: flex;
        }
        .face-crop-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: rgba(0,0,0,0.95);
            color: white;
            flex-shrink: 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .face-crop-title {
            font-size: 16px;
            font-weight: 600;
        }
        .face-crop-subtitle {
            font-size: 12px;
            color: #aaa;
            margin-top: 2px;
        }
        .face-crop-cancel {
            background: none;
            border: none;
            color: #aaa;
            font-size: 24px;
            cursor: pointer;
            padding: 4px 8px;
            line-height: 1;
        }
        .face-crop-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: none;
            user-select: none;
            -webkit-user-select: none;
        }
        .face-crop-image {
            max-width: 100%;
            max-height: 100%;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
        }
        .face-crop-rect {
            position: absolute;
            border: 2px solid rgba(255,255,255,0.9);
            box-shadow: 0 0 0 9999px rgba(0,0,0,0.55);
            cursor: move;
            touch-action: none;
            z-index: 2;
            border-radius: 4px;
        }
        .face-crop-rect::before {
            content: '';
            position: absolute;
            top: 33.33%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255,255,255,0.3);
            pointer-events: none;
        }
        .face-crop-rect::after {
            content: '';
            position: absolute;
            top: 66.66%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255,255,255,0.3);
            pointer-events: none;
        }
        .face-crop-gridV1, .face-crop-gridV2 {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255,255,255,0.3);
            pointer-events: none;
        }
        .face-crop-gridV1 { left: 33.33%; }
        .face-crop-gridV2 { left: 66.66%; }
        .face-crop-handle {
            position: absolute;
            width: 24px;
            height: 24px;
            background: #fff;
            border-radius: 50%;
            z-index: 3;
            box-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }
        .face-crop-handle-tl { top: -12px; left: -12px; cursor: nw-resize; }
        .face-crop-handle-tr { top: -12px; right: -12px; cursor: ne-resize; }
        .face-crop-handle-bl { bottom: -12px; left: -12px; cursor: sw-resize; }
        .face-crop-handle-br { bottom: -12px; right: -12px; cursor: se-resize; }
        .face-crop-footer {
            display: flex;
            gap: 12px;
            padding: 16px 20px;
            padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
            background: rgba(0,0,0,0.95);
            justify-content: center;
            flex-shrink: 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .face-crop-btn {
            padding: 14px 28px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            min-width: 130px;
            transition: opacity 0.2s;
        }
        .face-crop-btn:active {
            opacity: 0.8;
        }
        .face-crop-btn-confirm {
            background: var(--primary-color, #5FB9AB);
            color: white;
        }
        .face-crop-btn-skip {
            background: #333;
            color: #ccc;
            border: 1px solid #555;
        }
        @media (max-width: 480px) {
            .face-crop-header {
                padding: 10px 12px;
            }
            .face-crop-title {
                font-size: 14px;
            }
            .face-crop-subtitle {
                font-size: 11px;
            }
            .face-crop-container {
                min-height: 0;
            }
            .face-crop-handle {
                width: 30px;
                height: 30px;
            }
            .face-crop-handle-tl { top: -15px; left: -15px; }
            .face-crop-handle-tr { top: -15px; right: -15px; }
            .face-crop-handle-bl { bottom: -15px; left: -15px; }
            .face-crop-handle-br { bottom: -15px; right: -15px; }
            .face-crop-btn {
                padding: 14px 20px;
                font-size: 15px;
                min-width: 0;
                flex: 1;
            }
            .face-crop-footer {
                padding: 12px 16px;
                padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            }
        }
        @media (max-height: 600px) {
            .face-crop-header {
                padding: 6px 12px;
            }
            .face-crop-title {
                font-size: 13px;
            }
            .face-crop-subtitle {
                font-size: 10px;
            }
            .face-crop-footer {
                padding: 8px 12px;
                padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
                gap: 8px;
            }
            .face-crop-btn {
                padding: 10px 16px;
                font-size: 14px;
                min-width: 0;
                flex: 1;
            }
        }

        /* Pricing Section Styles */
        .faq-answer .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
            margin-top: 20px;
        }

        .pricing-card {
            background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
            transition: left 0.5s ease;
        }

        @media (hover: hover) {
            .pricing-card:hover::before {
                left: 100%;
            }

            .pricing-card:hover {
                border-color: var(--accent-color);
                transform: translateY(-4px);
                box-shadow: var(--shadow-lg);
            }
        }

        .pricing-card.selected {
            border-color: var(--accent-color);
            border-width: 3px;
            background: linear-gradient(135deg, #fff9f0 0%, #fffcf7 100%);
            box-shadow: var(--shadow-lg);
        }

        .pricing-badge {
            background: linear-gradient(135deg, var(--accent-color), #d4b568);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            display: inline-block;
            text-transform: uppercase;
        }

        .pricing-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .pricing-size {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .pricing-amounts {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
        }

        .pricing-original {
            font-size: 16px;
            color: #999;
            text-decoration: line-through;
        }

        .pricing-sale {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .pricing-savings {
            font-size: 13px;
            color: #27ae60;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .pricing-description {
            font-size: 13px;
            color: var(--text-secondary);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .faq-answer .pricing-options {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .pricing-card {
                padding: 18px;
            }
        }

        @media (max-width: 480px) {
            .faq-answer .pricing-options {
                gap: 12px;
            }

            .pricing-name {
                font-size: 18px;
            }

            .pricing-sale {
                font-size: 24px;
            }

            .pricing-card {
                padding: 16px;
            }
        }

        /* Guarantee Section Styles */
        .guarantee-section {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            border-radius: 16px;
            padding: 32px 24px;
            margin-top: 30px;
            box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
            border: 1px solid rgba(44, 62, 80, 0.06);
        }

        .guarantee-title-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .guarantee-shield {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            color: var(--accent-color, #D4AF37);
        }

        .guarantee-title {
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            color: #2c3e50;
            letter-spacing: 0.8px;
            margin: 0;
            text-transform: uppercase;
        }

        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .guarantee-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: white;
            border-radius: 12px;
            padding: 20px 14px;
            box-shadow: 0 1px 4px rgba(44, 62, 80, 0.06);
            border: 1px solid rgba(44, 62, 80, 0.05);
            transition: box-shadow 0.25s, transform 0.25s;
        }

        @media (hover: hover) {
            .guarantee-item:hover {
                box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
                transform: translateY(-2px);
            }
        }

        .guarantee-icon {
            width: 52px;
            height: 52px;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(44, 62, 80, 0.06) 100%);
        }

        .guarantee-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent-color, #D4AF37);
            transition: transform 0.25s;
        }

        @media (hover: hover) {
            .guarantee-item:hover .guarantee-icon svg {
                transform: scale(1.15);
            }
        }

        .guarantee-text {
            font-size: 14px;
            font-weight: 600;
            color: #34495e;
            margin: 0;
            line-height: 1.45;
        }

        @media (max-width: 768px) {
            .guarantee-section {
                padding: 24px 14px;
                margin-top: 24px;
                border-radius: 14px;
            }

            .guarantee-title {
                font-size: 13px;
                letter-spacing: 0.6px;
            }

            .guarantee-title-row {
                margin-bottom: 18px;
            }

            .guarantee-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .guarantee-item {
                flex-direction: row;
                text-align: left;
                padding: 14px 16px;
                gap: 14px;
                border-radius: 12px;
            }

            .guarantee-icon {
                width: 46px;
                height: 46px;
                min-width: 46px;
                margin-bottom: 0;
            }

            .guarantee-icon svg {
                width: 24px;
                height: 24px;
            }

            .guarantee-text {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .guarantee-section {
                padding: 20px 12px;
                margin-top: 20px;
                border-radius: 12px;
            }

            .guarantee-title {
                font-size: 12px;
                letter-spacing: 0.5px;
                line-height: 1.4;
            }

            .guarantee-shield {
                width: 18px;
                height: 18px;
            }

            .guarantee-title-row {
                margin-bottom: 14px;
            }

            .guarantee-grid {
                gap: 8px;
            }

            .guarantee-item {
                padding: 12px 14px;
                gap: 12px;
                border-radius: 10px;
            }

            .guarantee-icon {
                width: 42px;
                height: 42px;
                min-width: 42px;
            }

            .guarantee-icon svg {
                width: 22px;
                height: 22px;
            }

            .guarantee-text {
                font-size: 13px;
            }
        }

        /* Preview Modal Styles */
        .preview-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10001;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
            cursor: pointer;
            height: 100dvh;
        }

        .preview-modal-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .preview-modal {
            background: white;
            border-radius: 20px;
            max-width: 550px;
            width: 90%;
            max-height: 92dvh;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
            cursor: default;
        }

        .preview-modal-overlay {
            overscroll-behavior: contain;
        }
        .preview-modal-overlay.active {
            overflow-y: auto;
        }

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

        /* Loading Modal Styles */
        .loading-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10002;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
            height: 100dvh;
        }

        .loading-modal-overlay.active {
            display: flex;
        }

        .loading-modal {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 90dvh;
            overflow-y: auto;
            padding: 40px 30px;
            padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

        .loading-modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .loading-modal-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .loading-modal-body {
            display: flex;
            flex-direction: column;
        }

        .loading-fb-btn {
            background: linear-gradient(135deg, #0084FF 0%, #0066CC 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
            font-family: 'Poppins', sans-serif;
        }

        .loading-fb-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 132, 255, 0.4);
            background: linear-gradient(135deg, #0066CC 0%, #0055AA 100%);
        }

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

        @media (max-width: 768px) {
            .loading-modal {
                padding: 30px 20px;
                max-width: 95%;
            }

            .loading-modal-header h2 {
                font-size: 24px;
            }

            .loading-fb-btn {
                padding: 14px 24px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .loading-modal {
                padding: 25px 18px;
            }

            .loading-modal-header h2 {
                font-size: 22px;
            }

            .loading-fb-btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 14px;
            }

            #gifload {
                padding: 15px !important;
                margin-bottom: 20px !important;
            }
        }

        @media (max-height: 600px) {
            .loading-modal {
                max-height: 96dvh;
                padding: 18px 16px;
                padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
                border-radius: 14px;
            }
            .loading-modal-header {
                margin-bottom: 12px;
            }
            .loading-modal-header h2 {
                font-size: 20px;
            }
            .loading-fb-btn {
                padding: 10px 18px;
                font-size: 13px;
            }
        }

        /* Artwork Library Floating Button (FAB) */
        .artwork-library-fab {
            position: fixed;
            bottom: calc(30px + env(safe-area-inset-bottom, 0px));
            right: calc(30px + env(safe-area-inset-right, 0px));
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color) 0%, #B8860B 100%);
            border: none;
            box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
            cursor: pointer;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
        }

        .artwork-library-fab svg {
            width: 28px;
            height: 28px;
        }

        .artwork-library-fab:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 25px rgba(184, 134, 11, 0.5);
        }

        .artwork-library-fab:active {
            transform: translateY(-1px) scale(1.02);
        }

        .fab-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e53e3e;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            border: 2px solid white;
            font-family: 'Poppins', sans-serif;
        }

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

        /* Artwork Library Bottom Drawer */
        .artwork-library-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10003;
            animation: fadeIn 0.3s ease;
            height: 100dvh;
        }

        .artwork-library-overlay.active {
            display: block;
        }

        .artwork-library-drawer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 85dvh;
            background: white;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .artwork-library-overlay.active .artwork-library-drawer {
            transform: translateY(0);
        }

        .artwork-library-header {
            padding: 20px 25px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        }

        .artwork-library-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .artwork-library-close {
            background: none;
            border: none;
            font-size: 36px;
            color: var(--text-secondary);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            line-height: 1;
            padding: 0;
        }

        .artwork-library-close:hover {
            background: rgba(0, 0, 0, 0.05);
            color: var(--text-primary);
        }

        .artwork-library-body {
            flex: 1;
            overflow: hidden;
            background: white;
        }

        .artwork-library-body iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .artwork-library-fab {
                bottom: calc(20px + env(safe-area-inset-bottom, 0px));
                right: calc(20px + env(safe-area-inset-right, 0px));
                width: 56px;
                height: 56px;
            }

            .artwork-library-fab svg {
                width: 24px;
                height: 24px;
            }

            .fab-badge {
                width: 22px;
                height: 22px;
                font-size: 11px;
            }

            .artwork-library-drawer {
                height: 90dvh;
                border-radius: 20px 20px 0 0;
            }

            .artwork-library-header {
                padding: 16px 20px;
            }

            .artwork-library-header h2 {
                font-size: 22px;
            }

            .artwork-library-close {
                width: 44px;
                height: 44px;
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .artwork-library-fab {
                bottom: calc(16px + env(safe-area-inset-bottom, 0px));
                right: calc(16px + env(safe-area-inset-right, 0px));
                width: 52px;
                height: 52px;
            }

            .artwork-library-fab svg {
                width: 22px;
                height: 22px;
            }

            .fab-badge {
                width: 20px;
                height: 20px;
                font-size: 10px;
                top: -3px;
                right: -3px;
            }

            .artwork-library-drawer {
                height: 95dvh;
                border-radius: 16px 16px 0 0;
            }

            .artwork-library-header {
                padding: 14px 16px;
            }

            .artwork-library-header h2 {
                font-size: 20px;
            }
        }

        @media (max-height: 600px) {
            .artwork-library-drawer {
                height: 98dvh;
                border-radius: 12px 12px 0 0;
            }
            .artwork-library-header {
                padding: 8px 12px;
            }
            .artwork-library-header h2 {
                font-size: 18px;
            }
            .artwork-library-close {
                width: 36px;
                height: 36px;
                font-size: 28px;
            }
        }

        .preview-modal-header {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            flex-shrink: 0;
            position: relative;
            z-index: 100;
        }

        .preview-modal-header h2 {
            margin: 0;
            font-size: 20px;
            color: #2c3e50;
            font-weight: 700;
        }

        .preview-modal-close {
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #999;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            line-height: 1;
        }

        .preview-modal-close:hover {
            background: rgba(0, 0, 0, 0.1);
            color: var(--text-color);
            transform: rotate(90deg);
        }

        .preview-modal-body {
            padding: 0;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
        }

        .preview-image-container {
            width: 100%;
            position: relative;
            background: #0b0b0f;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            max-height: 55vh;
            min-height: 260px;
        }

        .preview-image-container.watermarked-container {
            overflow: hidden;
        }

        .preview-image-container img {
            max-width: 100%;
            max-height: 60vh;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Watermark and Protection Styles */
        .watermarked-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .watermarked-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://cdn.shopify.com/s/files/1/0765/6934/6396/files/46ce6d9b8ad6f5c33f9e27b29a93a249-fotor-20240910224739.jpg?v=1726085760') repeat;
            pointer-events: none;
            opacity: 0.35;
            z-index: 5;
        }

        /* Product image protection */
        .product-image.protected {
            opacity: 0.85 !important;
            user-select: none !important;
            -webkit-user-select: none !important;
            -webkit-user-drag: none !important;
            -webkit-touch-callout: none !important;
            pointer-events: none !important;
        }

        .product-image-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
            overflow: hidden;
        }

        .product-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://cdn.shopify.com/s/files/1/0765/6934/6396/files/46ce6d9b8ad6f5c33f9e27b29a93a249-fotor-20240910224739.jpg?v=1726085760') repeat;
            pointer-events: none;
            opacity: 0.35;
        }

        .preview-modal-content {
            padding: 14px 18px 16px 18px;
            text-align: center;
            flex-shrink: 0;
            position: relative;
            z-index: 100;
            background: white;
        }

        .preview-modal-content h3 {
            font-size: 16px;
            margin: 0 0 4px 0;
            color: #2c3e50;
            font-weight: 700;
            line-height: 1.3;
        }

        .preview-modal-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
            margin: 0 0 10px 0;
        }

        .preview-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, #0084ff 0%, #0068cc 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4);
            border: none;
            cursor: pointer;
        }

        .preview-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 132, 255, 0.5);
            background: linear-gradient(135deg, #0068cc 0%, #0084ff 100%);
        }

        .preview-cta-button svg {
            width: 20px;
            height: 20px;
        }

        .preview-modal-footer {
            padding: 12px 20px;
            padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            background: #f8f9fa;
            text-align: center;
            border-top: 1px solid var(--border-color);
            flex-shrink: 0;
            position: relative;
            z-index: 100;
        }

        .preview-modal-footer p {
            margin: 0;
            font-size: 12px;
            color: #999;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .preview-modal {
                max-width: 95%;
                max-height: 95dvh;
                border-radius: 16px;
            }

            .preview-modal-header {
                padding: 12px 15px;
            }

            .preview-modal-header h2 {
                font-size: 17px;
            }

            .preview-modal-close {
                width: 44px;
                height: 44px;
                font-size: 30px;
            }

            .preview-image-container {
                max-height: 58dvh;
                min-height: 300px;
            }

            .preview-image-container img {
                max-height: 58dvh;
            }

            .preview-modal-content {
                padding: 15px;
            }

            .preview-modal-content h3 {
                font-size: 17px;
                margin-bottom: 8px;
            }

            .preview-modal-content p {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .preview-cta-button {
                padding: 12px 25px;
                font-size: 14px;
                width: 100%;
                gap: 8px;
            }

            .preview-cta-button svg {
                width: 18px;
                height: 18px;
            }

            .preview-modal-footer {
                padding: 10px 15px;
            }

            .preview-modal-footer p {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .preview-modal {
                max-height: 96dvh;
            }

            .preview-modal-header h2 {
                font-size: 16px;
            }

            .preview-image-container {
                max-height: 55dvh;
                min-height: 280px;
            }

            .preview-image-container img {
                max-height: 55dvh;
            }

            .preview-modal-content {
                padding: 12px;
            }

            .preview-modal-content h3 {
                font-size: 16px;
            }

            .preview-modal-content p {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .preview-cta-button {
                padding: 11px 20px;
                font-size: 13px;
            }
        }

        @media (max-height: 600px) {
            .preview-modal {
                max-height: 96dvh;
                border-radius: 12px;
            }
            .preview-modal-header {
                padding: 8px 12px;
            }
            .preview-modal-header h2 {
                font-size: 14px;
            }
            .preview-image-container {
                max-height: 40vh;
                min-height: 150px;
            }
            .preview-image-container img {
                max-height: 40vh;
            }
            .preview-modal-content {
                padding: 8px 12px;
            }
            .preview-modal-content h3 {
                font-size: 14px;
                margin-bottom: 4px;
            }
            .preview-modal-content p {
                font-size: 11px;
                margin-bottom: 8px;
            }
            .preview-cta-button {
                padding: 9px 16px;
                font-size: 12px;
            }
            .preview-modal-footer {
                padding: 6px 12px;
                padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
            }
            .preview-modal-footer p {
                font-size: 10px;
            }
        }

        /* FAQ Styles */
        .faq-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .faq-item {
            border: 1px solid #eef0f3;
            border-radius: 10px;
            padding: 0;
            background: #fafbfc;
            transition: all 0.25s;
            overflow: hidden;
        }

        .faq-item.active {
            background: white;
            border-color: var(--primary-color, #2C3E50);
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
        }

        .faq-question {
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: color 0.2s;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 4px;
            line-height: 1.45;
            min-height: 44px;
        }

        .faq-question::after {
            content: '';
            flex-shrink: 0;
            margin-left: auto;
            width: 18px;
            height: 18px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(180deg);
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
        }

        @media (hover: hover) {
            .faq-question:hover {
                color: var(--primary-color);
            }
        }

        .faq-answer {
            font-size: 14px;
            display: none;
            color: #4a5568;
            line-height: 1.65;
            max-height: 400px;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0 16px 14px;
            -webkit-overflow-scrolling: touch;
            border-top: 1px solid #eef0f3;
        }

        .faq-answer img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 8px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .faq-answer table {
            width: 100%;
            border-collapse: collapse;
            margin: 10px 0;
            font-size: 13px;
        }

        .faq-answer table th,
        .faq-answer table td {
            padding: 8px 6px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .faq-answer table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }

        .faq-contact {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid #e9ecef;
        }

        .faq-contact p {
            margin: 0;
            font-size: 14px;
            color: #495057;
        }

        .faq-contact a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

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

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Custom Scrollbar Styles */
        .accordion-content.active::-webkit-scrollbar,
        .faq-answer::-webkit-scrollbar {
            width: 5px;
        }

        .accordion-content.active::-webkit-scrollbar-track,
        .faq-answer::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 3px;
        }

        .accordion-content.active::-webkit-scrollbar-thumb,
        .faq-answer::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .accordion-content.active::-webkit-scrollbar-thumb:hover,
        .faq-answer::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        @media (max-width: 768px) {
            .accordion-content.active {
                max-height: 500px;
            }

            .faq-container {
                gap: 5px;
            }

            .faq-answer {
                font-size: 13px;
                max-height: 350px;
                padding: 0 14px 12px;
            }

            .faq-question {
                font-size: 14px;
                padding: 13px 14px;
            }

            .faq-answer table {
                font-size: 11px;
            }

            .faq-answer table th,
            .faq-answer table td {
                padding: 6px 4px;
            }

            .faq-contact {
                padding: 12px;
            }

            .faq-contact p {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .accordion-content.active {
                max-height: 400px;
            }

            .faq-container {
                gap: 4px;
            }

            .faq-item {
                border-radius: 8px;
            }

            .faq-answer {
                font-size: 13px;
                max-height: 300px;
                padding: 0 12px 12px;
                line-height: 1.6;
            }

            .faq-question {
                font-size: 13.5px;
                padding: 12px 12px;
                gap: 2px;
            }

            .faq-question::after {
                width: 16px;
                height: 16px;
            }

            .faq-answer table {
                font-size: 11px;
            }

            .faq-answer table th,
            .faq-answer table td {
                padding: 6px 4px;
            }

            .faq-contact {
                padding: 10px;
            }

            .faq-contact p {
                font-size: 12px;
            }
        }

        /* Sticky Mobile CTA Bar */
        .sticky-mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            background: white;
            padding: 10px 16px;
            padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sticky-mobile-cta.visible {
            transform: translateY(0);
        }

        .sticky-mobile-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            min-height: 52px;
            letter-spacing: 0.02em;
        }

        .sticky-mobile-cta-btn:active {
            transform: scale(0.98);
        }

        .sticky-mobile-cta-btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .sticky-mobile-cta {
                display: block;
            }

            .artwork-library-fab {
                bottom: calc(80px + env(safe-area-inset-bottom, 0px));
            }
        }

        @media (max-width: 480px) {
            .artwork-library-fab {
                bottom: calc(76px + env(safe-area-inset-bottom, 0px));
            }
        }

        /* ═══ FUNNEL OPTIMIZATION: Trust strip above upload ═══ */
        .mobile-trust-strip {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-trust-strip {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 8px 12px;
                background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
                border-radius: 10px;
                margin-bottom: 6px;
                border: 1px solid #fde68a;
            }
            .mobile-trust-strip .mts-stars { color: #f59e0b; font-size: 13px; letter-spacing: -1px; }
            .mobile-trust-strip .mts-text { font-size: 12px; font-weight: 600; color: #92400e; }
            .mobile-trust-strip .mts-count { font-size: 11px; color: #b45309; font-weight: 500; }
        }

        /* ═══ FUNNEL OPTIMIZATION: Before/after strip ═══ */
        .before-after-strip {
            display: none;
        }

        @media (max-width: 768px) {
            .before-after-strip {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 10px 12px;
                background: #f8f9fa;
                border-radius: 10px;
                margin-bottom: 6px;
                border: 1px solid var(--border-color);
            }
            .ba-img {
                width: 60px;
                height: 60px;
                border-radius: 8px;
                object-fit: cover;
                border: 2px solid #fff;
                box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            }
            .ba-arrow {
                font-size: 18px;
                color: var(--accent-color);
                font-weight: 700;
            }
            .ba-label {
                font-size: 10px;
                text-align: center;
                color: var(--text-secondary);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                line-height: 1.2;
            }
            .ba-group { display: flex; flex-direction: column; align-items: center; gap: 3px; }
        }

        /* ═══ FUNNEL OPTIMIZATION: Sticky mobile CTA ═══ */
        .mobile-sticky-cta {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-sticky-cta {
                display: none; /* shown by JS after scroll */
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 9990;
                padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
                background: rgba(255,255,255,0.97);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
                border-top: 1px solid var(--border-color);
            }
            .mobile-sticky-cta.visible { display: block; }
            .sticky-cta-btn {
                width: 100%;
                padding: 14px 24px;
                background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
                color: white;
                border: none;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 700;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                box-shadow: 0 4px 14px rgba(212,175,55,0.4);
                letter-spacing: 0.3px;
            }
            .sticky-cta-btn:active { transform: scale(0.98); }
            .sticky-cta-sub { text-align: center; font-size: 10px; color: var(--text-light); margin-top: 4px; }

            /* Extra bottom padding on body so sticky bar doesn't overlap content */
            body.has-sticky-cta { padding-bottom: 80px; }
        }

        /* ═══ FUNNEL OPTIMIZATION: Larger upload circle for single-face mobile ═══ */
        @media (max-width: 480px) {
            .upload-grid.single-face-mode {
                gap: 0;
            }
            .upload-grid.single-face-mode .upload-circle {
                width: 140px;
                height: 140px;
            }
            .upload-grid.single-face-mode .upload-text {
                font-size: 13px;
                font-weight: 600;
                color: var(--text-secondary);
            }
        }

        /* ═══ Gender confirmation modal ═══ */
        .gender-confirm-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            height: 100dvh;
        }
        .gender-confirm-overlay.active { display: flex; }
        @keyframes gcSlideUp {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes gcPulseArrow {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        .gender-confirm-box {
            background: white;
            border-radius: 20px;
            padding: 28px 22px 22px;
            max-width: 370px;
            width: 92%;
            text-align: center;
            box-shadow: 0 24px 64px rgba(0,0,0,0.35);
            animation: gcSlideUp 0.35s ease-out;
        }
        .gc-icon-header {
            font-size: 32px;
            margin-bottom: 8px;
            line-height: 1;
        }
        .gender-confirm-box h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .gender-confirm-box .gc-sub {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 18px;
        }
        .gc-faces {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 20px;
            background: #fafaf7;
            border-radius: 14px;
            padding: 16px 10px;
            border: 1.5px dashed var(--border-color);
        }
        .gc-face {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .gc-face img {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .gc-face .gc-label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: var(--accent-color);
            background: rgba(212,175,55,0.1);
            padding: 3px 10px;
            border-radius: 20px;
        }
        .gc-swap-btn {
            background: linear-gradient(180deg, #fffef5 0%, #f0e8c8 100%);
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            cursor: pointer;
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.12s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.12s cubic-bezier(0.4, 0, 0.2, 1), background 0.15s;
            animation: gcPulseArrow 1.5s ease-in-out infinite;
            flex-shrink: 0;
            box-shadow:
                0 4px 0 #8a6d1f,
                0 6px 12px rgba(212,175,55,0.4),
                inset 0 2px 0 rgba(255,255,255,0.8),
                inset 0 -2px 0 rgba(138,109,31,0.15);
            text-shadow: 0 1px 0 rgba(255,255,255,0.6);
            position: relative;
            top: 0;
        }
        .gc-swap-btn:hover {
            animation: none;
            top: -2px;
            box-shadow:
                0 6px 0 #8a6d1f,
                0 10px 16px rgba(212,175,55,0.5),
                inset 0 2px 0 rgba(255,255,255,0.8),
                inset 0 -2px 0 rgba(138,109,31,0.15);
        }
        .gc-swap-btn:active {
            background: linear-gradient(180deg, var(--accent-hover), var(--accent-color));
            color: white;
            animation: none;
            top: 4px;
            text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
            box-shadow:
                0 0 0 #8a6d1f,
                0 1px 3px rgba(212,175,55,0.3),
                inset 0 2px 4px rgba(0,0,0,0.25);
        }
        .gc-swap-hint {
            font-size: 10px;
            color: var(--text-light);
            margin-top: -12px;
            margin-bottom: 14px;
        }
        .gc-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .gc-confirm-btn {
            padding: 15px 20px;
            background: linear-gradient(180deg, #e4c24a 0%, var(--accent-color) 50%, var(--accent-hover) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.3px;
            cursor: pointer;
            text-shadow: 0 1px 2px rgba(0,0,0,0.25);
            position: relative;
            top: 0;
            box-shadow:
                0 6px 0 #8a6d1f,
                0 10px 18px rgba(212,175,55,0.4),
                inset 0 2px 0 rgba(255,255,255,0.45),
                inset 0 -3px 0 rgba(0,0,0,0.12);
            transition: transform 0.12s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.12s cubic-bezier(0.4, 0, 0.2, 1), top 0.12s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .gc-confirm-btn:hover {
            top: -2px;
            box-shadow:
                0 8px 0 #8a6d1f,
                0 14px 22px rgba(212,175,55,0.5),
                inset 0 2px 0 rgba(255,255,255,0.5),
                inset 0 -3px 0 rgba(0,0,0,0.12);
        }
        .gc-confirm-btn:active {
            top: 6px;
            box-shadow:
                0 0 0 #8a6d1f,
                0 3px 8px rgba(212,175,55,0.3),
                inset 0 2px 4px rgba(0,0,0,0.2),
                inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .gc-skip-btn {
            background: none;
            border: none;
            font-size: 12px;
            color: var(--text-light);
            cursor: pointer;
            padding: 6px;
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .gender-confirm-box {
                padding: 20px 16px 16px;
                width: 96%;
                border-radius: 16px;
            }
            .gender-confirm-box h3 {
                font-size: 15px;
            }
            .gc-faces {
                gap: 10px;
                padding: 12px 8px;
            }
            .gc-face img {
                width: 72px;
                height: 72px;
            }
            .gc-swap-btn {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
            .gc-confirm-btn {
                padding: 13px 16px;
                font-size: 14px;
            }
        }

        @media (max-height: 600px) {
            .gender-confirm-box {
                padding: 14px 14px 12px;
                border-radius: 14px;
                max-width: 340px;
            }
            .gc-icon-header {
                font-size: 24px;
                margin-bottom: 4px;
            }
            .gender-confirm-box h3 {
                font-size: 14px;
                margin-bottom: 2px;
            }
            .gender-confirm-box .gc-sub {
                font-size: 11px;
                margin-bottom: 10px;
            }
            .gc-faces {
                gap: 8px;
                padding: 10px 8px;
                margin-bottom: 12px;
            }
            .gc-face img {
                width: 64px;
                height: 64px;
            }
            .gc-face .gc-label {
                font-size: 10px;
                padding: 2px 8px;
            }
            .gc-swap-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .gc-swap-hint {
                margin-top: -8px;
                margin-bottom: 8px;
            }
            .gc-confirm-btn {
                padding: 11px 16px;
                font-size: 13px;
            }
        }

        /* Community & Reviews Section */
    