/* ROXÉ Premium Web Style System */

@font-face {
    font-family: 'Bodigako';
    src: url('tipografy/BODIGAKO/BODIGAKO.woff2') format('woff2'),
         url('tipografy/BODIGAKO/BODIGAKO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Shoore';
    src: url('tipografy/Shoore/Shoore.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Noveau';
    src: url('tipografy/noveau-prestige-elegant-2026-04-07-06-20-32-utc/Noveau.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Color Palette - Perceptually Tinted Nudes & Golds */
    --bg-primary: #FDFBF8;     /* Luxurious off-white */
    --bg-secondary: #F2E8E1;   /* Warm Ivory Veil */
    --bg-tertiary: #EADCD3;    /* Muted Nude */
    --text-primary: #231914;   /* Near-Black Warm Ebony */
    --text-secondary: #5C4132; /* Rich Cocoa */
    --accent-gold: #C29F72;    /* Champagne Gold */
    --accent-gold-hover: #A68052;
    --accent-nude: #BC7E61;    /* Nude Veil */
    
    /* Semantic Colors */
    --border-subtle: rgba(92, 65, 50, 0.12);
    --border-glass: rgba(255, 255, 255, 0.25);
    --bg-glass: rgba(253, 251, 248, 0.75);
    --bg-glass-dark: rgba(35, 25, 20, 0.7);
    
    /* Fonts */
    --f-display: 'Shoore', serif;
    --f-editorial: 'Noveau', serif;
    --f-avant-garde: 'Bodigako', serif;
    --f-body: 'Montserrat', sans-serif;
    
    /* Spacing Scale (4pt base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Shadows & Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    --shadow-soft: 0 10px 30px rgba(92, 65, 50, 0.05);
    --shadow-diffusion: 0 30px 60px -15px rgba(92, 65, 50, 0.12);
    --shadow-glass: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 32px rgba(92, 65, 50, 0.08);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font-family: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    font-weight: normal;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.font-editorial {
    font-family: var(--f-editorial);
    text-transform: uppercase;
}

.font-avant-garde {
    font-family: var(--f-avant-garde);
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-w: 65ch;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

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

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: transparent;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border-subtle);
    padding: var(--space-md) 0;
    box-shadow: 0 4px 30px rgba(92, 65, 50, 0.02);
}

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

.logo-link {
    display: block;
}

.logo-img {
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.cart-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 6px;
    color: var(--text-primary);
    transition: color 0.3s ease, transform 0.2s ease;
}

.cart-toggle-btn:hover {
    color: var(--accent-gold);
}

.cart-toggle-btn:active {
    transform: scale(0.95);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--f-body);
    font-size: 0.625rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cart-toggle-btn:hover .cart-count {
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu can toggle or be simple */
    }
}

/* Hero Section (Asymmetric Split) */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-secondary);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    animation: slowZoom 15s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-secondary) 45%, rgba(242, 232, 225, 0.4) 65%, rgba(242, 232, 225, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.hero-desc {
    margin-bottom: var(--space-2xl);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.btn-label {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.btn-arrow {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* Shimmer sweep */
.btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.20) 50%,
        transparent 70%
    );
    background-size: 250% 100%;
    background-position: -150% 0;
    animation: btnShimmer 3.5s ease-in-out 2.8s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes btnShimmer {
    0%   { background-position: -150% 0; }
    55%  { background-position: 200% 0; }
    100% { background-position: 200% 0; }
}

.btn-primary:hover {
    background: var(--accent-gold);
    box-shadow: 0 14px 32px rgba(194, 159, 114, 0.28),
                0 0 0 1px rgba(194, 159, 114, 0.18);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline:active {
    transform: scale(0.97);
}

/* Magnetic: don't interfere with will-change */
.hero-cta-magnetic {
    will-change: transform;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.8;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--accent-gold);
    animation: scrollDot 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollDot {
    0% { transform: translateY(-100%); }
    80% { transform: translateY(250%); }
    100% { transform: translateY(250%); }
}

@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

@media (max-width: 992px) {
    .hero {
        min-height: 100dvh;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: var(--space-3xl);
    }
    
    .hero-bg {
        width: 100vw;
        height: 50vh;
        top: 0;
        right: 0;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(242, 232, 225, 0.1) 0%, var(--bg-secondary) 48%, var(--bg-secondary) 100%);
    }
    
    .hero-content {
        margin-top: 40vh;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Philosophy / Pillars Section */
.pillars-section {
    background-color: var(--bg-primary);
}

.section-header {
    margin-bottom: var(--space-3xl);
    max-width: 600px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-3xl);
}

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

.pillar-num {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.pillar-title {
    font-family: var(--f-editorial);
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.pillar-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: var(--space-md);
        padding-top: var(--space-md);
        padding-bottom: var(--space-xl);
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        border-top: none;
    }
    
    .pillars-grid::-webkit-scrollbar {
        display: none;
    }

    .pillar-item {
        flex: 0 0 280px;
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        padding: var(--space-lg);
        box-shadow: var(--shadow-soft);
        position: relative;
    }
}

/* Interactive Swatch Switcher Section */
.flagship-section {
    background-color: var(--bg-secondary);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.product-showcase:last-of-type {
    margin-bottom: 0;
    padding-top: var(--space-4xl);
    border-top: 1px solid var(--border-subtle);
    grid-template-columns: 0.9fr 1.1fr;
}

.showcase-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-img-floating-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.showcase-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1);
}

.showcase-img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

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

.product-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.product-finish {
    color: var(--accent-gold);
}

.product-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Swatch Control System */
.swatch-group {
    margin-bottom: var(--space-xl);
}

.swatch-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

.swatch-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none !important;
    background-color: transparent !important;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.swatch-color-dot {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.swatch-btn.active .swatch-color-dot {
    transform: translate(-50%, -50%) scale(0.92);
}

.swatch-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    pointer-events: none;
    transform: rotate(-90deg);
    z-index: 2;
}

.swatch-btn.active {
    transform: scale(1.05);
}

.swatch-btn:hover {
    transform: translateY(-2px);
}

.swatch-name-display {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    min-height: 20px;
    letter-spacing: 0.05em;
}

.product-price {
    font-family: var(--f-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.product-actions {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 992px) {
    .product-showcase,
    .product-showcase:last-of-type {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .product-showcase:last-of-type .showcase-visual {
        order: -1;
    }
    
    .showcase-visual {
        aspect-ratio: 1.2;
    }
}

/* Video Campaign Section */
.campaign-section {
    background-color: var(--bg-primary);
}

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

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #000;
    box-shadow: var(--shadow-diffusion);
}

.campaign-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(35, 25, 20, 0.2) 0%, rgba(35, 25, 20, 0) 50%, rgba(35, 25, 20, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-2xl);
    pointer-events: none;
}

.video-top {
    display: flex;
    justify-content: flex-end;
}

.video-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: auto;
}

.video-text {
    color: var(--bg-primary);
}

.video-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.video-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.video-controls {
    display: flex;
    gap: var(--space-sm);
}

.video-control-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: #fff;
    color: var(--text-primary);
    transform: scale(1.05);
}

.video-control-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .campaign-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Catalog Grid Section */
.catalog-section {
    background-color: var(--bg-secondary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.catalog-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-diffusion);
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.card-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: var(--space-xs);
}

.card-category {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.card-title {
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-price {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: auto;
    padding-top: var(--space-md);
}

.card-swatches {
    display: flex;
    gap: var(--space-xs);
    margin: var(--space-sm) 0;
}

.card-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-actions {
    padding: 0 var(--space-lg) var(--space-lg);
}

.btn-card {
    width: 100%;
    padding: 10px 0;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
}

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

@media (max-width: 576px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Shopping Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 25, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: var(--bg-primary);
    z-index: 110;
    box-shadow: -10px 0 40px rgba(35, 25, 20, 0.05);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-title {
    font-family: var(--f-body);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cart-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 4px;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--accent-gold);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Shipping Progress Bar */
.shipping-tracker {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--border-subtle);
}

.shipping-msg {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.shipping-msg span {
    font-weight: 700;
    color: var(--text-primary);
}

.shipping-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(92, 65, 50, 0.1);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.shipping-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cart Items List */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl) 0;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: var(--space-md);
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-visual {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.item-visual img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.item-shade {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-sm);
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 2px;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.qty-btn:hover {
    color: var(--text-primary);
}

.qty-number {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 10px;
    min-width: 28px;
    text-align: center;
}

.item-price {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-decoration: underline;
    align-self: flex-start;
    padding: var(--space-xs) 0;
    transition: color 0.2s ease;
}

.item-remove:hover {
    color: var(--text-primary);
}

/* Dynamic Upsell Card */
.cart-upsell {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-upsell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.upsell-header {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-nude);
    margin-bottom: var(--space-sm);
}

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

.upsell-img-wrapper {
    width: 64px;
    height: 64px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.upsell-img-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.upsell-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.upsell-title {
    font-size: 0.8rem;
    font-weight: 600;
}

.upsell-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.upsell-price {
    font-family: var(--f-display);
    font-size: 1rem;
    margin-top: 2px;
}

.upsell-add-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-pill);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-add-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
}

.upsell-add-btn:active {
    transform: scale(0.97);
}

/* Cart Footer / Checkout */
.cart-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.total-row.grand-total {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-md);
    margin-top: var(--space-xs);
}

.grand-total .total-val {
    font-family: var(--f-display);
    font-size: 1.35rem;
}

.checkout-btn {
    width: 100%;
    padding: var(--space-md) 0;
}

/* Instagram Wall Section */
.instagram-section {
    background-color: var(--bg-primary);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-3xl);
}

.instagram-header .section-title {
    margin-bottom: 0;
}

.instagram-handle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 500;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.instagram-handle::before {
    content: '@';
}

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-secondary);
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 25, 20, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    padding: var(--space-lg);
}

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

