        :root {
            /* Colors - Pastel Luxury Palette */
            --color-black: #000000;
            --color-white: #FFFFFF;
            --color-blush: #F4E4E6;
            --color-sage: #D4E4D8;
            --color-lavender: #E6E4F4;
            --color-cream: #F8F6F0;
            --color-rose: #E8D4D8;
            --color-accent: #C9A0A8;
            --color-text-primary: #1A1A1A;
            --color-text-secondary: #6A6A6A;

            /* Typography */
            --font-primary: 'Bodoni Moda', 'Didot', serif;
            --font-secondary: 'Montserrat', 'Helvetica Neue', sans-serif;

            /* Spacing - Airy Whitespace */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 5rem;
            --space-3xl: 8rem;

            /* Animation */
            --duration-fast: 150ms;
            --duration-base: 300ms;
            --duration-slow: 400ms;
            --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ===== BASE STYLES ===== */
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

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

        img {
            max-width: 100%;
            display: block;
            height: auto;
            filter: saturate(0.9) contrast(1.02);
            transition: filter var(--duration-base) var(--ease-elegant);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity var(--duration-base) var(--ease-elegant);
        }

        a:hover {
            opacity: 0.7;
        }

        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
            transition: all var(--duration-base) var(--ease-elegant);
        }

        .container {
            max-width: 1536px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 var(--space-2xl);
            }
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--color-white);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-md) var(--space-lg);
            max-width: 1536px;
            margin: 0 auto;
        }

        .nav-logo {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: var(--space-xs);
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background-color: var(--color-black);
            transition: all var(--duration-base) var(--ease-elegant);
        }

        .nav-icons {
            display: flex;
            gap: var(--space-md);
            align-items: center;
        }

        .nav-icon {
            position: relative;
            padding: var(--space-xs);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--color-accent);
            color: var(--color-white);
            font-size: 0.625rem;
            font-weight: 600;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--color-cream);
            z-index: 2000;
            transform: translateX(-100%);
            transition: transform var(--duration-slow) var(--ease-elegant);
        }

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

        .mobile-menu-content {
            padding: var(--space-xl) var(--space-lg);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-close {
            align-self: flex-end;
            font-size: 3rem;
            line-height: 1;
            color: var(--color-text-primary);
            margin-bottom: var(--space-xl);
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .mobile-menu-link {
            font-family: var(--font-primary);
            font-size: 2rem;
            letter-spacing: 0.05em;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr;
            margin-top: 72px;
            background-color: var(--color-cream);
            overflow: hidden;
        }

        @media (min-width: 992px) {
            .hero {
                grid-template-columns: 45fr 55fr;
            }
        }

        .hero-text-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: var(--space-xl) var(--space-lg);
            background-color: var(--color-cream);
            z-index: 10;
        }

        @media (min-width: 992px) {
            .hero-text-side {
                padding: var(--space-3xl);
            }
        }

        .hero-image-side {
            position: relative;
            height: 50vh;
            overflow: hidden;
        }

        @media (min-width: 992px) {
            .hero-image-side {
                height: 100%;
            }
        }

        .hero-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        .hero-content {
            text-align: left;
            max-width: 600px;
        }

        .hero-title {
            font-family: var(--font-primary);
            font-size: clamp(3.5rem, 6vw, 5.5rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-md);
            line-height: 1;
            color: var(--color-text-primary);
        }

        .hero-subtitle {
            font-size: 0.875rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            font-weight: 400;
            margin-bottom: var(--space-xl);
            color: var(--color-text-secondary);
            display: block;
        }

        .hero-cta {
            display: inline-block;
            padding: var(--space-md) var(--space-2xl);
            background-color: var(--color-black);
            color: var(--color-white);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 600;
            transition: all var(--duration-base) var(--ease-elegant);
            border: 1px solid var(--color-black);
        }

        .hero-cta:hover {
            background-color: transparent;
            color: var(--color-black);
            transform: translateY(-2px);
        }

        .hero-scroll-indicator {
            margin-top: var(--space-3xl);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            color: var(--color-text-secondary);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.6;
        }

        .hero-scroll-indicator svg {
            width: 20px;
            height: 20px;
            animation: bounce-y 2s infinite;
        }

        @keyframes bounce-y {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(5px);
            }
        }

        /* ===== SECTION TITLE ===== */
        .section-title {
            font-family: var(--font-primary);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        /* ===== FEATURED COLLECTION ===== */
        .featured {
            padding: var(--space-3xl) 0;
            background-color: var(--color-white);
        }

        .carousel {
            position: relative;
        }

        .carousel-track {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .carousel-track {
                grid-template-columns: repeat(4, 1fr);
                gap: var(--space-xl);
            }
        }

        .product-card {
            position: relative;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        .product-card:hover {
            transform: translateY(-8px);
        }

        .product-image {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            background-color: var(--color-cream);
            margin-bottom: var(--space-md);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--duration-slow) var(--ease-elegant);
        }

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

        .product-wishlist {
            position: absolute;
            top: var(--space-md);
            right: var(--space-md);
            width: 44px;
            height: 44px;
            background-color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--duration-base) var(--ease-elegant);
            z-index: 10;
        }

        .product-card:hover .product-wishlist {
            opacity: 1;
        }

        .product-quickview {
            position: absolute;
            bottom: var(--space-md);
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            padding: var(--space-sm) var(--space-lg);
            background-color: var(--color-white);
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            opacity: 0;
            transition: all var(--duration-base) var(--ease-elegant);
            white-space: nowrap;
        }

        .product-card:hover .product-quickview {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .product-info {
            text-align: center;
        }

        /* Luxury Elegant Slider for Product Cards */
        .product-slider {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
            background-color: var(--color-cream);
        }

        .product-slider-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.4s var(--ease-elegant);
        }

        .product-card:hover .product-slider-track {
            animation: luxury-slide 5s infinite alternate var(--ease-elegant);
        }

        .product-slide {
            width: 33.333%;
            height: 100%;
        }

        .product-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* This preserves aspect ratio and fixes distortion */
        }

        @keyframes luxury-slide {

            0%,
            25% {
                transform: translateX(0);
            }

            35%,
            65% {
                transform: translateX(-33.333%);
            }

            75%,
            100% {
                transform: translateX(-66.666%);
            }
        }

        /* Hints/Dots for multi-view */
        .view-indicators {
            position: absolute;
            bottom: var(--space-md);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover .view-indicators {
            opacity: 1;
        }

        .view-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-white);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        /* Progressive glow to hint at sliding */
        .product-card:hover .view-dot {
            animation: dot-step 5s infinite alternate var(--ease-elegant);
        }

        .view-dot:nth-child(2) {
            animation-delay: 1.66s;
        }

        .view-dot:nth-child(3) {
            animation-delay: 3.33s;
        }

        /* Progress Bar Affordance */
        .slider-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(0, 0, 0, 0.05);
            z-index: 15;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .product-card:hover .slider-progress-bar {
            transform: scaleX(1);
        }

        .progress-fill {
            height: 100%;
            background: var(--color-accent);
            width: 100%;
            transform-origin: left;
            transform: scaleX(0);
        }

        .product-card:hover .progress-fill {
            animation: progress-slide 5s infinite alternate var(--ease-elegant);
        }

        @keyframes progress-slide {

            0%,
            25% {
                transform: scaleX(0);
            }

            35%,
            65% {
                transform: scaleX(0.5);
            }

            75%,
            100% {
                transform: scaleX(1);
            }
        }

        @keyframes dot-step {

            0%,
            25% {
                opacity: 1;
                transform: scale(1.3);
                background: var(--color-accent);
            }

            35%,
            100% {
                opacity: 0.5;
                transform: scale(1);
                background: var(--color-white);
            }
        }

        .slider-hint-label {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
            background: rgba(255, 255, 255, 0.9);
            padding: 4px 10px;
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 20px;
            z-index: 5;
            transition: transform 0.3s ease, opacity 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .product-card:hover .slider-hint-label {
            transform: translateY(-5px);
            opacity: 0;
        }

        .product-name {
            font-family: var(--font-primary);
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-xs);
        }

        .product-price {
            font-size: 1rem;
            color: var(--color-text-secondary);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: var(--space-sm);
            margin-top: var(--space-xl);
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--color-text-secondary);
            opacity: 0.3;
            transition: all var(--duration-base) var(--ease-elegant);
        }

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

        /* ===== CATEGORIES ===== */
        .categories {
            padding: var(--space-3xl) 0;
            background-color: var(--color-cream);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
        }

        @media (min-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: var(--space-lg);
            }
        }

        .category-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            display: block;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--duration-slow) var(--ease-elegant);
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            padding: var(--space-lg);
        }

        .category-title {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: var(--color-white);
        }

        /* ===== NEW ARRIVALS ===== */
        .new-arrivals {
            padding: var(--space-3xl) 0;
            background-color: var(--color-white);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-2xl);
        }

        .section-link {
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: var(--space-xl);
            }
        }

        .product-badge {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
            padding: var(--space-xs) var(--space-md);
            background-color: var(--color-white);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            z-index: 10;
        }

        .product-badge.bestseller {
            background-color: var(--color-accent);
            color: var(--color-white);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            margin-top: var(--space-xs);
            font-size: 0.875rem;
        }

        .stars {
            color: var(--color-accent);
            letter-spacing: 2px;
        }

        .rating-count {
            color: var(--color-text-secondary);
            font-size: 0.75rem;
        }

        /* ===== LIMITED EDITION ===== */
        .limited-edition {
            min-height: 600px;
            background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-blush) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-3xl) var(--space-lg);
            text-align: center;
        }

        @media (min-width: 768px) {
            .limited-edition {
                min-height: 700px;
            }
        }

        .limited-content {
            max-width: 600px;
        }

        .limited-label {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-md);
        }

        .limited-title {
            font-family: var(--font-primary);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-md);
            line-height: 1.1;
        }

        .limited-description {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-lg);
        }

        .limited-price {
            font-family: var(--font-primary);
            font-size: 2rem;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-xl);
        }

        .limited-cta {
            display: inline-block;
            padding: var(--space-md) var(--space-xl);
            background-color: var(--color-black);
            color: var(--color-white);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        .limited-cta:hover {
            transform: scale(0.98);
            opacity: 1;
        }

        /* ===== BESTSELLERS ===== */
        .bestsellers {
            padding: var(--space-3xl) 0;
            background-color: var(--color-cream);
        }

        /* ===== SHOP BY STYLE ===== */
        .shop-by-style {
            padding: var(--space-3xl) 0;
            background-color: var(--color-white);
        }

        .style-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
        }

        @media (min-width: 768px) {
            .style-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-lg);
            }
        }

        .style-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            display: block;
        }

        .style-card-large {
            grid-row: span 2;
        }

        @media (max-width: 767px) {
            .style-card-large {
                grid-row: span 1;
            }
        }

        .style-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--duration-slow) var(--ease-elegant);
        }

        .style-card:hover img {
            transform: scale(1.08);
        }

        .style-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: var(--space-lg);
            transition: background var(--duration-base) var(--ease-elegant);
        }

        .style-card:hover .style-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
        }

        .style-title {
            font-family: var(--font-primary);
            font-size: 1.75rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: var(--color-white);
            margin-bottom: var(--space-xs);
        }

        .style-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.05em;
        }

        /* ===== EDITORIAL SECTION ===== */
        .editorial {
            display: grid;
            grid-template-columns: 1fr;
            min-height: 600px;
        }

        @media (min-width: 768px) {
            .editorial {
                grid-template-columns: 1fr 1fr;
                min-height: 700px;
            }
        }

        .editorial-image {
            position: relative;
            overflow: hidden;
        }

        .editorial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .editorial-content {
            background-color: var(--color-sage);
            padding: var(--space-2xl) var(--space-lg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .editorial-content {
                padding: var(--space-3xl);
            }
        }

        .editorial-title {
            font-family: var(--font-primary);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            line-height: 1.2;
        }

        .editorial-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-lg);
        }

        .editorial-link {
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 4px;
            align-self: flex-start;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            padding: var(--space-3xl) 0;
            background-color: var(--color-white);
            text-align: center;
        }

        .newsletter-title {
            font-family: var(--font-primary);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-md);
        }

        .newsletter-text {
            font-size: 1rem;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-xl);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            max-width: 500px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .newsletter-form {
                flex-direction: row;
            }
        }

        .newsletter-input {
            flex: 1;
            padding: var(--space-md) var(--space-lg);
            border: 1px solid var(--color-text-secondary);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color var(--duration-base) var(--ease-elegant);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--color-black);
        }

        .newsletter-button {
            padding: var(--space-md) var(--space-xl);
            background-color: var(--color-black);
            color: var(--color-white);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        .newsletter-button:hover {
            transform: scale(0.98);
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: var(--color-black);
            color: var(--color-white);
            padding: var(--space-3xl) 0 var(--space-xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-xl);
            margin-bottom: var(--space-2xl);
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-title {
            font-family: var(--font-primary);
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-md);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-links a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--duration-base) var(--ease-elegant);
        }

        .footer-links a:hover {
            color: var(--color-white);
            opacity: 1;
        }

        .footer-social {
            display: flex;
            gap: var(--space-md);
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all var(--duration-base) var(--ease-elegant);
        }

        .footer-social a:hover {
            border-color: var(--color-white);
            background-color: rgba(255, 255, 255, 0.1);
            opacity: 1;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            align-items: center;
            padding-top: var(--space-xl);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-payment {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }


        /* ===== SPLIT HERO SECTION ===== */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr;
            min-height: 100vh;
            margin-top: 72px;
        }

        @media (min-width: 768px) {
            .hero-split {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-split-image {
            position: relative;
            overflow: hidden;
            min-height: 50vh;
        }

        @media (min-width: 768px) {
            .hero-split-image {
                min-height: 100vh;
            }
        }

        .hero-split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-split-content {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-2xl) var(--space-lg);
            background-color: var(--color-cream);
        }

        @media (min-width: 768px) {
            .hero-split-content {
                padding: var(--space-3xl);
            }
        }

        .hero-split-inner {
            max-width: 500px;
        }

        .hero-label {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--color-accent);
            margin-bottom: var(--space-md);
        }

        .hero-description {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-xl);
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 0.875rem;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background-color: var(--color-accent);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        @media (min-width: 768px) {
            .hero-actions {
                flex-direction: row;
            }
        }

        .hero-cta-primary {
            display: inline-block;
            padding: var(--space-md) var(--space-xl);
            background-color: var(--color-black);
            color: var(--color-white);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        .hero-cta-primary:hover {
            transform: scale(0.98);
            opacity: 1;
        }

        .hero-cta-secondary {
            display: inline-block;
            padding: var(--space-md) var(--space-xl);
            background-color: transparent;
            color: var(--color-black);
            border: 1px solid var(--color-black);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
            transition: all var(--duration-base) var(--ease-elegant);
        }

        .hero-cta-secondary:hover {
            background-color: var(--color-black);
            color: var(--color-white);
            opacity: 1;
        }


        /* ===== ASYMMETRIC HERO SECTION ===== */
        .hero-asymmetric {
            display: grid;
            grid-template-columns: 1fr;
            min-height: 100vh;
            margin-top: 72px;
            background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
        }

        @media (min-width: 768px) {
            .hero-asymmetric {
                grid-template-columns: 45% 55%;
            }
        }

        .hero-asymmetric-content {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-2xl) var(--space-lg);
        }

        @media (min-width: 768px) {
            .hero-asymmetric-content {
                padding: var(--space-3xl);
            }
        }

        .hero-asymmetric-text {
            max-width: 500px;
        }

        .hero-asymmetric-products {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            padding: var(--space-lg);
        }

        @media (min-width: 768px) {
            .hero-asymmetric-products {
                grid-template-columns: 1fr 1fr;
                padding: var(--space-2xl);
            }
        }

        .hero-product-large {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        @media (min-width: 768px) {
            .hero-product-large {
                grid-row: span 2;
            }
        }

        .hero-product-large:hover {
            transform: translateY(-8px);
        }

        .hero-product-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        .hero-product-grid {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: var(--space-lg);
        }

        .hero-product-small {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: transform var(--duration-base) var(--ease-elegant);
        }

        .hero-product-small:hover {
            transform: translateY(-8px);
        }

        .hero-product-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 250px;
        }

        .hero-product-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: var(--space-lg);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: var(--color-white);
        }

        .hero-product-info h3 {
            font-family: var(--font-primary);
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-xs);
        }

        .hero-product-info p {
            font-size: 1rem;
            opacity: 0.9;
        }


        /* ===== HORIZONTAL SCROLL LAYOUT ===== */
        .horizontal-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        .horizontal-scroll-track {
            display: flex;
            gap: var(--space-lg);
            padding-bottom: var(--space-md);
        }

        .horizontal-scroll-track .product-card {
            flex: 0 0 280px;
        }

        @media (min-width: 768px) {
            .horizontal-scroll-track .product-card {
                flex: 0 0 320px;
            }
        }

        /* ===== THREE COLUMN GRID ===== */
        .product-grid-three {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .product-grid-three {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-xl);
            }
        }

        /* ===== LARGE CARD LAYOUT ===== */
        .category-grid-large {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-xl);
        }

        @media (min-width: 768px) {
            .category-grid-large {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .category-card-large {
            aspect-ratio: 16/9;
        }

        .category-card-large .category-title {
            font-size: 3rem;
        }

        /* ===== FEATURED ASYMMETRIC GRID ===== */
        .featured-asymmetric {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .featured-asymmetric {
                grid-template-columns: 2fr 1fr 1fr;
                gap: var(--space-xl);
            }

            .featured-asymmetric .product-card:first-child {
                grid-row: span 2;
            }
        }

        /* ===== FULL WIDTH SHOWCASE ===== */
        .showcase-fullwidth {
            display: grid;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .showcase-fullwidth {
                grid-template-columns: 2fr 1fr;
                gap: var(--space-xl);
            }
        }

        .showcase-main {
            position: relative;
            min-height: 600px;
        }

        .showcase-sidebar {
            display: grid;
            grid-template-rows: repeat(2, 1fr);
            gap: var(--space-lg);
        }


        /* ===== CATEGORY DESCRIPTION ===== */
        .category-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: var(--space-xs);
            letter-spacing: 0.05em;
        }

        .category-count {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: var(--space-xs);
        }

        /* ===== ASYMMETRIC CATEGORY GRID ===== */
        .category-grid-asymmetric {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .category-grid-asymmetric {
                grid-template-columns: 2fr 1fr 1fr;
                gap: var(--space-xl);
            }

            .category-card-featured {
                grid-row: span 2;
            }
        }

        .category-card-featured {
            min-height: 500px;
        }

        @media (max-width: 767px) {
            .category-card-featured {
                min-height: 300px;
            }
        }

        /* ===== FEATURED ASYMMETRIC PRODUCT IMAGES ===== */
        .featured-asymmetric .product-card:first-child .product-image {
            aspect-ratio: 3/5;
            min-height: 600px;
        }

        @media (max-width: 767px) {
            .featured-asymmetric .product-card:first-child .product-image {
                min-height: 400px;
            }
        }


        /* ===== CART PAGE ===== */
        .cart-page {
            padding: var(--space-3xl) 0;
            margin-top: 72px;
            background-color: var(--color-cream);
            min-height: 100vh;
        }

        .page-title {
            font-family: var(--font-primary);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .cart-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-xl);
        }

        @media (min-width: 1024px) {
            .cart-layout {
                grid-template-columns: 1.5fr 1fr;
            }
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .cart-item {
            background-color: var(--color-white);
            padding: var(--space-lg);
            border-radius: 8px;
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: var(--space-lg);
            transition: box-shadow var(--duration-base) var(--ease-elegant);
        }

        @media (min-width: 768px) {
            .cart-item {
                grid-template-columns: 150px 1fr;
                padding: var(--space-xl);
            }
        }

        .cart-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .cart-item-image {
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 4px;
        }

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

        .cart-item-details {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .cart-item-name {
            font-family: var(--font-primary);
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: 0.05em;
        }

        .cart-item-options {
            font-size: 0.875rem;
            color: var(--color-text-secondary);
        }

        .cart-item-price {
            font-size: 1.125rem;
            font-weight: 500;
            margin-top: var(--space-xs);
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            margin-top: auto;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            border: 1px solid var(--color-text-secondary);
            border-radius: 4px;
            padding: var(--space-xs);
        }

        .quantity-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--color-text-primary);
            transition: background-color var(--duration-base) var(--ease-elegant);
        }

        .quantity-btn:hover {
            background-color: var(--color-cream);
        }

        .quantity-input {
            width: 50px;
            text-align: center;
            border: none;
            font-family: inherit;
            font-size: 1rem;
            appearance: none;
            -moz-appearance: textfield;
        }

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

        .quantity-input:focus {
            outline: none;
        }

        .cart-item-remove {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.875rem;
            color: var(--color-text-secondary);
            transition: color var(--duration-base) var(--ease-elegant);
        }

        .cart-item-remove:hover {
            color: var(--color-accent);
        }

        .cart-summary {
            background-color: var(--color-white);
            padding: var(--space-xl);
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .cart-summary-title {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-lg);
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: var(--space-md);
            font-size: 1rem;
        }

        .cart-summary-row span:first-child {
            color: var(--color-text-secondary);
        }

        .free-shipping {
            color: #88C9A0;
            font-weight: 500;
        }

        .cart-summary-total {
            display: flex;
            justify-content: space-between;
            padding-top: var(--space-lg);
            margin-top: var(--space-lg);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: var(--space-xl);
        }

        .cart-checkout-btn {
            display: block;
            width: 100%;
            padding: var(--space-md) var(--space-xl);
            background-color: var(--color-black);
            color: var(--color-white);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
            transition: transform var(--duration-base) var(--ease-elegant);
            margin-bottom: var(--space-md);
        }

        .cart-checkout-btn:hover {
            transform: scale(0.98);
            opacity: 1;
        }

        .cart-continue-shopping {
            display: block;
            text-align: center;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-xl);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .promo-code {
            display: flex;
            gap: var(--space-sm);
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .promo-input {
            flex: 1;
            padding: var(--space-md);
            border: 1px solid var(--color-text-secondary);
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.875rem;
        }

        .promo-input:focus {
            outline: none;
            border-color: var(--color-black);
        }

        .promo-btn {
            padding: var(--space-md) var(--space-lg);
            background-color: transparent;
            border: 1px solid var(--color-black);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            transition: all var(--duration-base) var(--ease-elegant);
        }

        .promo-btn:hover {
            background-color: var(--color-black);
            color: var(--color-white);
        }


        /* ===== SHOP PAGE ===== */
        .shop-page {
            padding: var(--space-3xl) 0;
            margin-top: 72px;
            background-color: var(--color-white);
            min-height: 100vh;
        }

        .shop-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .shop-subtitle {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            margin-top: var(--space-md);
        }

        .shop-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-xl);
        }

        @media (min-width: 1024px) {
            .shop-layout {
                grid-template-columns: 280px 1fr;
            }
        }

        /* Filters */
        .shop-filters {
            background-color: var(--color-cream);
            padding: var(--space-xl);
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        @media (max-width: 1023px) {
            .shop-filters {
                display: none;
            }
