        /* ============================================
           LUXURY DESERT DESIGN SYSTEM v2.1
           Last Updated: 2026-02-06 23:45
           - NO white backgrounds
           - Transparent/gradient sections
           - Cinematic hero overlays
           - Desert-inspired color harmony
           - Horizontal gallery with edge fades
           FORCE REFRESH: Clear cache if not visible
           ============================================ */
        
        /* Critical Override - Force Visibility */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Premium Card Hover Effects */
        .tour-card {
            transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
        }
        
        .tour-card:hover {
            transform: translateY(-6px) scale(1.01) !important;
            box-shadow: 0 20px 60px rgba(244, 162, 97, 0.25) !important;
        }
        
        .tour-card:hover .tour-image {
            transform: scale(1.03) !important;   /* ✅ REDUCED - MORE SUBTLE */
        }
        
        .tour-image {
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }
        
        /* Why Cards Hover - Refined Luxury */
        .why-card:hover {
            transform: translateY(-8px) scale(1.01) !important;
            background: rgba(240, 228, 214, 0.5) !important;
            box-shadow: 
                0 20px 56px rgba(139, 107, 74, 0.2) !important,
                0 10px 24px rgba(26, 22, 18, 0.12) !important,
                0 0 0 1px rgba(212, 175, 55, 0.3) !important,
                inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
        }
        
        /* Info Cards Hover - Refined */
        .info-card:hover {
            transform: translateY(-6px) scale(1.01) !important;
            background: rgba(240, 228, 214, 0.45) !important;
            box-shadow: 
                0 16px 48px rgba(139, 107, 74, 0.16) !important,
                0 8px 20px rgba(26, 22, 18, 0.1) !important,
                0 0 0 1px rgba(196, 149, 111, 0.3) !important,
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        }
        
        /* Contact Items Hover - Refined */
        .contact-item:hover {
            transform: translateY(-6px) scale(1.005) !important;
            background: rgba(240, 228, 214, 0.5) !important;
            box-shadow: 
                0 18px 48px rgba(139, 107, 74, 0.18) !important,
                0 10px 24px rgba(26, 22, 18, 0.1) !important,
                0 0 0 1px rgba(212, 175, 55, 0.35) !important,
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        }
        
        /* Parallax Elements */
        .parallax-slow {
            will-change: transform;
        }
        
        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .tour-card:hover,
            .why-card:hover,
            .info-card:hover,
            .contact-item:hover {
                transform: none !important;
            }
            
            .parallax-slow {
                transform: none !important;
            }
            
            .stagger-item,
            .scroll-reveal {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
            
            .luxury-slider-image {
                animation: none !important;
            }
        }
        
        /* ====================================================
           CINEMATIC PRELOADER
           ==================================================== */
        .preloader {
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, #1A1612 0%, #2B2217 50%, #1A1612 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: var(--z-preloader);
            opacity: 1;
            visibility: visible;
            transition: opacity 0.8s ease, visibility 0.8s;
        }
        
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader-content {
            text-align: center;
            color: var(--color-primary);
        }
        
        .preloader-logo {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            animation: fadeSlideUp 0.8s ease;
        }
        
        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(196, 149, 111, 0.2);
            border-top-color: var(--color-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ====================================================
           LUXURY IMAGE SLIDER - Cinematic Editorial
           ==================================================== */
        .luxury-slider {
            position: relative;
            width: 100%;
            height: 70vh;  /* Reduced from 75vh - less dark space */
            min-height: 550px;
            max-height: 700px;  /* Tighter max for organization */
            overflow: hidden;
            background: linear-gradient(135deg, #1A1612 0%, #2B2217 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Subtle inner frame glow for organized feel */
        .luxury-slider::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 6;
            pointer-events: none;
            box-shadow: 
                inset 0 60px 80px -40px rgba(26, 22, 18, 0.8),
                inset 0 -60px 80px -40px rgba(26, 22, 18, 0.8),
                inset 0 0 0 1px rgba(196, 149, 111, 0.08);
        }
        
        .luxury-slider-track {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .luxury-slider-item {
            position: absolute;
            inset: 0;
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Ultra-smooth, cinematic fade transition */
            transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity;
        }
        
        .luxury-slider-item.active {
            opacity: 1;
            z-index: 2;
        }
        
        /* Elegant cross-fade: old slide fades out as new fades in */
        .luxury-slider-item.fading-out {
            opacity: 0;
            z-index: 1;
            transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .luxury-slider-image {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            transform-origin: center;
        }
        
        /* Ken Burns effect - extremely subtle, luxury feel */
        @media (prefers-reduced-motion: no-preference) {
            .luxury-slider-item.active .luxury-slider-image {
                animation: kenBurnsLuxury 12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }
        }
        
        @keyframes kenBurnsLuxury {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.05); /* Subtle 5% zoom - very elegant */
            }
        }
        
        .luxury-slider-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
        }
        
        /* Multi-layer cinematic overlay - warm desert tones */
        .luxury-slider-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            /* Warm atmospheric gradient - darker at edges, lighter in text zone */
            background: linear-gradient(
                to bottom,
                rgba(62, 46, 30, 0.55) 0%,        /* Dusk brown top */
                rgba(139, 115, 85, 0.15) 25%,     /* Warm sand glow */
                rgba(26, 22, 18, 0.2) 45%,        /* Transparent center */
                rgba(62, 46, 30, 0.35) 70%,       /* Text zone warmth */
                rgba(26, 22, 18, 0.8) 100%        /* Deep charcoal bottom */
            );
        }
        
        /* Subtle vignette for edge darkening */
        .luxury-slider-overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(
                ellipse at center,
                rgba(26, 22, 18, 0) 0%,
                rgba(62, 46, 30, 0.15) 60%,
                rgba(26, 22, 18, 0.4) 100%
            );
        }
        
        .luxury-slider-content {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            padding: 0 var(--spacing-md) var(--spacing-2xl);
            text-align: center;
            color: white;
            max-width: 800px;
            width: 100%;
        }
        
        .luxury-slider-title {
            font-family: var(--font-heading);
            font-size: clamp(2.25rem, 5vw, 3.5rem);  /* Larger, more cinematic */
            font-weight: 300;
            margin-bottom: 1.25rem;  /* More space for separator */
            padding-bottom: 1rem;
            letter-spacing: 0.02em;  /* Increased for luxury hierarchy */
            line-height: 1.15;
            color: rgba(255, 255, 255, 0.98);
            position: relative;  /* For separator */
            /* Enhanced cinematic text shadow */
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(40px);
            transition: 
                opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        /* Editorial separator line */
        .luxury-slider-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(212, 175, 55, 0.4) 20%,
                rgba(212, 175, 55, 0.8) 50%,
                rgba(212, 175, 55, 0.4) 80%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.8s ease 0.8s;
        }
        
        .luxury-slider-item.active .luxury-slider-title::after {
            opacity: 1;
        }
        
        .luxury-slider-item.active .luxury-slider-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }
        
        .luxury-slider-caption {
            font-size: 1.0625rem;  /* Slightly larger for hierarchy */
            font-weight: 400;
            letter-spacing: 0.015em;
            line-height: 1.6;
            color: rgba(240, 228, 214, 0.88);
            max-width: 600px;
            margin: 0 auto;
            /* Refined text shadow for clarity */
            text-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.5),
                0 3px 8px rgba(0, 0, 0, 0.35);
            opacity: 0;
            transform: translateY(30px);
            transition: 
                opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .luxury-slider-item.active .luxury-slider-caption {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }
        
        .luxury-slider-nav {
            position: absolute;
            bottom: 2.5rem;  /* More breathing room from edge */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;  /* Tighter, more refined */
            z-index: 5;
            padding: 0.5rem 1rem;
            background: rgba(26, 22, 18, 0.25);  /* Subtle container */
            backdrop-filter: blur(8px);
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .luxury-slider-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            border: none;
            cursor: pointer;
            /* Slow, elegant transition */
            transition: 
                all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .luxury-slider-dot.active {
            width: 28px;  /* Slightly smaller */
            border-radius: 3px;
            background: rgba(212, 175, 55, 0.9);  /* Warm gold instead of white */
            box-shadow: 
                0 2px 8px rgba(212, 175, 55, 0.3),
                0 0 20px rgba(212, 175, 55, 0.2);
        }
        
        .luxury-slider-dot:hover {
            background: rgba(255, 255, 255, 0.65);
            transform: scale(1.2);
        }
        
        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(240, 228, 214, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: 5;
            opacity: 0;
            pointer-events: none;
        }
        
        .luxury-slider:hover .slider-arrow {
            opacity: 1;
            pointer-events: auto;
        }
        
        .slider-arrow:hover {
            background: rgba(240, 228, 214, 0.3);
            border-color: rgba(212, 175, 55, 0.6);
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 8px 24px rgba(139, 107, 74, 0.3);
        }
        
        .slider-arrow-left {
            left: 2rem;
        }
        
        .slider-arrow-right {
            right: 2rem;
        }
        
        /* Pause slider on hover */
        .luxury-slider:hover .luxury-slider-image {
            animation-play-state: paused;
        }
        
        @media (max-width: 768px) {
            .luxury-slider {
                height: 60vh;
                min-height: 450px;
                max-height: 550px;  /* Tighter for mobile organization */
            }
            
            .luxury-slider-content {
                padding: 0 var(--spacing-sm) var(--spacing-lg);
            }
            
            .luxury-slider-title {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
            }
            
            .luxury-slider-caption {
                font-size: 0.9375rem;
            }
            
            .luxury-slider-nav {
                bottom: 1.5rem;
                padding: 0.4rem 0.8rem;
            }
            
            .slider-arrow {
                width: 48px;
                height: 48px;
                opacity: 0.8;
                pointer-events: auto;
            }
            
            .slider-arrow-left {
                left: 1rem;
            }
            
            .slider-arrow-right {
                right: 1rem;
            }
        }
        
        /* ====================================================
           FLOATING WHATSAPP FAB
           ==================================================== */
        .wapp-fab {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: grid;
            place-items: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(14, 13, 12, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 
                0 12px 28px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(196, 149, 111, 0.2);
            z-index: 9999;
            transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
                        background 0.3s ease,
                        box-shadow 0.3s ease;
            text-decoration: none;
        }
        
        .wapp-fab:hover {
            transform: translateY(-4px) scale(1.05);
            background: rgba(14, 13, 12, 0.95);
            box-shadow: 
                0 16px 36px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(196, 149, 111, 0.4);
        }
        
        .wapp-fab__icon {
            display: inline-grid;
            place-items: center;
            animation: wapp-pulse 2s ease-in-out infinite;
        }
        
        @keyframes wapp-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        @media (max-width: 768px) {
            .wapp-fab {
                right: 16px;
                bottom: 90px;
                width: 56px;
                height: 56px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .wapp-fab {
                transition: none;
            }
            .wapp-fab__icon {
                animation: none;
            }
        }
        
        /* ====================================================
           TESTIMONIALS / REVIEWS
           ==================================================== */
        .reviews {
            padding: 4rem 0;
            background: linear-gradient(180deg, 
                rgba(240, 228, 214, 0.3) 0%, 
                rgba(232, 214, 193, 0.2) 100%);
        }
        
        .reviews .section-title {
            margin-bottom: 0.75rem;
        }
        
        .reviews .section-intro {
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--color-text-secondary);
            font-size: 1.0625rem;
        }
        
        .reviews__list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .review {
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(196, 149, 111, 0.15);
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            margin: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        
        .review:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(139, 107, 74, 0.15);
            border-color: rgba(196, 149, 111, 0.25);
        }
        
        .review__quote {
            display: inline-grid;
            place-items: center;
            margin-bottom: 1rem;
            opacity: 0.7;
        }
        
        .review blockquote {
            margin: 0 0 1rem 0;
            font-style: italic;
            font-size: 1.0625rem;
            line-height: 1.6;
            color: var(--color-text-primary);
        }
        
        .review figcaption {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            font-style: normal;
        }
        
        @media (max-width: 768px) {
            .reviews {
                padding: 3rem 0;
            }
            
            .reviews__list {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .review {
                padding: 1.5rem 1.25rem;
            }
        }
        
        /* ====================================================
           ENHANCED FAQ WITH CUSTOM SVG CHEVRONS
           ==================================================== */
        .faq-item {
            border-bottom: 1px solid rgba(196, 149, 111, 0.15);
            padding: 1rem 0;
            transition: background 0.3s ease;
        }
        
        .faq-item:hover {
            background: rgba(245, 235, 220, 0.3);
        }
        
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            font-size: 1.0625rem;
            color: var(--color-text-primary);
            padding: 0.5rem;
            transition: color 0.3s ease;
            user-select: none;
        }
        
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        .faq-item summary:hover {
            color: var(--color-primary);
        }
        
        .faq__icon {
            display: inline-grid;
            place-items: center;
            transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .faq-item[open] .faq__icon {
            transform: rotate(180deg);
        }
        
        .faq-item p {
            margin: 0.75rem 0 0 2rem;
            padding: 0 0.5rem 0.5rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* ====================================================
           STICKY MOBILE CTA BAR
           ==================================================== */
        .sticky-cta {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            padding: 0.75rem 1rem;
            background: linear-gradient(180deg, 
                rgba(14, 13, 12, 0) 0%, 
                rgba(14, 13, 12, 0.85) 15%,
                rgba(14, 13, 12, 0.95) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 998;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
        }
        
        .sticky-cta .btn {
            flex: 1;
            max-width: 180px;
            padding: 0.875rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .sticky-cta .btn--primary {
            background: linear-gradient(135deg, #c4956f 0%, #a77448 100%);
            color: #fff;
            border: none;
            box-shadow: 0 4px 12px rgba(196, 149, 111, 0.3);
        }
        
        .sticky-cta .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(196, 149, 111, 0.4);
        }
        
        .sticky-cta .btn--ghost {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(240, 228, 214, 0.95);
            border: 1px solid rgba(196, 149, 111, 0.3);
        }
        
        .sticky-cta .btn--ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(196, 149, 111, 0.5);
            transform: translateY(-2px);
        }
        
        @media (min-width: 900px) {
            .sticky-cta {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .sticky-cta {
                padding: 0.65rem 0.75rem;
                gap: 0.5rem;
            }
            
            .sticky-cta .btn {
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
            }
        }
        
        /* ====================================================
           SCROLL REVEAL UTILITIES
           ==================================================== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), 
                        transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .reveal.is-visible {
            opacity: 1;
            transform: none;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }
        
        /* ====================================================
           AUTOMATED IMAGE SIZING UTILITIES
           ==================================================== */
        
        /* Generic media containers */
        .media, .slide-media, .gallery__item {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: transparent;
        }
        
        /* Base image rules - fill container */
        .media img, 
        .slide-media img, 
        .gallery__item img, 
        .card__media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        /* Portrait-aware adjustments (applied by JS) */
        .is-portrait > img {
            object-fit: contain;
            background: transparent;
        }
        
        .is-landscape > img {
            object-fit: cover;
        }
        
        .is-square > img {
            object-fit: cover;
        }
        
        /* Aspect-ratio utilities for layout stability */
        .media.ar-16x9, .slide-media.ar-16x9 { aspect-ratio: 16/9; }
        .media.ar-4x3, .slide-media.ar-4x3   { aspect-ratio: 4/3; }
        .media.ar-3x2, .slide-media.ar-3x2   { aspect-ratio: 3/2; }
        .media.ar-1x1, .slide-media.ar-1x1   { aspect-ratio: 1/1; }
        
        /* Slider specific: cinematic height with rounded frame */
        .gallery-slider.lux .slide {
            height: clamp(320px, 36vw, 480px);
            border-radius: 16px;
            overflow: hidden;
        }
        
        /* Ensure no black backgrounds forcing borders */
        .gallery-slider.lux, 
        .gallery-slider.lux .slides, 
        .gallery-slider.lux .slide,
        .gallery-slider.lux .slide-media {
            background: transparent !important;
        }
        
        /* Gallery masonry images keep proportions */
        .gallery__item img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        /* Card media consistency */
        .card__media {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 16px;
        }
        
        .card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Mobile slider adjustments */
        @media (max-width: 600px) {
            .gallery-slider.lux .slide {
                height: clamp(200px, 45vw, 320px);
            }
        }

        /* ====================================================
           SWIPER LUX GALLERY SLIDER
           Borderless, aspect-ratio aware, gold-accent UI
           ==================================================== */
        /* Clear old backgrounds and letterboxing — no black */
        .swiper.lux,
        .swiper.lux .swiper-wrapper,
        .swiper.lux .swiper-slide { background: transparent !important; }

        /* Cinematic height + rounded frame + shadow */
        .swiper.lux { width: 100%; overflow: visible; padding-inline: clamp(12px, 3vw, 36px); }
        .swiper.lux .swiper-slide {
            height: clamp(220px, 40vw, 520px);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(0,0,0,.22);
            position: relative;
        }

        /* Smart-fit media container with blurred backdrop */
        .smartfit__media { position: relative; width: 100%; height: 100%; overflow: hidden; }
        .smartfit__media::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background: center / cover no-repeat var(--bg);
            filter: blur(28px) saturate(1.05) brightness(.95);
            transform: scale(1.08);
        }
        .smartfit__media > img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            background: transparent;
            border-radius: inherit;
        }
        /* Portrait images switch to contain */
        .smartfit__media.is-portrait > img { object-fit: contain; }

        /* Pagination BELOW slider — no overlap (static, centered, spaced) */
        .slider-wrap.is-separated { width: 100%; }
        .slider-wrap.is-separated .lux-pagination,
        .slider-wrap.is-separated .swiper-pagination {
            position: static !important;
            display: flex;
            justify-content: center;
            gap: 8px;
            padding-top: 10px;
            padding-bottom: 6px;
        }
        .slider-wrap.is-separated .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,.35);
            opacity: 1;
            transition: transform .2s ease, background-color .2s ease;
        }
        .slider-wrap.is-separated .swiper-pagination-bullet-active {
            background: #c2a46d;
            transform: scale(1.15);
        }
        .swiper.lux { margin-bottom: 6px; }
        @media (max-width: 600px) {
            .slider-wrap.is-separated .swiper-pagination-bullet { width: 10px; height: 10px; }
            .swiper.lux { margin-bottom: 8px; }
        }

        /* Nav arrows (unchanged) */
        .swiper.lux .swiper-button-next,
        .swiper.lux .swiper-button-prev {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(14,13,12,.55);
            backdrop-filter: blur(8px);
            color: #f5f2ed;
            transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s cubic-bezier(.2,.8,.2,1);
        }
        .swiper.lux .swiper-button-next:hover,
        .swiper.lux .swiper-button-prev:hover {
            transform: translateY(-2px);
            background: rgba(14,13,12,.75);
        }
        @media (max-width: 900px) {
            .swiper.lux .swiper-button-next,
            .swiper.lux .swiper-button-prev { display: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            .swiper.lux .swiper-button-next,
            .swiper.lux .swiper-button-prev { transition: none; }
        }
    </style>
