/* Base & Properties */
:root, :root[data-theme="light"] {
    --bg-ivory: #F9F7F4;
    --bg-warm-beige: #EAE3DC;
    --dusty-rose: #E8CFC7;
    --champagne: #D6BFA7;
    --text-dark: #1A1815;
    --text-light: #6A605B;
    --nav-bg: rgba(249, 247, 244, 0.95);
    --card-bg: #fff;
    --border-color: rgba(214, 191, 167, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

:root[data-theme="dark"] {
    --bg-ivory: #0E0F11;
    --bg-warm-beige: #1A1C1E;
    --dusty-rose: #B58474;
    --champagne: #C8AB88;
    --text-dark: #F4F4F5;
    --text-light: #A1A1AA;
    --nav-bg: rgba(14, 15, 17, 0.95);
    --card-bg: #16181A;
    --border-color: rgba(200, 171, 136, 0.2);
}

body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-ivory);
    transition: background-color 0.5s ease;
}

/* Custom Cursor */
@media (pointer: fine) {
    body {
        cursor: none; /* Hide default cursor */
    }
    
    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        background-color: var(--text-dark);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 99999;
        transition: width 0.3s, height 0.3s, background-color 0.3s;
        mix-blend-mode: difference;
    }

    .cursor.hovering {
        width: 40px;
        height: 40px;
        background-color: var(--dusty-rose);
        mix-blend-mode: normal;
        opacity: 0.8;
    }
}

body {
    background-color: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-ivory);
    transition: background-color 0.5s ease;
    overflow-x: hidden;
    width: 100%;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: none; color: inherit; }

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-ivory);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 15px;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeText 2s forwards;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: var(--text-dark);
    margin-top: 20px;
    animation: expandLine 1.5s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeText { to { opacity: 1; } }
@keyframes expandLine { to { width: 150px; } }

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

em {
    font-style: italic;
    color: var(--text-light);
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition-slow);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    flex: 1;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--text-dark); transition: var(--transition-fast);
}
.nav-link:hover::after { width: 100%; }

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    flex: 0 0 auto;
}

.nav-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-dot {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.8rem;
}

.badge {
    position: absolute; top: -8px; right: -8px;
    background: var(--dusty-rose); color: white;
    font-size: 0.6rem; padding: 2px 5px; border-radius: 10px;
}

/* Search Drawer */
.search-drawer {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--bg-ivory);
    padding: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    border-bottom: 1px solid transparent;
}

.search-drawer.active {
    height: 100px;
    border-bottom: 1px solid var(--champagne);
}

#live-search {
    width: 60%;
    background: transparent; border: none; border-bottom: 1px solid var(--text-dark);
    font-size: 1.5rem; font-family: var(--font-heading); padding: 10px 0; outline: none;
    color: var(--text-dark);
}

.close-search {
    font-size: 2rem; margin-left: 30px; font-weight: 300;
}

/* Buttons */
.btn-outline {
    display: inline-block;
    border: 1px solid var(--text-dark);
    padding: 15px 40px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}
.btn-outline:hover {
    background: var(--text-dark); color: var(--bg-ivory);
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-ivory);
    padding: 15px 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: var(--transition-fast);
}
.btn-primary:hover {
    background: var(--text-light);
}

.btn-secondary {
    border: 1px solid var(--text-dark);
    padding: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.btn-secondary:hover { background: var(--dusty-rose); border-color: var(--dusty-rose); color: white;}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; top: -5%; left: -5%; width: 110%; height: 110%;
    background-size: cover; background-position: center;
    opacity: 0.8;
}

.hero-content {
    position: relative; z-index: 10;
    text-align: center;
}

/* Text Reveal Animation Hooks */
.reveal-text {
    overflow: hidden;
    line-height: 1.1;
}

