
        :root {
            --luxury-beige: #f5f1eb;
            --cream: #faf8f4;
            --warm-taupe: #d8c9b8;
            --light-brown: #b8a58f;
            --soft-charcoal: #3a3a3a;
            --gold-accent: #bf8c4c;
            --off-white: #fefefe;
        }

        body {
            background-color: var(--cream);
            color: var(--soft-charcoal);
            font-family: 'Georgia', serif;
            letter-spacing: 0.02em;
            line-height: 1.7;
        }


        /* Luxury Typography */
        .luxury-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: var(--soft-charcoal);
        }

        .luxury-subheading {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 1.25rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold-accent);
        }

        .editorial-text {
            font-family: 'Georgia', serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

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

        /* First Row: Large Image + Text Panel */
        .first-row {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            min-height: 90vh;
            align-items: center;
            margin: 80px 0 120px;
        }

        .feature-image {
            height: 85vh;
            position: relative;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

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

        .text-panel {
            padding: 60px 40px;
            background: var(--luxury-beige);
            position: relative;
            height: fit-content;
        }

        .text-panel::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 20px;
            right: 20px;
            bottom: 40px;
            border: 1px solid var(--warm-taupe);
            pointer-events: none;
        }

        /* OPTIMIZED COLLAGE GRID - Equal Heights */
        .collage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px); /* Fixed equal heights */
            gap: 25px;
            margin: 120px 0;
        }

        .collage-item {
            position: relative;
            overflow: hidden;
            background: var(--off-white);
        }

        /* Grid Positioning */
        .collage-item:nth-child(1) {
            grid-column: 1 / 3; /* Wide - 2 columns */
        }

        .collage-item:nth-child(2) {
            grid-column: 3 / 4;
        }

        .collage-item:nth-child(3) {
            grid-column: 4 / 5;
        }

        .collage-item:nth-child(4) {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .collage-item:nth-child(5) {
            grid-column: 2 / 4; /* Wide - 2 columns */
            grid-row: 2 / 3;
        }

        .collage-item:nth-child(6) {
            grid-column: 4 / 5;
            grid-row: 2 / 3;
        }

        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

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

        .text-block {
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--luxury-beige);
            border: 1px solid var(--warm-taupe);
        }

        /* Featured Kitchen Block */
        .featured-kitchen {
            grid-column: 1 / -1;
            height: 500px;
            margin: 80px 0 120px;
            position: relative;
        }

        .featured-kitchen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-overlay {
            position: absolute;
            bottom: 40px;
            left: 40px;
            color: white;
            max-width: 400px;
        }

        /* PRODUCT SHOWCASE - Horizontal Sliding Carousel */
        .product-showcase {
            margin: 120px 0;
            overflow: hidden;
            position: relative;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20%;
        }

        /* Carousel Container */
        .product-carousel-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin-bottom: 80px;
        }

        .product-carousel {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        /* Product Cards for Carousel */
        .product-card-carousel {
            flex: 0 0 auto;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
            margin-right: 30px;
            min-height: 400px;
        }

        /* For Desktop: Show 3 cards at once */
        @media (min-width: 992px) {
            .product-card-carousel {
                width: calc((100% - 60px) / 3); /* 3 cards with gaps */
            }
        }

        /* For Tablet: Show 2 cards at once */
        @media (max-width: 991px) and (min-width: 768px) {
            .product-card-carousel {
                width: calc((100% - 30px) / 2); /* 2 cards with gaps */
            }
        }

        /* For Mobile: Show 1 card at once */
        @media (max-width: 767px) {
            .product-card-carousel {
                width: 100%; /* 1 card full width */
                margin-right: 0;
            }
        }

        .product-card-carousel:last-child {
            margin-right: 0;
        }

        .product-image {
            height: 300px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        .product-info {
            padding: 25px;
            text-align: center;
            border-top: 1px solid var(--luxury-beige);
        }

        /* Navigation Arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
        }

        .carousel-arrow {
            pointer-events: auto;
            width: 50px;
            height: 50px;
            border: 1px solid var(--warm-taupe);
            background: var(--off-white);
            color: var(--light-brown);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .carousel-arrow:hover {
            opacity: 1;
            background: var(--gold-accent);
            color: white;
            border-color: var(--gold-accent);
        }

        .carousel-arrow.left {
            margin-left: 20px;
        }

        .carousel-arrow.right {
            margin-right: 20px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
        }

        .page-indicator {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
        }

        .indicator-dots {
            display: flex;
            gap: 10px;
        }

        .indicator-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--warm-taupe);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .indicator-dot.active {
            background: var(--gold-accent);
            transform: scale(1.2);
        }

        .page-numbers {
            display: flex;
            gap: 5px;
            margin: 0 10px;
        }

        .page-number {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .page-number.active {
            background: var(--gold-accent);
            color: white;
        }

        .page-number:hover:not(.active) {
            color: var(--gold-accent);
        }

        /* Hide arrows on mobile when not needed */
        @media (max-width: 767px) {
            .carousel-arrow {
                display: none;
            }
        }

        /* Disabled arrow state */
        .carousel-arrow.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        .carousel-arrow.disabled:hover {
            background: var(--off-white);
            color: var(--light-brown);
            border-color: var(--warm-taupe);
        }

        /* Video Row Styles */
        .video-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 120px 0;
        }

        .video-block {
            height: 600px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .video-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .kitchen-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease, filter 0.5s ease;
        }

        .video-container:hover .kitchen-video {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .video-container:hover .video-overlay {
            opacity: 0.9;
        }

        .play-icon {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: rgba(191, 140, 76, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .video-container:hover .play-icon {
            transform: scale(1.1);
            opacity: 1;
            background: var(--gold-accent);
        }

        .video-info {
            max-width: 80%;
        }

        /* Fullscreen Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
            animation: fadeIn 0.3s ease;
        }

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

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            height: 80%;
            background: black;
            border-radius: 12px;
            overflow: hidden;
        }

        .modal-content video {
            width: 100%;
            height: calc(100% - 60px);
            object-fit: contain;
            background: black;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            background: var(--gold-accent);
            transform: scale(1.1);
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .control-btn {
            background: transparent;
            border: 1px solid var(--gold-accent);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: var(--gold-accent);
            transform: scale(1.1);
        }

        .time-display {
            color: white;
            font-family: monospace;
            font-size: 14px;
            margin-left: auto;
        }

        /* Responsive Video Styles */
        @media (max-width: 1200px) {
            .video-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .video-block {
                height: 500px;
            }
            
            .video-overlay {
                padding: 30px;
            }
            
            .play-icon {
                top: 30px;
                right: 30px;
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 768px) {
            .video-block {
                height: 400px;
            }
            
            .video-overlay {
                padding: 20px;
            }
            
            .play-icon {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .video-info h3 {
                font-size: 1.3rem !important;
            }
            
            .modal-content {
                width: 95%;
                height: 70%;
            }
        }

        @media (max-width: 576px) {
            .video-block {
                height: 300px;
            }
            
            .video-overlay {
                padding: 15px;
            }
            
            .video-info h3 {
                font-size: 1.1rem !important;
            }
            
            .modal-content {
                height: 50%;
            }
        }

        /* Loading state for videos */
        .video-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }      
               
        /* Responsive */
        @media (max-width: 1200px) {
            .first-row {
                grid-template-columns: 1fr;
                gap: 40px;
                min-height: auto;
            }
            
            .feature-image {
                height: 60vh;
            }
            
            .collage-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 250px);
            }
            
            .collage-item:nth-child(1),
            .collage-item:nth-child(5) {
                grid-column: 1 / 3;
            }
            
            .collage-item:nth-child(2),
            .collage-item:nth-child(3),
            .collage-item:nth-child(4),
            .collage-item:nth-child(6) {
                grid-column: span 1;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .lifestyle-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .editorial-container {
                padding: 0 20px;
            }
            
            .collage-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 250px);
            }
            
            .collage-item:nth-child(n) {
                grid-column: 1 / 2;
                grid-row: auto;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-kitchen {
                height: 350px;
            }
            
            .lifestyle-block {
                height: 400px;
            }
            
            .text-panel {
                padding: 40px 20px;
            }
            
            .catalog-nav {
                flex-wrap: wrap;
                gap: 20px;
            }
        }

        /* Loading Animation */
        .image-loading {
            background: linear-gradient(90deg, var(--luxury-beige) 25%, var(--cream) 50%, var(--luxury-beige) 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