.instagram-item:hover .instagram-hover {
    opacity: 1;
}

.instagram-hover-content {
    text-align: center;
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-item:hover .instagram-hover-content {
    transform: translateY(0);
}

.instagram-hover-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instagram-item:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    .instagram-item:last-child {
        display: block;
    }
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    padding: var(--space-4xl) 0 var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
}

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

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

.footer-logo {
    height: 32px;
    align-self: flex-start;
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(242, 232, 225, 0.7);
    max-width: 250px;
}

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

.footer-link-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(242, 232, 225, 0.6);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-input-group {
    display: flex;
    border-bottom: 1px solid rgba(242, 232, 225, 0.2);
    padding-bottom: 6px;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-gold);
}

.newsletter-input {
    background: transparent;
    border: none;
    flex-grow: 1;
    color: #fff;
    font-size: 0.875rem;
    padding: 8px 0;
}

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

.newsletter-submit {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 var(--space-sm);
    transition: color 0.3s ease;
}

.newsletter-submit:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 232, 225, 0.1);
    padding-top: var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(242, 232, 225, 0.4);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Success Modal / Checkout Simulation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 25, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-3xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-diffusion);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(194, 159, 114, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

/* Swatch Color Previews */
.bg-petal-kiss { background-color: #F8D3CD; }
.bg-nude-veil { background-color: #E2B29F; }
.bg-cherry-bloom { background-color: #D35056; }
.bg-sun-blush { background-color: #E6947D; }

.bg-petal-veil { background-color: #F9C3C2; }
.bg-rose-bloom { background-color: #D69499; }
.bg-coral-soft { background-color: #EE8A7E; }
.bg-sun-kiss { background-color: #CD8978; }

.bg-l1 { background-color: #E1B297; }
.bg-l2 { background-color: #D58F7D; }
.bg-l3 { background-color: #B2755B; }
.bg-l4 { background-color: #8C4E3D; }

.bg-pink-nectar { background-color: #F6AE9E; }
.bg-soft-mauve { background-color: #D8A5B6; }
.bg-golden-veil { background-color: #EDAC7A; }
.bg-rose-amber { background-color: #DF7B6B; }

/* Pillar Icons */
.pillar-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.pillar-item:hover .pillar-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    background-color: #fff;
    border-color: var(--accent-gold);
}

/* Promo Banner Section */
.promo-banner-section {
    padding: var(--space-4xl) 0;
    background-color: var(--bg-primary);
}

.promo-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 2.5rem;
    padding: var(--space-3xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-diffusion);
    overflow: hidden;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 5;
}

.promo-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--text-primary);
}

.promo-price-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-sm) 0 var(--space-md);
}

.promo-old-price {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.6;
}

.promo-new-price {
    font-family: var(--f-display);
    font-size: 1.85rem;
    color: var(--text-primary);
}

.promo-save-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.promo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 280px;
}

.promo-visual-stack {
    position: relative;
    width: 240px;
    height: 240px;
}

.promo-visual-img {
    position: absolute;
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 15px 30px rgba(92, 65, 50, 0.15));
}

.promo-visual-img.stick {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-10deg);
}

.promo-visual-img.gloss {
    bottom: 0;
    right: 0;
    z-index: 3;
    transform: rotate(15deg);
}


/* Dedicated Newsletter Section */
.newsletter-signup-section {
    padding: var(--space-4xl) 0;
    background-color: var(--bg-secondary);
}

.newsletter-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 2.5rem;
    padding: var(--space-4xl) var(--space-3xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-diffusion);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.newsletter-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--text-primary);
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 60ch;
    margin-bottom: var(--space-md);
}

.newsletter-form-large {
    width: 100%;
    max-width: 500px;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--border-subtle);
    padding-bottom: 8px;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-input-wrap:focus-within {
    border-color: var(--accent-gold);
}

.newsletter-input-field {
    background: transparent;
    border: none;
    flex-grow: 1;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 8px 0;
    font-weight: 300;
}

.newsletter-input-field:focus {
    outline: none;
}

.newsletter-input-field::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.newsletter-btn-large {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.2s ease;
}

.newsletter-btn-large:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.newsletter-btn-large svg {
    transition: transform 0.3s ease;
}

.newsletter-btn-large:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .promo-banner {
        grid-template-columns: 1fr;
        padding: var(--space-2xl);
        gap: var(--space-xl);
    }
    
    .promo-visual {
        min-height: 200px;
        order: -1;
    }
    
    .promo-visual-stack {
        width: 180px;
        height: 180px;
    }
    
    .promo-visual-img {
        width: 120px;
        height: 120px;
    }
    
    .newsletter-card {
        padding: var(--space-2xl) var(--space-md);
    }
}

/* Product Detail Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

.gallery-container-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.main-display-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glass);
}

.main-display-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.main-display-img.fade-out {
    opacity: 0;
    transform: scale(0.93) translateY(12px);
    filter: blur(6px);
}

.thumbnails-row {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
}

.thumbnail-btn {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.thumbnail-btn img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.thumbnail-btn.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--text-primary);
}

.thumbnail-btn:hover {
    transform: translateY(-2px);
}

.sticky-info {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Reviews */
.review-rating-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stars-svg {
    display: flex;
    color: var(--accent-gold);
}

/* Accordion */
.details-accordion {
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.accordion-item {
    border-bottom: 1px solid var(--border-subtle);
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.accordion-content p {
    padding: 0 0 var(--space-md) 0;
}

.accordion-content ul {
    padding: 0 0 var(--space-md) var(--space-md);
}

.accordion-content li {
    margin-bottom: var(--space-xs);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Bundle cross-sell box */
.bundle-cross-sell {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    box-shadow: var(--shadow-glass);
}

.cross-sell-text {
    flex-grow: 1;
}

.cross-sell-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-nude);
    margin-bottom: var(--space-xs);
}

.cross-sell-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cross-sell-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.bundle-visuals {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.bundle-visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.bundle-product-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform var(--transition-bounce), filter var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Alternate floating animations for the two products to create organic motion */
.bundle-visuals .bundle-visual-wrapper:first-child .bundle-product-img {
    animation: bundleFloatLeft 3.5s ease-in-out infinite;
}

.bundle-visuals .bundle-visual-wrapper:last-child .bundle-product-img {
    animation: bundleFloatRight 4s ease-in-out infinite;
}

.bundle-visual-wrapper:hover .bundle-product-img {
    transform: scale(1.18) rotate(6deg) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
    animation-play-state: paused; /* Pause floating loop on hover */
}

@keyframes bundleFloatLeft {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px) rotate(2deg); }
    100% { transform: translateY(0); }
}

@keyframes bundleFloatRight {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px) rotate(-3deg); }
    100% { transform: translateY(0); }
}

.bundle-plus {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    user-select: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .sticky-info {
        position: static;
    }
    
    .bundle-cross-sell {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Infinite Marquee Banner --- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
    width: 100%;
    position: relative;
    display: flex;
    margin: var(--space-2xl) 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    gap: var(--space-4xl);
    padding-right: var(--space-4xl);
}

.marquee-item {
    font-family: var(--f-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.marquee-item::after {
    content: "•";
    margin-left: var(--space-4xl);
    color: var(--text-secondary);
    opacity: 0.3;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* --- Blog / Journal Styles --- */
.blog-hero {
    text-align: center;
    padding: var(--space-4xl) 0 var(--space-2xl) 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-3xl);
}

.blog-featured {
    margin-bottom: var(--space-4xl);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.featured-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.featured-card:hover .featured-img-wrapper img {
    transform: scale(1.02);
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.blog-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-gold);
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-tertiary);
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: var(--space-sm);
}

.blog-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-nude);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--accent-gold);
}

.blog-card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.read-more-btn {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: auto;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    width: fit-content;
    transition: border-color 0.3s ease;
}

.blog-card:hover .read-more-btn {
    border-color: var(--text-primary);
}

@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: var(--space-md);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

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

/* --- Hero Marketing Bar --- */
.hero-marketing-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(242, 232, 225, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
    z-index: 15;
    overflow: hidden;
    display: flex;
}

.hero-marketing-container {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    gap: var(--space-4xl);
    padding-right: var(--space-4xl);
}

.hero-marketing-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.hero-marketing-item::after {
    content: "•";
    margin-left: var(--space-4xl);
    color: var(--text-secondary);
    opacity: 0.3;
}

.hero-marketing-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .hero-marketing-bar {
        position: relative;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-subtle);
        padding: var(--space-md) 0;
        margin-top: var(--space-xl);
    }
    .hero-marketing-container {
        display: inline-flex;
        animation: marquee-scroll 25s linear infinite;
        gap: var(--space-4xl);
        padding-right: var(--space-4xl);
    }
}

/* Product Page Key Ingredients Section */
.ingredients-grid-detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ingredient-card-premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(194, 159, 114, 0.01) 100%);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), linear-gradient(135deg, rgba(194, 159, 114, 0.22) 0%, rgba(194, 159, 114, 0) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 14px;
    padding: var(--space-lg) var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(194, 159, 114, 0.01);
    transition: background-image 0.4s ease;
}

.ingredient-card-premium:hover {
    background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), linear-gradient(135deg, rgba(194, 159, 114, 0.45) 0%, rgba(194, 159, 114, 0) 100%);
}

.ingredient-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(194, 159, 114, 0.06);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-title-detail {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
}

.ingredient-desc-detail {
    font-size: 0.56rem;
    color: var(--text-secondary);
    line-height: 1.35;
    max-width: 120px;
}

@media (max-width: 576px) {
    .ingredients-grid-detail {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}