.reveal-text h1, .reveal-text a {
    transform: translateY(100%);
    opacity: 0;
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-text.delay-1 h1 { animation-delay: 0.3s; }
.reveal-text.delay-2 a { animation-delay: 0.6s; }

.hero h1 {
    font-size: 5vw;
}

@keyframes slideUpFade { to { transform: translateY(0); opacity: 1; } }

/* Shared Container */
.container {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
}
.section { padding: 8rem 0; }

.editorial-title {
    font-size: 4rem; line-height: 1; margin-bottom: 3rem;
}

/* Signature Collection (Asymmetrical Grid) */
.section-head {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; flex-wrap: wrap; gap: 2rem;
}

.filter-group { display: flex; gap: 20px;}
.filter-btn {
    font-size: 0.85rem; letter-spacing: 1px; color: var(--text-light); text-transform: uppercase;
    padding-bottom: 5px; border-bottom: 1px solid transparent; transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover { color: var(--text-dark); border-color: var(--text-dark); }

/* Carousel Container & Track */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 60px; /* Added padding to make space for arrows beside products */
}

.asym-grid, .carousel-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0 40px 0; /* Add bottom padding for box-shadow allowance */
    opacity: 1;
    transition: var(--transition-slow);
    width: 100%;
    /* Hide scrollbar for seamless look */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: var(--bg-ivory);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.left-btn { left: 5px; }
.right-btn { right: 5px; }

.carousel-btn:hover {
    background: var(--champagne);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.no-results { font-size: 1.2rem; text-align: center; width: 100%; flex: 1; font-style: italic;}

/* Staggered Grid Variations */
.product-item {
    position: relative; display: flex; flex-direction: column; opacity: 0; transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    flex: 0 0 calc(16.666% - 17px); /* Exactly 6 visible items */
    min-width: 180px; /* Fallback for smaller screens */
}
.product-item.visible { opacity: 1; transform: translateY(0); }

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

@keyframes swayHorizontal {
    0% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(-6px); }
}

.p-img-box {
    overflow: hidden; width: 100%; aspect-ratio: 4/5; position: relative; background: var(--card-bg);
    animation: swayHorizontal 7s ease-in-out infinite;
}

.p-img-box img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-item:hover .p-img-box img { transform: scale(1.08); }

.p-info {
    padding: 20px 0; display: flex; justify-content: space-between; align-items: flex-start;
}

.p-title { font-size: 1.8rem; margin-bottom: 5px; }
.p-brand { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); display:block; margin-bottom: 10px;}
.p-desc { font-size: 0.9rem; color: var(--text-light); max-width: 80%; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-price { font-size: 1.2rem; font-family: var(--font-heading); }

.p-overlay {
    position: absolute; top:0; left:0; width: 100%; height: 100%;
    background: rgba(249, 247, 244, 0.3); opacity: 0;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast); backdrop-filter: blur(2px);
}
.product-item:hover .p-overlay { opacity: 1; }

.quick-view-trigger {
    background: var(--text-dark); color: var(--bg-ivory); border-radius: 50%;
    width: 80px; height: 80px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    transform: translateY(20px); transition: var(--transition-fast);
}
.product-item:hover .quick-view-trigger { transform: translateY(0); }
.quick-view-trigger:hover { background: var(--champagne); }

/* Luxury Strip */
.luxury-strip {
    background: var(--bg-warm-beige); padding: 40px 0; text-align: center; margin: 4rem 0;
}
.strip-content p { font-size: 1.5rem; font-family: var(--font-heading); }
.strip-content em { color: var(--text-dark); }
.strip-content strong { font-family: var(--font-body); font-weight: 500; font-size: 1rem; letter-spacing: 2px; border-bottom: 1px solid var(--text-dark);}

/* Brand Story */
.story-sec { margin: 8rem 0; position: relative; }
.story-img {
    width: 100%; height: 80vh; background-size: cover; background-position: center; background-attachment: fixed; filter: brightness(0.85);
}
.story-content {
    max-width: 800px; background: var(--bg-ivory); padding: 5rem; text-align: center;
    margin: -150px auto 0; position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.story-content h2 { font-size: 3.5rem; margin-bottom: 2rem; }
.story-content p { font-size: 1.2rem; color: var(--text-light); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; border-top: 1px solid var(--champagne); padding-top: 5rem;}
.f-num { font-family: var(--font-heading); font-size: 3rem; color: var(--champagne); margin-bottom: 10px; }
.feature h3 { font-size: 1.5rem; margin-bottom: 10px; }
.feature p { color: var(--text-light); font-size: 0.95rem; }

/* Testimonials */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.test-card { padding: 40px 30px; background: var(--card-bg); text-align: center; border: 1px solid var(--bg-warm-beige);}
.quote { font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; margin-bottom: 20px;}
.author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;}

/* Final CTA */
.final-cta { padding: 10rem 0; }
.massive-text { font-size: 6rem; line-height: 1.1; margin-bottom: 3rem; }

