        /* ================ CSS RESET & VARIABLES ================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy-900: #0B1929;
            --navy-800: #122240;
            --navy-700: #1A3158;
            --navy-600: #274C77;
            --navy-500: #3A6199;
            --white: #FFFFFF;
            --white-95: #F8F9FA;
            --white-90: #F0F2F5;
            --black: #000000;
            --black-90: #111111;
            --black-80: #222222;
            --black-60: #666666;

            --font-heading: 'Space Grotesk', sans-serif;
            --font-mono: 'IBM Plex Mono', monospace;

            --banner-height: 32px;
            --nav-height: 94px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-heading);
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ================ TYPOGRAPHY ================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.1;
        }

        .mono {
            font-family: var(--font-mono);
            letter-spacing: 0.02em;
        }

        .uppercase {
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ================ UTILITY CLASSES ================ */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* ================ REVEAL ANIMATIONS ================ */
        .reveal,
        .reveal-left,
        .reveal-right,
        .reveal-scale {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal {
            transform: translateY(40px);
        }

        .reveal-left {
            transform: translateX(-40px);
        }

        .reveal-right {
            transform: translateX(40px);
        }

        .reveal-scale {
            transform: scale(0.8);
        }

        .reveal.active,
        .reveal-left.active,
        .reveal-right.active,
        .reveal-scale.active {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1);
        }

        /* Staggered delays */
        [data-stagger] > * {
            transition-delay: calc(var(--stagger-index, 0) * 100ms);
        }

        /* ================ TOP BANNER ================ */
        .top-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: var(--navy-900);
            color: var(--white);
            text-align: center;
            padding: 8px 0;
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .top-banner span {
            opacity: 0.7;
        }

        /* ================ MARQUEE STRIP ================ */
        .marquee-strip {
            background: var(--white-95);
            border-bottom: 1px solid var(--white-90);
            padding: 12px 0;
            overflow: hidden;
            margin-top: calc(var(--banner-height) + var(--nav-height));
        }

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

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-25%); }
        }

        .marquee-item {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--black-60);
            white-space: nowrap;
            padding: 0 30px;
        }

        .marquee-separator {
            color: var(--navy-600);
            padding: 0 10px;
            font-size: 8px;
        }

        /* ================ NAVIGATION ================ */
        nav {
            position: fixed;
            top: 32px;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 0;
            background: var(--white);
            border-bottom: 4px solid var(--navy-900);
        }

        nav.solid {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

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

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

        .nav-logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-mono);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--black);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--navy-600);
            transition: width 0.3s ease;
        }

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

        .nav-cta {
            padding: 12px 24px;
            background: var(--navy-900);
            color: var(--white);
            text-decoration: none;
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

        .hamburger {
            display: none;
            width: 30px;
            height: 24px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        nav.solid .hamburger span {
            background: var(--black);
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .hamburger span:nth-child(3) { bottom: 0; }

        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

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

        .hamburger.active span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: block;
            }
        }

        /* ================ STATEMENT ================ */
        .statement {
            background: var(--navy-900);
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        .statement-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .statement-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 40px;
        }

        .statement-text {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 40px;
        }

        .statement-text em {
            font-style: normal;
            color: rgba(255,255,255,0.55);
        }

        .statement-line {
            width: 60px;
            height: 3px;
            background: var(--white);
            margin: 0 auto 40px;
            opacity: 0;
            transform: scaleX(0);
            transition: all 1s ease;
        }

        .statement-line.active {
            opacity: 1;
            transform: scaleX(1);
        }

        .statement-sub {
            font-family: var(--font-mono);
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .statement-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(120px, 20vw, 300px);
            font-weight: 700;
            color: rgba(255,255,255,0.03);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
        }

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

        @keyframes specReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .spec-item strong {
            color: var(--black);
        }

        /* ================ SECTION STYLES ================ */
        section {
            padding: 100px 0;
            position: relative;
        }





        .thick-border-top {
            border-top: 4px solid var(--navy-900);
        }

        .thick-border-bottom {
            border-bottom: 4px solid var(--navy-900);
        }

        /* ================ BRAND STATEMENT ================ */
        .brand-statement {
            background: var(--white-95);
            position: relative;
        }

        .quote-text {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 500;
            line-height: 1.4;
            max-width: 1200px;
            color: var(--black);
        }

        .word-reveal span {
            display: inline;
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .word-reveal.active span {
            opacity: 1;
        }

        /* ================ PRODUCT SHOWCASE ================ */
        .product-showcase {
            background: var(--white);
            padding-top: 72px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .product-images {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .product-image-main {
            grid-column: 1 / -1;
            position: relative;
            aspect-ratio: 4/3;
            background: var(--white-95);
            overflow: hidden;
        }

        .product-image-main img,
        .product-image-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .product-image-main:hover img {
            transform: scale(1.03);
        }

        .product-image-thumb:hover img {
            transform: scale(1.08);
        }

        .product-image-thumb {
            aspect-ratio: 4/3;
            background: var(--white-95);
            border: 1px solid var(--white-90);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-image-thumb:hover {
            opacity: 0.9;
        }

        .product-image-thumb.active-thumb {
            outline: 2px solid var(--navy-900);
            outline-offset: -2px;
        }

        .product-info h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--black);
        }

        .product-subtitle {
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            color: var(--black-60);
            margin-bottom: 30px;
        }

        .product-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 40px;
        }

        .spec-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .spec-list li {
            font-family: var(--font-mono);
            font-size: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--white-90);
            display: flex;
            opacity: 0;
            transform: translateX(-20px);
        }

        .spec-list li.active {
            animation: slideInLeft 0.5s ease forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .spec-list .spec-label {
            color: var(--black-60);
            text-transform: uppercase;
            min-width: 120px;
        }

        .spec-list .spec-value {
            color: var(--black);
        }

        .cta-button {
            width: 100%;
            padding: 20px;
            background: var(--navy-900);
            color: var(--white);
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        /* Payment trust */
        .payment-trust {
            margin-top: 20px;
            text-align: center;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .payment-icon {
            width: 42px;
            height: 26px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .payment-icon:hover {
            opacity: 0.8;
        }

        .payment-text {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--black-60);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .size-guide-link {
            display: inline-block;
            margin-top: 0;
            margin-bottom: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--navy-700);
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid var(--navy-700);
            transition: all 0.3s ease;
        }

        .size-guide-link:hover {
            color: var(--white);
            background: var(--navy-700);
        }

        /* Delivery estimate in product section */
        .delivery-estimate {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 12px 16px;
            background: var(--white-95);
            border-left: 3px solid var(--navy-700);
        }

        .delivery-flag {
            line-height: 1;
            flex-shrink: 0;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
            vertical-align: middle;
            box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
        }

        .flag-icon-lg {
            width: 24px;
            height: 18px;
        }

        .delivery-text {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--black-80);
            line-height: 1.4;
        }

        .delivery-text strong {
            color: var(--black);
        }

        .delivery-policy-link {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--navy-600);
            text-decoration: none;
            margin-left: auto;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .delivery-policy-link:hover {
            color: var(--navy-900);
            text-decoration: underline;
        }

        /* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: scale(0);
            animation: rippleAnimation 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes rippleAnimation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* (length selector + color picker styles moved above) */

        /* ================ COLOR PICKER (inline in product) ================ */
        .color-picker {
            margin-bottom: 30px;
        }

        .color-picker-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--black-60);
            margin-bottom: 16px;
        }

        .color-swatches {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .color-swatch-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .color-swatch {
            width: 64px;
            height: 64px;
            border-radius: 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .color-swatch.active {
            border-color: var(--navy-900);
        }

        .color-swatch.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .color-swatch-cognac { background: #A0622E; }
        .color-swatch-darkbrown { background: #3E2519; }

        .color-swatch-name {
            font-family: var(--font-mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--black);
            text-align: center;
        }

        .color-swatch-group.disabled .color-swatch-name {
            color: var(--black-60);
            opacity: 0.5;
        }

        .color-swatch-group.disabled .coming-soon-label {
            font-family: var(--font-mono);
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--black-60);
            opacity: 0.6;
        }

        /* ================ ORIGIN BADGE (Norwegian) ================ */
        .origin-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            background: var(--white-95);
            border: 1px solid var(--white-90);
            margin-bottom: 30px;
        }

        .norway-flag {
            flex-shrink: 0;
        }

        .origin-text {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--black-60);
            line-height: 1.5;
        }

        .origin-text strong {
            color: var(--black);
            font-weight: 600;
        }

        /* ================ INLINE LENGTH SELECTOR (in product section) ================ */
        .inline-length-selector {
            margin-bottom: 8px;
        }

        .inline-length-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--black-60);
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .selected-length {
            font-weight: 600;
            color: var(--black);
            font-size: 14px;
        }

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

        .length-option {
            padding: 14px 8px;
            text-align: center;
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 500;
            background: var(--white-95);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.25s ease;
            color: var(--black);
        }

        .length-option:hover {
            border-color: var(--navy-700);
            background: var(--white);
        }

        .length-option.active {
            border-color: var(--navy-900);
            background: var(--navy-900);
            color: var(--white);
        }

        .length-option .length-cm {
            display: block;
            font-size: 15px;
            font-weight: 600;
        }

        .length-option .length-inches {
            display: block;
            font-size: 10px;
            color: var(--black-60);
            margin-top: 2px;
        }

        .length-option.active .length-inches {
            color: rgba(255,255,255,0.6);
        }


        /* ================ THE MAKER ================ */
        .story {
            background: var(--navy-900);
            padding: 100px 0;
            color: var(--white);
            overflow: hidden;
        }


        /* Row 1: Quote + Portrait */
        .story-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .story-quote {
            padding-left: 28px;
            border-left: 3px solid var(--navy-500);
        }

        .story-quote h2 {
            font-size: 34px;
            font-weight: 600;
            font-style: italic;
            line-height: 1.3;
            color: var(--white);
            margin-bottom: 20px;
        }

        .story-quote-attr {
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .story-portrait-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            background: var(--navy-800);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .story-portrait-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-portrait-placeholder {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.2);
        }

        .story-portrait-caption {
            font-family: var(--font-mono);
            font-size: 11px;
            color: rgba(255,255,255,0.55);
            margin-top: 10px;
        }

        /* Row 2: Text columns */
        .story-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .story-text {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255,255,255,0.65);
        }

        .story-text strong {
            color: var(--white);
        }

        /* Row 3: Stats bar */
        .story-stats {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .story-stat {
            text-align: center;
            padding: 28px 12px;
            border-right: 1px solid rgba(255,255,255,0.08);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s ease;
        }

        .story-stat.active {
            opacity: 1;
            transform: translateY(0);
        }

        .story-stat:last-child {
            border-right: none;
        }

        .story-stat-icon {
            margin-bottom: 12px;
        }

        .story-stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--navy-500);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .story-stat-value {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .story-stat-label {
            font-family: var(--font-mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.55);
        }

        .story-flag {
            display: inline-block;
            vertical-align: middle;
            margin-left: 6px;
        }

        @media (max-width: 768px) {
            .story-hero {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .story-hero .story-quote {
                order: 2;
            }
            .story-hero .story-portrait {
                order: 1;
            }
            .story-quote h2 {
                font-size: 24px;
            }
            .story-body {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .story-stats {
                grid-template-columns: repeat(3, 1fr);
            }
            .story-stat {
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
        }

        /* ================ SPECS TABLE ================ */
        .specs-table {
            background: var(--white);
            padding: 100px 0;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            border-top: 4px solid var(--navy-900);
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid var(--white-90);
            opacity: 0;
        }

        .spec-row:nth-child(odd) {
            transform: translateX(-30px);
        }

        .spec-row:nth-child(even) {
            transform: translateX(30px);
        }

        .spec-row.active {
            animation: specRowReveal 0.6s ease forwards;
        }

        @keyframes specRowReveal {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .spec-row-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            color: var(--black-60);
            letter-spacing: 0.05em;
        }

        .spec-row-value {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
        }

        /* ================ STATS SECTION ================ */
        .stats {
            background: var(--navy-900);
            padding: 100px 0;
            color: var(--white);
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 60px;
            position: relative;
        }

        .stat-item {
            text-align: center;
            position: relative;
            opacity: 0;
            transform: scale(0.8);
        }

        .stat-item.active {
            animation: statReveal 0.6s ease forwards;
        }

        @keyframes statReveal {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-number {
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white);
        }

        .stat-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            letter-spacing: 0.1em;
        }

        .stat-divider {
            display: none;
        }

        /* ================ ETSY CTA ================ */
        .etsy-cta {
            background: var(--white);
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid var(--white-90);
            border-bottom: 1px solid var(--white-90);
        }

        .etsy-cta-inner {
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .etsy-cta-text {
            font-family: var(--font-mono);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--black-60);
        }

        .etsy-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #F1641E;
            color: var(--white);
            text-decoration: none;
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .etsy-btn:hover {
            background: #D9551A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(241, 100, 30, 0.3);
        }

        .etsy-btn .etsy-logo {
            height: 24px;
            width: auto;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .etsy-cta-inner {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* ================ SHIPPING ================ */
        .shipping {
            background: var(--navy-900);
            padding: 100px 0;
            color: var(--white);
            overflow: hidden;
        }


        .shipping-intro {
            max-width: 600px;
            margin-bottom: 60px;
        }

        .shipping-intro h2 {
            font-size: 36px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
        }

        .shipping-intro p {
            font-family: var(--font-mono);
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        /* Journey steps */
        .shipping-journey {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-bottom: 50px;
        }

        .shipping-track {
            position: absolute;
            top: 23px;
            left: 24px;
            right: 24px;
            height: 2px;
            background: rgba(255,255,255,0.08);
            z-index: 0;
        }

        .shipping-track-progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--navy-500), var(--white));
            transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .journey-step {
            flex: 1;
            position: relative;
            text-align: center;
            padding-top: 56px;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.6s ease;
        }

        .journey-step.active {
            opacity: 1;
            transform: translateY(0);
        }

        .journey-dot {
            width: 48px;
            height: 48px;
            background: var(--navy-900);
            border: 2px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.6s ease;
            z-index: 1;
        }

        .journey-step.active .journey-dot {
            background: #152a45;
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 0 30px rgba(255,255,255,0.1);
        }

        .journey-dot svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: rgba(255,255,255,0.3);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.6s ease;
        }

        .journey-step.active .journey-dot svg {
            stroke: var(--white);
        }

        .journey-label {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .journey-sub {
            font-family: var(--font-mono);
            font-size: 11px;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
        }

        .journey-time {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 600;
            color: var(--navy-500);
            margin-top: 8px;
            letter-spacing: 0.02em;
        }

        /* Delivery destinations table */
        .shipping-destinations {
            margin-bottom: 40px;
        }

        .shipping-dest-title {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 16px;
        }

        .dest-row {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.5s ease;
        }

        .dest-row.active {
            opacity: 1;
            transform: translateX(0);
        }

        .dest-row:last-child {
            border-bottom: none;
        }

        .dest-flag {
            margin-right: 14px;
            flex-shrink: 0;
        }

        .dest-name {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 500;
            color: var(--white);
            flex: 1;
        }

        .dest-time {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            margin-right: 20px;
            white-space: nowrap;
        }

        .dest-cost {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            min-width: 80px;
            text-align: right;
        }

        .dest-cost-free {
            color: #4ade80;
        }

        .dest-cost-paid {
            color: var(--white);
            font-weight: 700;
        }

        /* Total */
        .shipping-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border: 1px solid rgba(255,255,255,0.15);
            max-width: 600px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s ease 1.5s;
        }

        .shipping-total.active {
            opacity: 1;
            transform: translateY(0);
        }

        .shipping-total-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.7);
        }

        .shipping-total-value {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
        }

        .shipping-total-note {
            font-family: var(--font-mono);
            font-size: 11px;
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 768px) {
            .shipping-journey {
                flex-direction: column;
                padding-left: 36px;
                gap: 40px;
            }
            .shipping-track {
                top: 0;
                bottom: 0;
                left: 23px;
                right: auto;
                width: 2px;
                height: 100%;
            }
            .shipping-track-progress {
                width: 100% !important;
                height: 0%;
                transition: height 2s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .journey-step {
                text-align: left;
                padding-top: 0;
                padding-left: 28px;
            }
            .journey-dot {
                left: -36px;
                top: -4px;
                transform: none;
                width: 40px;
                height: 40px;
            }
            .journey-dot svg {
                width: 18px;
                height: 18px;
            }
            .dest-row {
                padding: 12px 0;
            }
        }

        /* ================ TESTIMONIALS TABLE ================ */
        .testimonials {
            background: var(--white);
            padding: 100px 0;
        }

        .reviews {
            background: var(--white-95);
            padding: 100px 0;
        }

        .reviews-summary {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--white-90);
        }

        .reviews-score {
            font-size: 56px;
            font-weight: 700;
            color: var(--black);
            line-height: 1;
        }

        .reviews-stars {
            font-size: 20px;
            color: var(--navy-700);
            letter-spacing: 2px;
        }

        .reviews-count {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--black-60);
            margin-top: 4px;
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .review-card {
            background: var(--white-95);
            padding: 32px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-left-color: var(--navy-700);
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--navy-900);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .review-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
        }

        .review-date {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--black-60);
            margin-top: 2px;
        }

        .review-stars {
            margin-left: auto;
            font-size: 14px;
            color: var(--navy-700);
            letter-spacing: 2px;
        }

        .review-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--black);
        }

        .review-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--black-80);
            margin-bottom: 14px;
        }

        .review-tag {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--black-60);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .reviews-show-all {
            display: block;
            width: 100%;
            margin-top: 40px;
            padding: 16px 0;
            background: none;
            border: 1px solid var(--black);
            font-family: var(--font-mono);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--black);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-show-all:hover {
            background: var(--navy-900);
            border-color: var(--navy-900);
            color: var(--white);
        }

        .reviews-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .reviews-modal-overlay.open {
            display: flex;
        }

        .reviews-modal {
            background: var(--white);
            width: 100%;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 50px 40px;
            position: relative;
        }

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

        .reviews-modal-title {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
        }

        .reviews-modal-close {
            width: 40px;
            height: 40px;
            background: none;
            border: 1px solid var(--white-90);
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .reviews-modal-close:hover {
            background: var(--navy-900);
            color: var(--white);
            border-color: var(--navy-900);
        }

        .reviews-modal-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .reviews-modal-list .review-card {
            background: var(--white-95);
        }

        @media (max-width: 768px) {
            .reviews-modal-overlay {
                padding: 20px;
            }
            .reviews-modal {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .review-stars { display: none; }
        }

        .testimonial-location {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--black-60);
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
        }

        .star {
            font-size: 16px;
            color: var(--navy-600);
            opacity: 0;
            transform: scale(0);
        }

        .star.active {
            animation: starPop 0.3s ease forwards;
        }

        @keyframes starPop {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* ================ COMPARISON TABLE ================ */
        /* (comparison section removed) */

        /* ================ SIZE GUIDE ================ */
        .size-guide-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 16px;
        }

        .size-guide {
            background: var(--white-95);
            padding: 80px 0;
        }

        .size-guide-intro {
            font-size: 16px;
            line-height: 1.7;
            color: var(--black-80);
            max-width: 700px;
            margin-bottom: 40px;
        }

        .size-guide-intro strong {
            color: var(--black);
        }

        .size-guide-visual {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 40px;
        }

        .size-row {
            display: grid;
            grid-template-columns: 1fr 120px 1fr;
            align-items: center;
            padding: 16px 24px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

        .size-row.active {
            opacity: 1;
            transform: translateX(0);
        }

        .size-row:hover {
            background: var(--white);
        }

        .size-waist {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--black-60);
        }

        .size-belt {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--black);
            text-align: center;
        }

        .size-pants {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--black-60);
            text-align: right;
        }

        .size-row-header {
            display: grid;
            grid-template-columns: 1fr 120px 1fr;
            padding: 12px 24px;
            margin-bottom: 4px;
        }

        .size-row-header span {
            font-family: var(--font-mono);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--black-60);
        }

        .size-row-header span:nth-child(2) {
            text-align: center;
        }

        .size-row-header span:nth-child(3) {
            text-align: right;
        }

        .size-tip {
            background: var(--white);
            border-left: 4px solid var(--navy-700);
            padding: 20px 24px;
            font-size: 14px;
            line-height: 1.6;
            color: var(--black-80);
            margin-bottom: 40px;
        }

        .size-tip strong {
            color: var(--black);
        }

        .measure-instructions {
            margin-top: 40px;
        }

        .measure-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            color: var(--black);
        }

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

        .circle-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--navy-900);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .circle-text {
            font-size: 13px;
            color: var(--black-60);
            line-height: 1.6;
        }

        .size-note {
            font-size: 14px;
            line-height: 1.6;
            color: var(--black-60);
            margin-top: 16px;
            padding: 14px 0;
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        .size-note strong {
            color: var(--black);
        }

        @media (max-width: 768px) {
            .measure-steps-circles {
                grid-template-columns: 1fr;
            }
            .size-row {
                grid-template-columns: 1fr 80px 1fr;
                padding: 12px 16px;
            }
            .size-belt {
                font-size: 18px;
            }
        }

        .measure-circle {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        /* ================ FAQ SECTION ================ */
        .faq {
            background: var(--white);
            padding: 100px 0;
        }

        .faq-heading {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--black);
            text-align: center;
        }

        .faq-subheading {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--black-60);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
            margin-bottom: 50px;
        }

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

        .faq-item {
            background: var(--white-95);
            margin-bottom: 12px;
            position: relative;
            overflow: hidden;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }

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

        .faq-item.faq-open {
            border-left-color: var(--navy-900);
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .faq-question {
            padding: 22px 60px 22px 24px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: var(--black);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-icon {
            position: absolute;
            right: 24px;
            font-size: 20px;
            font-weight: 300;
            color: var(--black-60);
            transition: all 0.3s ease;
            line-height: 1;
        }

        .faq-item.faq-open .faq-icon {
            transform: rotate(45deg);
            color: var(--navy-900);
        }

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

        .faq-item.faq-open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 24px 24px 24px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--black-60);
        }

        /* ================ GALLERY ================ */
        .gallery {
            background: var(--white-95);
            padding: 100px 0;
            overflow: hidden;
        }

        .gallery-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--black);
        }

        .gallery-strip {
            display: flex;
            overflow-x: auto;
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 10px;
        }

        .gallery-strip::-webkit-scrollbar {
            display: none;
        }

        .gallery-strip:active {
            cursor: grabbing;
        }

        .gallery-drag-hint {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--black-60);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .gallery-item {
            flex: 0 0 300px;
            height: 300px;
            margin-right: 20px;
            position: relative;
            overflow: hidden;
            background: var(--white-90);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* ================ NEWSLETTER ================ */
        .newsletter {
            background: var(--navy-900);
            padding: 100px 0;
            color: var(--white);
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .newsletter-content.active {
            animation: fadeInUp 0.8s ease forwards;
        }

        .newsletter-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .newsletter-subtitle {
            font-family: var(--font-mono);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            margin-bottom: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            background: transparent;
            border: 2px solid var(--white);
            border-right: none;
            color: var(--white);
            font-family: var(--font-mono);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255,255,255,0.05);
        }

        .newsletter-submit {
            padding: 15px 30px;
            background: var(--white);
            color: var(--navy-900);
            border: none;
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-submit:hover {
            transform: translateX(5px);
        }

        .newsletter-privacy {
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }

        /* ================ CONTACT ================ */
        .contact {
            background: var(--white);
            padding: 140px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        .contact-heading {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--black);
        }

        .contact-subtext {
            font-size: 16px;
            line-height: 1.7;
            color: var(--black-60);
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            border: 1px solid var(--white-90);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .contact-method:hover {
            border-color: var(--navy-700);
            transform: translateX(5px);
        }

        .contact-method-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-method-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--navy-700);
            fill: none;
            stroke-width: 2;
        }

        .contact-method-label {
            font-family: var(--font-mono);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--black-60);
            margin-bottom: 2px;
        }

        .contact-method-value {
            font-size: 16px;
            font-weight: 500;
            color: var(--black);
        }

        .contact-info {
            padding-top: 20px;
        }

        .contact-response-note {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--black-60);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .contact-response-dot {
            width: 8px;
            height: 8px;
            background: #34c759;
            border-radius: 50%;
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .contact-form .contact-heading {
            margin-bottom: 10px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 14px 18px;
            border: 1px solid var(--white-90);
            background: var(--white-95);
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--black);
            transition: all 0.3s ease;
            resize: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--black-60);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--navy-700);
            background: var(--white);
        }

        .contact-form textarea {
            min-height: 120px;
        }

        .contact-submit {
            align-self: flex-start;
            padding: 14px 40px;
            background: var(--navy-900);
            color: var(--white);
            border: none;
            font-family: var(--font-mono);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-submit:hover {
            background: var(--navy-700);
            transform: translateX(5px);
        }

        /* ================ FOOTER ================ */
        footer {
            background: var(--white);
            border-top: 4px solid var(--navy-900);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-bottom: 40px;
            position: relative;
        }

        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .footer-column {
            position: relative;
        }

        .footer-column:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 0;
            height: 100%;
            width: 1px;
            background: var(--navy-900);
        }

        .footer-logo {
            margin-bottom: 15px;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-text {
            font-size: 14px;
            color: var(--black-60);
            line-height: 1.6;
        }

        .footer-column h4 {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--black);
            letter-spacing: 0.1em;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            color: var(--black-60);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
            position: relative;
            transition: color 0.3s ease;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--navy-600);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--navy-600);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-year {
            position: absolute;
            bottom: 0;
            right: 0;
            font-size: 80px;
            font-weight: 700;
            color: var(--black);
            opacity: 0.05;
            pointer-events: none;
        }

        .footer-bottom {
            border-top: 1px solid var(--white-90);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--black-60);
            text-transform: uppercase;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            color: var(--black-60);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--navy-600);
        }

        /* ================ BACK TO TOP ================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--navy-900);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--navy-700);
        }

        /* ================ SCROLL PROGRESS ================ */
        .scroll-progress {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid var(--black-60);
            margin: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: var(--navy-900);
            border-color: var(--navy-900);
            transform: scale(1.5);
        }

        /* ================ MOBILE MENU ================ */
        .mobile-menu {
            position: fixed;
            top: 32px;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 80px 20px 40px;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            z-index: 900;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu-links {
            list-style: none;
        }

        .mobile-menu-links a {
            display: block;
            padding: 15px 0;
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            border-bottom: 1px solid var(--white-90);
        }

        .mobile-menu-cta {
            margin-top: 30px;
            width: 100%;
            padding: 15px;
            background: var(--navy-900);
            color: var(--white);
            text-align: center;
            font-family: var(--font-mono);
            font-size: 14px;
            text-transform: uppercase;
            text-decoration: none;
            display: block;
        }

        /* ================ CHECKOUT PAGE ================ */

        .checkout-page {
            min-height: 100vh;
            background: var(--white);
        }

        .checkout-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
            border-bottom: 1px solid #e5e7eb;
        }

        .checkout-logo img {
            height: 40px;
        }

        .checkout-steps {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: #999;
        }

        .checkout-step.active {
            color: var(--black);
            font-weight: 600;
        }

        .checkout-step.completed {
            color: var(--navy-600);
        }

        .checkout-step-divider {
            color: #ddd;
        }

        .checkout-main {
            display: grid;
            grid-template-columns: 1fr 400px;
            max-width: 1060px;
            margin: 0 auto;
            gap: 60px;
            padding: 40px;
        }

        .checkout-section-title {
            font-size: 20px;
            margin-bottom: 16px;
            margin-top: 32px;
        }

        .checkout-section-title:first-child,
        form .checkout-section-title:first-of-type {
            margin-top: 0;
        }

        .checkout-form-col input,
        .checkout-form-col select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-family: var(--font-heading);
            font-size: 15px;
            margin-bottom: 12px;
            background: var(--white);
            color: var(--black);
            transition: border-color 0.2s;
            -webkit-appearance: none;
        }

        .checkout-form-col select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .checkout-form-col input:focus,
        .checkout-form-col select:focus {
            outline: none;
            border-color: var(--navy-600);
        }

        .checkout-form-col input::placeholder {
            color: #9ca3af;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .checkout-btn {
            width: 100%;
            padding: 16px;
            background: var(--navy-900);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 24px;
            transition: background 0.2s;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .checkout-btn:hover {
            background: var(--navy-800);
        }

        .checkout-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .checkout-back-btn {
            background: none;
            border: none;
            color: var(--navy-600);
            font-family: var(--font-heading);
            font-size: 14px;
            cursor: pointer;
            padding: 12px 0;
            margin-top: 8px;
            display: block;
        }

        .checkout-back-btn:hover {
            text-decoration: underline;
        }

        .checkout-error {
            background: #fef2f2;
            color: #dc2626;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
            margin-top: 12px;
            display: none;
        }

        #payment-element {
            margin-top: 8px;
        }

        /* Order Summary Sidebar */
        .checkout-summary {
            position: sticky;
            top: 40px;
            background: #f9fafb;
            padding: 32px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .checkout-summary h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px 0;
        }

        .summary-item-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .summary-item-name {
            font-weight: 600;
            font-size: 15px;
        }

        .summary-item-variant,
        .summary-item-qty {
            font-size: 13px;
            color: #666;
        }

        .summary-item-price {
            font-weight: 600;
            font-size: 15px;
        }

        .summary-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 12px 0;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 14px;
        }

        .summary-total {
            font-weight: 700;
            font-size: 18px;
            padding-top: 12px;
        }

        /* Checkout Success */
        .checkout-success {
            text-align: center;
            padding: 60px 0;
        }

        .checkout-success-icon {
            width: 64px;
            height: 64px;
            background: #ecfdf5;
            color: #059669;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 24px;
        }

        .checkout-success h2 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .checkout-success p {
            color: #666;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .checkout-order-id {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--black);
            font-size: 16px;
        }

        .checkout-success .checkout-btn {
            max-width: 300px;
            margin: 32px auto 0;
        }

        /* Checkout Mobile */
        @media (max-width: 768px) {
            .checkout-main {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 20px;
            }

            .checkout-header {
                padding: 16px 20px;
            }

            .checkout-summary-col {
                order: -1;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