/* Footer */
.footer { background: var(--text-dark); color: var(--bg-ivory); padding: 5rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 4rem;}
.footer .logo { font-size: 2rem; color: var(--bg-ivory); display: block; margin-bottom: 10px;}
.f-desc { color: #9A9490; font-size: 0.9rem;}
.f-links { display: flex; flex-direction: column; gap: 15px;}
.f-links a { color: #9A9490; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s;}
.f-links a:hover { color: var(--champagne);}
.f-mail { display: flex; border-bottom: 1px solid #5A5450; padding-bottom: 5px; margin-top: 20px;}
.f-mail input { background: transparent; border: none; color: white; flex:1; outline: none; font-family: var(--font-body);}
.f-mail button { color: var(--champagne); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;}
.f-bottom { border-top: 1px solid #3A3532; padding-top: 2rem; text-align: center; color: #7A7470; font-size: 0.8rem;}


/* Overlays & Modals */
.overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(26, 24, 21, 0.4); backdrop-filter: blur(5px);
    z-index: 10001; opacity: 0; visibility: hidden; transition: var(--transition-fast);
}
.overlay.active { opacity: 1; visibility: visible; }

/* Cart Drawer */
.cart-drawer {
    position: fixed; top:0; right: -500px; width: 450px; height: 100%;
    background: var(--bg-ivory); z-index: 10002; display: flex; flex-direction: column;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active { right: 0; }
.cart-header { padding: 40px; border-bottom: 1px solid var(--champagne); display: flex; justify-content: space-between; align-items: center;}
.cart-header h2 { font-size: 2rem; }
.close-btn { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;}

.cart-body { flex:1; overflow-y: auto; padding: 40px; }
.c-item { display: flex; gap: 20px; margin-bottom: 30px; }
.c-img { width: 80px; height: 100px; object-fit: cover; }
.c-info { flex:1; }
.c-title { font-family: var(--font-heading); font-size: 1.2rem; }
.c-price { color: var(--text-light); margin-top: 5px; }
.c-remove { font-size: 0.7rem; text-transform: uppercase; color: #A00; margin-top: 10px; border-bottom: 1px solid #A00;}

.cart-footer { padding: 40px; background: var(--card-bg); border-top: 1px solid var(--champagne);}
.total-row { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px;}

/* Full Screen Modal */
.fs-modal {
    position: fixed; top: 100%; left: 0; width: 100%; height: 100%;
    background: var(--bg-ivory); z-index: 20000;
    transition: top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}
.fs-modal.active { top: 0; }
.close-fs {
    position: absolute; top: 30px; right: 40px; font-size: 3rem; color: var(--text-dark); z-index: 10;
}

.fs-content { display: flex; width: 100%; height: 100%; }
.fs-left { width: 50%; height: 100%; background: var(--card-bg); display: flex; align-items: center; justify-content: center;}
.fs-img-container { width: 70%; height: 80%; overflow: hidden;}
.fs-img-container img { width: 100%; height: 100%; object-fit: cover; animation: slowPan 20s infinite alternate;}

@keyframes slowPan { from { transform: scale(1); } to { transform: scale(1.15); } }

.fs-right { width: 50%; padding: 8% 10%; display: flex; flex-direction: column; justify-content: center;}
.brand-label { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); display: inline-block; border-bottom: 1px solid var(--champagne); margin-bottom: 20px;}
.fs-right h2 { font-size: 4rem; margin-bottom: 10px; line-height: 1.1;}
.fs-right .rating { color: var(--champagne); margin-bottom: 20px; font-size: 1.2rem;}
.fs-right .desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 90%;}
.fs-right .price { font-size: 2.5rem; margin-bottom: 40px;}
.fs-actions { display: flex; gap: 20px;}
.fs-actions .btn-primary { width: 60%; }
.wishlist-toggle-modal { border: 1px solid var(--champagne);}
.wishlist-toggle-modal.active svg { fill: var(--dusty-rose); color: var(--dusty-rose);}

/* Intersection Observer Helpers */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1.is-visible { transition-delay: 0.2s; }
.delay-2.is-visible { transition-delay: 0.4s; }


/* Responsive overrides */
@media (max-width: 1024px) {
    .editorial-title { font-size: 3rem; }
    .product-item { flex: 0 0 calc(33.333% - 15px); }
    .carousel-container { padding: 0 50px; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .section { padding: clamp(3rem, 10vh, 5rem) 0; }
    
    .editorial-title { 
        font-size: clamp(1.8rem, 8vw, 2.2rem); 
        margin-bottom: 2rem; 
        line-height: 1.1;
    }
    .hero h1 { 
        font-size: clamp(2rem, 10vw, 3rem); 
        line-height: 1.1;
    }
    .massive-text { 
        font-size: clamp(2.5rem, 15vw, 4rem); 
        line-height: 1;
        margin-bottom: 2rem; 
    }

    /* Navbar Fixes */
    .navbar { padding: clamp(10px, 3vh, 15px) 0; }
    .logo { font-size: clamp(1.4rem, 6vw, 1.8rem); letter-spacing: 1px; }
    .nav-right { gap: clamp(10px, 4vw, 20px); }
    .nav-container { padding: 0 15px; }
    .cart-text { display: none; } /* Hide 'Cart' text on small screens */
    .badge-dot { margin-left: 4px; }

    /* Modal Fixes */
    .fs-modal { padding-top: 0; overflow-y: auto; display: block; }
    .fs-content { flex-direction: column; height: auto; min-height: 100%; display: flex; }
    .fs-left { width: 100%; height: 45vh; min-height: 300px; flex-shrink: 0; }
    .fs-img-container { width: 100%; height: 100%; }
    .fs-right { width: 100%; padding: 40px 20px; height: auto; flex: 1; justify-content: flex-start; }
    .fs-right h2 { font-size: 2.4rem; }
    .fs-right .price { font-size: 2rem; margin-bottom: 30px; }
    .fs-right .desc { font-size: 1rem; margin-bottom: 30px; max-width: 100%; }
    .fs-actions { flex-direction: column; gap: 10px; margin-top: 20px; }
    .fs-actions .btn-primary { width: 100%; order: 1; }
    .fs-actions .btn-secondary { width: 100%; order: 2; }
    .close-fs { top: 15px; right: 20px; font-size: 2.5rem; z-index: 100; }

    .story-sec { margin: 2rem 0; }
    .story-img { height: 65vh; min-height: 400px; }
    .story-content { 
        padding: clamp(2rem, 10vw, 4rem) 1.5rem; 
        margin-top: -80px; 
        width: 95%; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .story-content h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 1.5rem; }
    .story-content p { font-size: 1rem; }

    /* 3D Carousel Setup */
    .carousel-container.mode-3d {
        perspective: 1500px;
        overflow: hidden; /* Prevent 3D items from causing horizontal scroll */
        height: clamp(450px, 85vh, 600px);
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .asym-grid.mode-3d {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.1s linear; /* Smooth but responsive during drag */
        margin: 0 auto;
        overflow: visible !important;
        padding: 0;
    }

    .product-item.mode-3d {
        position: absolute !important;
        left: 50%;
        top: 50%;
        width: 280px;
        margin-left: -140px;
        margin-top: -220px;
        transform-origin: center center;
        backface-visibility: hidden;
        transition: opacity 0.5s, filter 0.5s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0.1; /* Start hidden */
        z-index: 1;
    }

    .product-item.mode-3d.visible {
        opacity: 1;
    }

    .product-item.mode-3d:not(.active) {
        opacity: 0.3;
        filter: blur(3px) brightness(0.7);
        pointer-events: none;
    }
    
    .product-item.mode-3d.active {
        opacity: 1;
        filter: none;
        z-index: 10;
        pointer-events: auto;
    }
    
    .product-item.mode-3d .p-img-box {
        animation: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .product-item.mode-3d .p-info {
        padding: 15px 10px;
        background: var(--card-bg);
        border-radius: 0 0 10px 10px;
    }

    .product-item.mode-3d .p-title {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .product-item.mode-3d .p-brand {
        font-size: 0.6rem;
        margin-bottom: 5px;
    }

    .product-item.mode-3d .p-price {
        font-size: 1rem;
    }

    .luxury-strip { 
        margin: 2rem 0; 
        padding: 30px 15px; 
    }
    .strip-content p { 
        font-size: clamp(1.1rem, 5vw, 1.4rem); 
    }
    .strip-content strong {
        font-size: 0.9rem;
    }

    .features-grid, .test-grid, .footer-content { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .footer { padding: 4rem 0 2rem; }
    .footer-content { gap: 3rem; margin-bottom: 3rem; }
}
