/* --- 1. GLOBAL VARIABLES & RESET --- */
:root {
    --bg-body: #ffffff;
    --bg-secondary: #fcfbf9; /* Linen tone */
    --text-primary: #222021;
    --text-secondary: #666666;
    --accent: #b07c56; /* Embroidery Thread Gold/Bronze */
    --border-color: #e5e5e5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; }

.container {
    max-width: var(--container-width) !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- 2. HEADER & NAV (Fixed for Visibility) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    /* Default State (At the top) */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%); /* Subtle shadow for readability */
    color: #ffffff; /* FORCE WHITE TEXT INITIALLY */
    transition: all 0.4s ease;
    padding: 25px 0;
}

/* Scrolled State (When you move down) */
header.scrolled {
    background: rgba(255, 255, 255, 0.98); /* Solid White Background */
    color: #222021; /* SWITCH TO BLACK TEXT */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 2px dashed var(--accent);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Navigation - Ensure visibility */
.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Links & Icons should inherit the header color (White at top, Black on scroll) */
.nav-left a {
    color: inherit;
    font-size: 16px !important; /* Force consistent size */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 25px;
    font-weight: 700 !important; /* Force consistent weight */
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Tiny shadow to pop against any image */
    line-height: 1.2; /* Consistent line height */
}

/* Remove shadow when scrolled for a cleaner look */
header.scrolled .nav-left a {
    text-shadow: none;
}

.nav-left a:hover {
    color: var(--accent); /* Gold on hover */
    text-shadow: none;
}

/* Style text links in nav-right (like Collaboration) to match nav-left */
.nav-right a:not([target="_blank"]) {
    color: inherit;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 25px;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.2;
}

header.scrolled .nav-right a:not([target="_blank"]) {
    text-shadow: none;
}

.nav-right a:not([target="_blank"]):hover {
    color: var(--accent);
    text-shadow: none;
}

/* --- LOGO STYLES (Dynamic Swap) --- */
.logo {
    height: 100px; /* Adjust size as needed */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

/* 1. DEFAULT STATE (Top of page) */
/* Show the White Logo */
.logo-white {
    display: block;
}
/* Hide the Dark Logo */
.logo-dark {
    display: none;
}

/* 2. SCROLLED STATE (User scrolls down) */
/* When header has class 'scrolled', Hide the White Logo */
header.scrolled .logo-white {
    display: none;
}
/* When header has class 'scrolled', Show the Dark Logo */
header.scrolled .logo-dark {
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-right a[target="_blank"]:first-of-type {
    margin-left: auto;
}

.nav-right a[target="_blank"] {
    margin-left: 15px;
}

.nav-right i {
    color: inherit; /* Inherits White or Black */
    font-size: 18px;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: 0.3s;
}

header.scrolled .nav-right i {
    text-shadow: none;
}

.nav-right i:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* --- 3. HERO SECTION (Updated for Slider) --- */
#hero {
    height: 40rem; /* Fixed height - was 65vh */
    min-height: 40rem;
    max-height: 40rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Ensures no scrollbars if image zooms */
}

/* Container for the background images */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind the text */
}

/* Individual Slide Styles */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out, transform 6s ease; /* Smooth fade & slow zoom */
    transform: scale(1);
}

/* The class that makes a slide visible */
.slide.active {
    opacity: 1;
    transform: scale(1.05); /* Subtle Ken Burns zoom effect */
}

/* Dark Overlay to make text readable */
#hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1; /* Between image and text */
}

/* Ensure text sits on top of everything */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    animation: fadeIn 1.5s ease-out;
}

.hero-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 36px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem; /* Fixed: was 64px */
    line-height: 1.2; /* Fixed line-height */
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1875rem; /* Fixed: was 3px */
    margin-bottom: 1.25rem; /* Fixed: was 20px */
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem; /* Fixed: was 20px */
    line-height: 1.5; /* Fixed line-height */
    font-family: var(--font-body);
    font-weight: 300;
    color: #f0f0f0;
    letter-spacing: 0.0625rem; /* Fixed: was 1px */
    margin-bottom: 2.5rem; /* Fixed: was 40px */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
}

.btn-hero:hover {
    background: #fff;
    color: #222021;
}

/* --- 4. MOST BOUGHT LOOKS - HORIZONTAL OVERLAPPING GALLERY --- */
#coveted-looks {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.section-title-cinzel {
    font-family: 'Cinzel', serif;
    font-size: 2rem; /* Made even smaller */
    line-height: 1.2;
    font-weight: 600; /* Increased from 500 to match hero title */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1875rem; /* Matched to hero title letter spacing */
    color: var(--text-primary);
    margin-bottom: 4.375rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.section-title-cinzel::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #C5A059;
    margin: 25px auto 0;
}

/* Gallery Wrapper */
.overlap-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Horizontal Overlapping Gallery */
.overlap-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

/* Individual Overlap Cards */
.overlap-card {
    width: 17.5rem; /* Fixed: was 280px */
    height: 26.25rem; /* Fixed: was 420px */
    min-height: 26.25rem;
    max-height: 26.25rem;
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 1rem; /* Fixed: was 16px */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Overlap Effect - Negative Margin */
.overlap-card:not(:first-child) {
    margin-left: -80px;
}

/* Stacking Order - Each card higher than previous */
.overlap-card:nth-child(1) { z-index: 1; }
.overlap-card:nth-child(2) { z-index: 2; }
.overlap-card:nth-child(3) { z-index: 3; }
.overlap-card:nth-child(4) { z-index: 4; }
.overlap-card:nth-child(5) { z-index: 5; }

/* Hover State - Pop Out Effect */
.overlap-card:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 100 !important;
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.4);
    border-color: #C5A059;
}

/* Card Image */
.overlap-card-image {
    width: 100%;
    height: 19.6875rem; /* Fixed: 75% of 26.25rem */
    min-height: 19.6875rem;
    max-height: 19.6875rem;
    overflow: hidden;
    background: #f9f9f9;
}

.overlap-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover for consistent cropping */
    object-position: center;
    display: block;
    transition: transform 0.3s ease-out;
}

.overlap-card:hover .overlap-card-image img {
    transform: scale(1.03);
}

/* Card Info Section */
.overlap-card-info {
    height: 6.5625rem; /* Fixed: 25% of 26.25rem */
    min-height: 6.5625rem;
    max-height: 6.5625rem;
    padding: 1.25rem 0.9375rem; /* Fixed: was 20px 15px */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    overflow: hidden; /* Prevent text overflow */
}

.overlap-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.0625rem; /* Fixed: was 17px */
    line-height: 1.3; /* Fixed line-height */
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.625rem; /* Fixed: was 10px */
    letter-spacing: 0.03125rem; /* Fixed: was 0.5px */
}

.overlap-shop-link {
    color: #C5A059;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlap-shop-link:hover {
    color: #8d6344;
}

/* Mobile Responsiveness - Horizontal Scroll */
@media (max-width: 768px) {
    .section-title-cinzel {
        font-size: 1.5rem; /* Made even smaller */
        font-weight: 600;
        letter-spacing: 0.125rem;
        margin-bottom: 50px;
    }

    .overlap-gallery-wrapper {
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .overlap-gallery-wrapper::-webkit-scrollbar {
        display: none;
    }

    .overlap-gallery {
        justify-content: flex-start;
        padding: 20px 0;
    }

    .overlap-card {
        flex: 0 0 240px;
        width: 240px;
        height: 360px;
    }

    /* Less overlap on mobile */
    .overlap-card:not(:first-child) {
        margin-left: -30px;
    }

    /* Disable hover effects on mobile (touch devices) */
    .overlap-card:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
}

/* --- 5. TRENDING NOW - EDITORIAL GRID --- */
#trending {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.collection-name {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    margin-top: -20px;
    margin-bottom: 50px;
}

.collection-name-underline {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trend-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.trend-img {
    position: relative;
    overflow: hidden;
    height: 28.125rem; /* Fixed: was 450px */
    min-height: 28.125rem;
    max-height: 28.125rem;
}

.trend-img img,
.trend-img video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Enforced: crop to fit */
    object-position: center;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom image/video */
.trend-card:hover .trend-img img,
.trend-card:hover .trend-img video {
    transform: scale(1.1);
}

.trend-info {
    padding: 20px 10px;
    text-align: left;
}

.trend-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.trend-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Fixed: was 20px */
    line-height: 1.3; /* Already fixed */
    font-weight: 600;
    color: #222021;
    margin-bottom: 0.3125rem; /* Fixed: was 5px */
}

.trend-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* --- BROWSE COLLECTION SECTION --- */
#browse-collection {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.browse-card {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

/* Video styling for browse cards */
.browse-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.browse-card:hover {
    transform: translateY(-5px);
}

.browse-card:hover .browse-card-overlay {
    background: rgba(176, 124, 86, 0.85);
}

.browse-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    z-index: 1;
}

.browse-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 0.625rem;
    transition: transform 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.browse-card:hover .browse-card-title {
    transform: translateY(-10px);
}

/* Browse CTA Button that Slides Up */
.browse-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.browse-card:hover .browse-cta {
    opacity: 1;
    transform: translateY(0);
}

.browse-cta span {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.browse-card:hover .browse-cta span {
    background: #ffffff;
    color: #222021;
}

/* --- CURATED COLLECTIONS SECTION --- */

#curated-collections {
    padding: 100px 0;
    background-color: #ffffff;
}

.collections-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: -30px;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Collections Grid - 4 columns on desktop, 2x2 grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Collection Card */
.collection-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s ease;
}

.collection-card:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

/* Background Image */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.collection-card:hover .card-bg {
    transform: scale(1.1);
}

/* Dark Gradient Overlay for Text Readability */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    transition: background 0.4s ease;
}

.collection-card:hover .card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Card Content (Title + Count) */
.card-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
    transition: bottom 0.4s ease;
}

.collection-card:hover .card-content {
    bottom: 100px;
}

.collection-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.collection-count {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA Button that Slides Up on Hover */
.card-cta {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: bottom 0.4s ease;
}

.collection-card:hover .card-cta {
    bottom: 30px;
}

.card-cta span {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.collection-card:hover .card-cta span {
    background: #D4AF37;
    color: #ffffff;
}

/* --- 5. MISSION BANNER - BRAND INTRODUCTION --- */
#mission-banner {
    display: flex;
    background-color: #fcfbf9;
    padding: 80px 100px;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.mission-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}

.mission-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.mission-content {
    flex: 1;
    padding: 0 40px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 0.1875rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.mission-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.btn-mission {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid #222021;
    color: #222021;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-mission:hover {
    background: #222021;
    color: #fff;
}

/* --- 6. ABOUT SPLIT --- */
#about-split {
    display: flex;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #fff;
}

.about-img {
    flex: 1;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1598408456677-8a8f6d62a691?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-style: italic;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.signature {
    font-family: var(--font-heading);
    font-size: 24px;
}

/* --- 7. FOOTER - DARK MINIMALIST --- */
footer {
    background: #111;
    color: #999;
    padding: 30px 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-right {
    display: flex;
    gap: 25px;
}

.footer-right a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-right a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- 7B. LEGAL PAGE TEMPLATE STYLES --- */
.legal-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.legal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.legal-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.legal-back {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-back:hover {
    color: var(--text-primary);
}

.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: #fff;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--text-primary);
}

.legal-content h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Legal Page */
@media (max-width: 768px) {
    .legal-content {
        margin: 40px auto;
    }

    .legal-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .legal-content h2 {
        font-size: 18px;
        margin-top: 30px;
    }
}

/* --- 8. FASHION PAGE STYLES --- */

/* 1. Page Header (Static Image) */
.page-header {
    height: 40rem; /* Fixed height */
    min-height: 40rem;
    max-height: 40rem;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 3.75rem; /* Fixed: was 60px */
}

.page-header::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4); /* Darker overlay for readability */
    z-index: 1;
}

.header-overlay {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease;
}

.header-overlay h1 {
    font-size: 4rem; /* Fixed: was 64px */
    line-height: 1.2; /* Fixed line-height */
    letter-spacing: 0.25rem; /* Fixed: was 4px */
    text-transform: uppercase;
    margin-bottom: 0.9375rem; /* Fixed: was 15px */
}

.header-overlay p {
    font-size: 1.25rem; /* Fixed: was 20px */
    line-height: 1.5; /* Fixed line-height */
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.9;
}

/* 2. Shop The Look Grid */
#shop-the-look {
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    display: block;
    text-align: center;
}

.prod-img {
    position: relative;
    overflow: hidden;
    height: 25rem; /* Fixed height for product images */
    min-height: 25rem;
    max-height: 25rem;
    margin-bottom: 0.9375rem; /* Fixed: was 15px */
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Enforced: crop to fit */
    object-position: center;
    transition: transform 0.5s ease;
}

/* "Shop Now" Button appears on hover */
.shop-tag {
    position: absolute;
    bottom: -40px; /* Hidden below */
    left: 0;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 10px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: bottom 0.3s;
}

.product-card:hover .shop-tag {
    bottom: 0; /* Slides up */
}

.product-card:hover .prod-img img {
    transform: scale(1.05); /* Slight zoom */
}

.prod-info h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #222021;
}

.price {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-style: italic;
}

/* 3. Split Editorial Article */
#fashion-journal {
    padding: 80px 0;
}

.split-article {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-img {
    flex: 1;
}

.split-img img {
    width: 100%;
    height: auto;
}

.split-content {
    flex: 1;
}

.cat-label {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #222021;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #222021;
    color: #fff;
}

/* Active navigation link style */
.nav-left a.active {
    color: var(--accent) !important;
}

/* --- 9. HOLIDAY EDIT INTERACTIVE LOOKBOOK --- */

/* Holiday Hero Section */
.holiday-hero {
    height: 40rem; /* Fixed height */
    min-height: 40rem;
    max-height: 40rem;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.holiday-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.holiday-hero .hero-overlay {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease;
}

.holiday-hero .hero-overlay h1 {
    font-size: 4rem; /* Fixed: was 64px */
    line-height: 1.2; /* Fixed line-height */
    letter-spacing: 0.25rem; /* Fixed: was 4px */
    text-transform: uppercase;
    margin-bottom: 1.25rem; /* Fixed: was 20px */
    font-weight: 400;
}

.holiday-hero .hero-overlay p {
    font-size: 1.25rem; /* Fixed: was 20px */
    line-height: 1.5; /* Fixed line-height */
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 0.0625rem; /* Fixed: was 1px */
}

/* Interactive Lookbook Section */
#interactive-lookbook {
    padding: 20px 0 100px;
    background-color: var(--bg-body);
}

/* Tab Navigation */
.lookbook-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Lookbook Content Areas */
.lookbook-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lookbook-content.active {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas:
        "header header"
        "slider products"
        "thumbnails products";
    gap: 60px;
    align-items: start;
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

/* Lookbook Header - Full Width Section Divider */
.lookbook-header {
    grid-area: header;
    background-color: #F5F5F0;
    padding: 2.5rem 0;
    text-align: center;
    margin: 0 0 3rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.lookbook-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: #222021;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0;
}

/* Lead Paragraph (Left Side Under Video) */
.lead-paragraph {
    font-family: var(--font-heading);
    font-size: 1rem; /* Reduced for left side */
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    text-align: left;
    padding: 1.5rem 0 0 0; /* Top padding only */
    margin-top: 1.5rem;
}

/* Slider Container (replaces single video) */
.lookbook-slider {
    grid-area: slider;
    position: sticky;
    top: 10rem; /* Fixed: was 160px */
    width: 100%;
    height: 45rem; /* Restored original height */
    min-height: 45rem;
    max-height: 45rem;
    overflow: hidden;
    background: #000;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.media-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.media-slide video,
.media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(176, 124, 86, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dot Navigation - Now External */
.slider-dots {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
    background: transparent;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 144, 96, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #A89060;
}

.dot:hover {
    background: rgba(168, 144, 96, 0.7);
}

.dot.active {
    background: #A89060;
    border-color: #8B7355;
    width: 12px;
    height: 12px;
}

/* Thumbnail Preview Section - Outside Video */
.thumbnail-preview-section {
    grid-area: thumbnails;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin-top: -240px;
    background: transparent;
    border-radius: 8px;
    position: sticky;
    top: 600px;
    z-index: 100;
}

.preview-thumbnail {
    width: 100px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid #ddd;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;

    /* Retina optimization */
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

.preview-thumbnail:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.preview-thumbnail:active,
.preview-thumbnail.active {
    border-color: var(--accent);
    border-width: 4px;
    box-shadow: 0 0 0 3px rgba(176, 124, 86, 0.2), 0 6px 20px rgba(176, 124, 86, 0.3);
}

/* Products Section */
.lookbook-products {
    grid-area: products;
}

.lookbook-products h3 {
    font-size: 1.625rem; /* Fixed: was 26px */
    line-height: 1.3; /* Fixed line-height */
    margin-bottom: 1.875rem; /* Fixed: was 30px */
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.125rem; /* Fixed: was 2px */
}

/* Moodboard Product Grid (2x3 = 6 products) */
.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.moodboard-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    overflow: hidden;
}

.moodboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.moodboard-card img {
    width: 100%;
    height: 18.75rem; /* Fixed: was aspect-ratio 1/1 */
    min-height: 18.75rem;
    max-height: 18.75rem;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background-color: #f9f9f9;
}

.moodboard-card:hover img {
    transform: scale(1.05);
}

.moodboard-info {
    padding: 12px 15px;
    text-align: center;
}

.moodboard-info h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.shop-link {
    display: inline-block;
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}

.affiliate-price {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 11px;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .browse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .browse-card {
        height: 250px;
    }

    .browse-card-title {
        font-size: 1.25rem;
        white-space: nowrap;
        text-align: center;
    }

    /* Curated Collections - 2x2 grid on tablet */
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .collection-title {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }

    .collection-count {
        font-size: 0.8rem;
    }

    #mission-banner {
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
    }

    .mission-image img {
        max-height: 350px;
    }

    .mission-content {
        padding: 0 20px;
    }

    .mission-content h2 {
        font-size: 2.25rem;
        font-weight: 600;
        letter-spacing: 0.125rem;
    }

    /* Curated Collections - Single column on mobile */
    @media (max-width: 600px) {
        .collections-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        #curated-collections {
            padding: 60px 0;
        }

        .collections-subtitle {
            font-size: 0.9rem;
            padding: 0 20px;
        }

        .collection-title {
            font-size: 1.5rem;
        }

        .card-cta span {
            font-size: 0.75rem;
            padding: 10px 25px;
        }
    }

    #about-split { flex-direction: column-reverse; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.25rem !important; line-height: 1.2 !important; } /* Fixed: was 36px */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .split-article { flex-direction: column; }
    .header-overlay h1 { font-size: 2.25rem !important; line-height: 1.2 !important; } /* Fixed: was 36px */
    .header-overlay p { font-size: 1rem !important; line-height: 1.5 !important; } /* Fixed: was 16px */

    /* Holiday Edit Responsive */
    .holiday-hero .hero-overlay h1 {
        font-size: 2.25rem !important; /* Fixed: was 36px */
        line-height: 1.2 !important;
        letter-spacing: 0.125rem; /* Fixed: was 2px */
    }

    .holiday-hero .hero-overlay p {
        font-size: 1rem !important; /* Fixed: was 16px */
        line-height: 1.5 !important;
    }

    .lookbook-tabs {
        flex-direction: column;
        gap: 0;
    }

    .tab-btn {
        padding: 15px 20px;
        font-size: 13px;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-btn.active {
        border-bottom: 1px solid var(--accent);
        border-left: 3px solid var(--accent);
    }

    .lookbook-content.active {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "slider"
            "products";
        gap: 40px;
    }

    .lookbook-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .lookbook-title {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }

    .lead-paragraph {
        font-size: 14px;
        line-height: 1.6;
        padding: 1rem 0 0 0;
        margin-top: 1rem;
        text-align: left;
    }

    .lookbook-slider {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .moodboard-grid {
        gap: 15px;
    }

    .lookbook-products h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    animation: fadeInOverlay 0.3s ease;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 24px;
    font-family: var(--font-body);
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-info {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: var(--font-body);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.search-preview {
    cursor: pointer !important;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 8px 12px;
    margin-top: 8px;
    background: rgba(176, 124, 86, 0.2);
    border-radius: 8px;
    border: 2px solid transparent;
}

.search-preview:hover {
    background: rgba(176, 124, 86, 0.4);
    border-color: var(--accent);
    transform: translateY(-2px);
    opacity: 1 !important;
}

.search-preview:active {
    transform: translateY(0);
}

.search-navigation {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.search-nav-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    transition: background 0.3s;
}

.search-nav-btn:hover {
    background: #8d6344;
}

.search-nav-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Highlight styling for search results */
.search-highlight {
    background-color: #ffeb3b;
    color: black;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(255, 235, 59, 0.3);
}

.search-highlight.current {
    background-color: var(--accent);
    color: white;
    padding: 4px 6px;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(176, 124, 86, 0.4);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(176, 124, 86, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(176, 124, 86, 0.6);
    }
}

.nav-right i.fa-magnifying-glass {
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-right i.fa-magnifying-glass:hover {
    transform: scale(1.2);
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 100px;
    }

    .search-box input {
        font-size: 18px;
    }

    .search-box {
        padding: 15px 20px;
    }
}

/* ========================================
   MOST BOUGHT LOOKS - CARD STACK COMPONENT
   ======================================== */

#most-bought-looks {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

#most-bought-looks .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-primary);
}

#most-bought-looks .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
    font-style: italic;
}

/* Card Stack Wrapper */
.card-stack-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Stack Container */
.card-stack {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
}

/* ========================================
   THICK DECK EFFECT - Layered Background
   ======================================== */

.deck-layer {
    position: absolute;
    width: 94%;
    height: 36.25rem; /* Fixed: was 580px */
    min-height: 36.25rem;
    max-height: 36.25rem;
    background: #fff;
    border-radius: 1rem; /* Fixed: was 16px */
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #e0e0e0;
}

.deck-layer-1 {
    bottom: -8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.deck-layer-2 {
    bottom: -16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 0;
    width: 92%;
}

.deck-layer-3 {
    bottom: -24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    z-index: -1;
    width: 90%;
    opacity: 0.7;
}

/* ========================================
   LOOK CARD STYLING
   ======================================== */

.look-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 36.25rem; /* Fixed: was 580px */
    min-height: 36.25rem;
    max-height: 36.25rem;
    background: #fff;
    border-radius: 1rem; /* Fixed: was 16px */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.9) translateX(-6.25rem); /* Fixed: was -100px */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 2;
    border: 2px solid #f5f5f5;
}

.look-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    z-index: 10;
}

.look-card img {
    width: 100%;
    height: 25rem; /* Fixed: was 400px */
    min-height: 25rem;
    max-height: 25rem;
    object-fit: cover; /* Enforced: crop to fit */
    object-position: center;
}

.card-content {
    padding: 30px 25px;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem; /* Fixed: was 28px */
    line-height: 1.3; /* Fixed line-height */
    color: var(--text-primary);
    margin-bottom: 0.625rem; /* Fixed: was 10px */
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem; /* Fixed: was 15px */
    line-height: 1.6; /* Already fixed */
    margin-bottom: 1.25rem; /* Fixed: was 20px */
}

.shop-look-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 124, 86, 0.3);
}

.shop-look-btn:hover {
    background: #9d6a49;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 124, 86, 0.4);
}

/* ========================================
   QUANTITY INDICATOR BADGE
   ======================================== */

.quantity-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--accent);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    backdrop-filter: blur(10px);
}

.quantity-badge .current-number {
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
}

.quantity-badge .total-number {
    font-weight: 700;
}

/* ========================================
   NAVIGATION ARROWS
   ======================================== */

.stack-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stack-arrow:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(176, 124, 86, 0.4);
}

.stack-arrow-left {
    left: -70px;
}

.stack-arrow-right {
    right: -70px;
}

.stack-arrow i {
    font-size: 18px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.stack-arrow:hover i {
    color: #fff;
}

/* ========================================
   PROGRESS INDICATOR DOTS
   ======================================== */

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot:hover {
    background: #b0b0b0;
    transform: scale(1.2);
}

.progress-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    #most-bought-looks {
        padding: 60px 0;
    }

    #most-bought-looks .section-title {
        font-size: 32px;
    }

    .card-stack-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }

    .card-stack {
        height: 550px;
    }

    .look-card {
        height: 530px;
    }

    .deck-layer {
        height: 530px;
    }

    .look-card img {
        height: 350px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 14px;
    }

    /* Hide arrows on mobile, rely on swipe */
    .stack-arrow {
        display: none;
    }

    .quantity-badge {
        bottom: 15px;
        right: 15px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .progress-dots {
        gap: 6px;
        margin-top: 20px;
    }

    .progress-dot {
        width: 6px;
        height: 6px;
    }

    .progress-dot.active {
        width: 20px;
    }
}

/* ========================================
   LUXURY HERO WITH PEEK-A-BOO NAVIGATION
   ======================================== */

/* --- Luxury Hero Section --- */
.luxury-hero {
    height: 50vh; /* Responsive height based on viewport */
    min-height: 500px;
    max-height: 700px;
    background: linear-gradient(135deg, #c9b896 0%, #8B7D5B 50%, #a89968 100%);
    background-image: url('images/banner-fashion.JPG');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11.25rem; /* Fixed: was 180px */
}

/* Adjust background position for ultrawide monitors */
@media (min-width: 1600px) {
    .luxury-hero {
        background-position: center 15%;
        max-height: 650px;
    }
}

@media (min-width: 2000px) {
    .luxury-hero {
        background-position: center 10%;
        max-height: 600px;
    }
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem !important; /* Fixed: was 64px */
    line-height: 1.2 !important; /* Fixed line-height */
    font-weight: 600;
    margin-bottom: 0.9375rem; /* Fixed: was 15px */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.125rem; /* Fixed: was 2px */
}

.hero-content p {
    font-size: 1.25rem !important; /* Fixed: was 20px */
    line-height: 1.5 !important; /* Fixed line-height */
    font-weight: 300;
    letter-spacing: 0.0625rem; /* Fixed: was 1px */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Peek-a-Boo Card Navigation --- */
.peek-navigation {
    position: relative;
    margin-top: -220px; /* NEGATIVE MARGIN creates the overlap effect */
    z-index: 10;
    padding-bottom: 20px;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

/* --- Individual Navigation Card --- */
.nav-card {
    flex: 0 0 auto;
    width: 17.5rem !important; /* Fixed: was 280px */
    min-width: 17.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-image {
    position: relative;
    width: 100%;
    height: 23.3333rem; /* Fixed: was aspect-ratio 3/4 of 280px = 373.33px */
    min-height: 23.3333rem;
    max-height: 23.3333rem;
    border-radius: 0.75rem; /* Fixed: was 12px */
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: #fff;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    object-position: center;
    transition: transform 0.4s ease;
}

.card-label {
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.card-number {
    display: block;
    font-size: 14px !important;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-title {
    display: block;
    font-size: 1.375rem !important; /* Fixed: was 22px */
    line-height: 1.3 !important; /* Fixed line-height */
    font-weight: 600;
    letter-spacing: 0.03125rem; /* Fixed: was 0.5px */
}

/* --- Hover Effect: Lift Up --- */
.nav-card:hover {
    transform: translateY(-15px);
}

.nav-card:hover .card-image {
    box-shadow: 0 20px 60px rgba(139, 125, 91, 0.4);
}

.nav-card:hover .card-image img {
    transform: scale(1.05);
}

.nav-card:hover .card-title {
    color: var(--accent);
}

/* --- Active State --- */
.nav-card.active .card-image {
    border: 3px solid var(--accent);
    box-shadow: 0 20px 60px rgba(139, 125, 91, 0.5);
}

.nav-card.active .card-title {
    color: var(--accent);
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .card-row {
        gap: 20px !important;
    }

    .nav-card {
        width: 220px !important;
    }

    .hero-content h1 {
        font-size: 3rem !important; /* Fixed: was 48px */
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 1.125rem !important; /* Fixed: was 18px */
        line-height: 1.5 !important;
    }

    .hero-title {
        font-size: 3rem !important; /* Fixed: was 48px */
        line-height: 1.2 !important;
    }

    .header-overlay h1 {
        font-size: 3rem !important; /* Fixed: was 48px */
        line-height: 1.2 !important;
    }

    .holiday-hero .hero-overlay h1 {
        font-size: 3rem !important; /* Fixed: was 48px */
        line-height: 1.2 !important;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 15px !important;
    }

    .luxury-hero {
        height: 30rem !important; /* Fixed: was 50vh */
        min-height: 30rem !important;
        max-height: 30rem !important;
        margin-bottom: 10rem !important; /* Fixed: was 160px */
        width: 100% !important;
    }

    #hero,
    .page-header,
    .holiday-hero {
        height: 30rem !important; /* Fixed mobile hero height */
        min-height: 30rem !important;
        max-height: 30rem !important;
    }

    .peek-navigation {
        margin-top: -200px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-content h1 {
        font-size: 2.25rem !important; /* Fixed: was 36px */
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 1rem !important; /* Fixed: was 16px */
        line-height: 1.5 !important;
        padding: 0 1.25rem !important; /* Fixed: was 20px */
    }

    .hero-title {
        font-size: 2.25rem !important; /* Fixed: was 36px */
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important; /* Fixed: was 16px */
        line-height: 1.5 !important;
    }

    /* Card Row - Removed old horizontal scroll code - now using grid layout from line 3006+ */

    /* Fix lookbook content on mobile */
    #interactive-lookbook {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .lookbook-slider {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lookbook-slider img,
    .lookbook-slider video {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    /* Additional mobile constraints for all images and content */
    .slider-wrapper,
    .media-slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .media-slide img,
    .media-slide video {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .moodboard-card img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .lookbook-products {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .moodboard-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ensure all sections stay within viewport */
    section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Ensure all images and videos are constrained */
    img, video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix wrapper elements */
    .container,
    #interactive-lookbook .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .luxury-hero {
        height: 25rem !important; /* Fixed: was 40vh */
        min-height: 25rem !important;
        max-height: 25rem !important;
        margin-bottom: 8.75rem !important; /* Fixed: was 140px */
    }

    .peek-navigation {
        margin-top: -180px !important;
        padding-bottom: 60px !important;
    }

    .hero-content h1,
    .hero-title,
    .header-overlay h1,
    .holiday-hero .hero-overlay h1 {
        font-size: 1.75rem !important; /* Fixed: was 28px */
        line-height: 1.2 !important;
    }

    .hero-content p,
    .hero-subtitle,
    .header-overlay p,
    .holiday-hero .hero-overlay p {
        font-size: 0.875rem !important; /* Fixed: was 14px */
        line-height: 1.5 !important;
    }

    .luxury-hero,
    #hero,
    .page-header,
    .holiday-hero {
        height: 25rem !important; /* Fixed: smaller for 480px */
        min-height: 25rem !important;
        max-height: 25rem !important;
    }

    .nav-card {
        width: 160px !important;
    }

    .card-title {
        font-size: 16px !important;
    }

    .card-label {
        margin-top: 15px !important;
    }
}

/* ========================================
   MOBILE MENU HAMBURGER BUTTON - REDESIGNED
   ======================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2001;
    position: relative;
    opacity: 1 !important;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #222 !important;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block !important;
}

header.scrolled .mobile-menu-toggle {
    background-color: rgba(255, 255, 255, 0.95);
}

header.scrolled .mobile-menu-toggle span {
    background-color: #222 !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 968px) {
    /* Mobile Menu Toggle - Show on tablets and below */
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        left: 20px;
        top: 20px;
        z-index: 3000;
    }

    /* Header Adjustments */
    header {
        padding: 15px 0 !important;
    }

    .nav-wrapper {
        position: relative;
        justify-content: center;
    }

    /* HIDE LOGO ON MOBILE */
    .logo {
        display: none !important;
    }

    /* Hide desktop navigation on mobile */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* Show navigation when menu is open */
    .nav-left.active,
    .nav-right.active {
        display: flex !important;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        z-index: 2500;
        padding: 40px;
        animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-left.active {
        top: 0;
        padding-top: 80px;
        padding-bottom: 120px; /* Space for nav-right at bottom */
        justify-content: flex-start;
        height: 100vh;
        overflow-y: auto;
        border-bottom: none;
    }

    .nav-right.active {
        bottom: 0;
        padding-top: 15px;
        padding-bottom: 30px;
        justify-content: center;
        height: auto;
        border-top: 1px solid rgba(176, 124, 86, 0.3);
        animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        background: #ffffff;
        flex-direction: row;
        gap: 30px;
    }

    /* Mobile navigation links - Simple & Clean */
    .nav-left a,
    .nav-right a:not([target="_blank"]) {
        color: var(--text-primary) !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        font-family: var(--font-body) !important;
        margin: 0 0 18px 0 !important;
        padding: 8px 20px !important;
        text-shadow: none !important;
        width: auto !important;
        text-align: center !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        display: block !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 3 !important;
        text-decoration: none !important;
        background-color: transparent !important;
        user-select: none !important;
    }

    .nav-left a::after,
    .nav-right a:not([target="_blank"])::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 2px;
        background: var(--accent);
        transition: transform 0.3s ease;
    }

    .nav-left a:hover,
    .nav-right a:not([target="_blank"]):hover {
        color: var(--accent) !important;
    }

    .nav-left a:hover::after,
    .nav-right a:not([target="_blank"]):hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-right a[target="_blank"] {
        margin: 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 3 !important;
        position: relative !important;
        transition: all 0.3s ease;
    }

    .nav-right a[target="_blank"]:hover i {
        color: var(--accent) !important;
        transform: scale(1.2);
    }

    .nav-right i {
        font-size: 26px;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 20px !important;
    }

    /* Hero Section */
    #hero {
        height: 35rem !important;
        min-height: 35rem !important;
        max-height: 35rem !important;
    }

    .hero-content {
        padding: 30px 40px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 0.1rem !important;
        margin-bottom: 15px !important;
    }

    .hero-subtitle {
        font-size: 1.125rem !important;
        margin-bottom: 30px !important;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 11px;
    }

    /* Section Titles */
    .section-title-cinzel {
        font-size: 1.75rem !important;
        letter-spacing: 0.1rem !important;
        margin-bottom: 40px !important;
    }

    /* December Picks / Card Row - IMPROVED MOBILE LAYOUT */
    #trending {
        padding: 60px 0;
    }

    .card-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 20px !important;
        overflow: visible !important;
        justify-content: center !important;
    }

    .nav-card {
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .card-image {
        height: 16rem !important;
        min-height: 16rem !important;
        max-height: 16rem !important;
    }

    .card-title {
        font-size: 1rem !important;
    }

    .card-number {
        font-size: 12px !important;
    }

    .card-label {
        margin-top: 12px !important;
    }

    /* Browse Collection Grid */
    #browse-collection {
        padding: 60px 0;
    }

    .browse-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .browse-card {
        height: 280px !important;
    }

    .browse-card-title {
        font-size: 1.375rem !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .browse-cta span {
        font-size: 0.75rem;
        padding: 8px 20px;
    }

    /* Mission Banner */
    #mission-banner {
        flex-direction: column !important;
        padding: 50px 20px !important;
        gap: 30px !important;
    }

    .mission-image {
        max-width: 100% !important;
    }

    .mission-image img {
        max-height: 400px !important;
    }

    .mission-content {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .mission-content h2 {
        font-size: 2rem !important;
        letter-spacing: 0.1rem !important;
        margin-bottom: 20px !important;
    }

    .mission-content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 25px !important;
    }

    .btn-mission {
        padding: 12px 28px;
        font-size: 12px;
    }

    /* PEEK-A-BOO NAVIGATION - FIX FOR MOBILE */
    .peek-navigation {
        margin-top: -180px !important;
        padding-bottom: 60px !important;
    }

    .peek-navigation .card-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }

    .peek-navigation .nav-card {
        width: 100% !important;
        min-width: auto !important;
    }

    .peek-navigation .card-image {
        height: 14rem !important;
        min-height: 14rem !important;
        max-height: 14rem !important;
    }

    /* LOOKBOOK SECTIONS - FIX VISIBILITY */
    #interactive-lookbook {
        padding: 40px 0 60px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* FORCE RESET: Parent Container - Disable Grid, Enable Flexbox Column */
    .lookbook-content.active {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-auto-flow: unset !important;
        gap: 0 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }

    /* Header */
    .lookbook-header {
        padding: 1.5rem 0 !important;
        margin-bottom: 1rem !important;
        order: 0 !important;
        width: 100% !important;
    }

    .lookbook-title {
        font-size: 1.5rem !important;
    }

    /* FORCE RESET: Video Slider */
    .lookbook-slider {
        flex: none !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        height: 45rem !important;
        min-height: 45rem !important;
        max-height: 45rem !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        overflow: hidden !important;
        order: 1 !important;
        grid-area: unset !important;
    }

    /* FORCE RESET: Pagination Dots - Kill Absolute Positioning */
    .slider-dots {
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        transform: none !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 10px auto !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        width: 100% !important;
        text-align: center !important;
        order: 2 !important;
        z-index: 10 !important;
        grid-area: unset !important;
    }

    /* FORCE VISIBLE: Dot Colors - Dark Gold on White */
    .slider-dots span,
    .slider-dots .dot,
    .slider-dots button {
        background: #A89060 !important;
        background-color: #A89060 !important;
        border: 2px solid #8B7355 !important;
        width: 12px !important;
        height: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .slider-dots .dot:hover,
    .slider-dots span:hover {
        background: #8B7355 !important;
        background-color: #8B7355 !important;
        border-color: #6B5335 !important;
    }

    .slider-dots .dot.active,
    .slider-dots span.active {
        background: #8B7355 !important;
        background-color: #8B7355 !important;
        border-color: #6B5335 !important;
        width: 14px !important;
        height: 14px !important;
    }

    /* Hide Lead Paragraph */
    .lead-paragraph {
        display: none !important;
    }

    /* FORCE RESET: Thumbnails - Remove Negative Margins & Absolute Positioning */
    .thumbnail-preview-section {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 20px auto !important;
        padding: 0 15px !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 9999 !important;
        order: 3 !important;
        grid-area: unset !important;
    }

    .preview-thumbnail {
        width: 90px !important;
        height: 135px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Products Section */
    .lookbook-products {
        width: 100% !important;
        padding: 20px 15px !important;
        margin-top: 0 !important;
        order: 4 !important;
        position: relative !important;
        grid-area: unset !important;
    }

    .lookbook-products h3 {
        font-size: 1.25rem !important;
        margin-bottom: 25px !important;
    }

    .moodboard-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .moodboard-card img {
        height: 14rem !important;
        min-height: 14rem !important;
        max-height: 14rem !important;
    }

    /* Footer */
    footer {
        padding: 40px 0 !important;
    }

    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .footer-right {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 15px !important;
    }

    /* Hero */
    #hero {
        height: 28rem !important;
        min-height: 28rem !important;
        max-height: 28rem !important;
    }

    .hero-content {
        padding: 25px 30px;
    }

    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    /* Section Spacing */
    #trending,
    #browse-collection {
        padding: 50px 0 !important;
    }

    .section-title-cinzel {
        font-size: 1.5rem !important;
        margin-bottom: 35px !important;
    }

    /* Card Row - SINGLE COLUMN ON SMALL PHONES */
    .card-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .nav-card {
        width: 100% !important;
        min-width: auto !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    .card-image {
        height: 18rem !important;
        min-height: 18rem !important;
        max-height: 18rem !important;
    }

    .card-title {
        font-size: 1.125rem !important;
    }

    .card-number {
        font-size: 12px !important;
    }

    /* Peek Navigation - Single Column */
    .peek-navigation .card-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .peek-navigation .card-image {
        height: 16rem !important;
        min-height: 16rem !important;
        max-height: 16rem !important;
    }

    /* Lookbook - Adjust for small screens */
    .lookbook-slider {
        height: 24rem !important;
        min-height: 24rem !important;
        max-height: 24rem !important;
    }

    .moodboard-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .moodboard-card img {
        height: 18rem !important;
        min-height: 18rem !important;
        max-height: 18rem !important;
    }

    /* Browse Grid - Single column on very small screens */
    .browse-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .browse-card {
        height: 320px !important;
    }

    /* Mission Banner */
    #mission-banner {
        padding: 40px 15px !important;
    }

    .mission-content h2 {
        font-size: 1.75rem !important;
    }

    .mission-content p {
        font-size: 14px !important;
    }

    /* Mobile Menu - Keep full-screen on small devices */
    .nav-left,
    .nav-right {
        width: 100% !important;
        padding: 60px 30px !important;
    }

    .nav-left a,
    .nav-right a:not([target="_blank"]) {
        font-size: 20px !important;
    }

    .mobile-menu-toggle {
        left: 15px;
    }

    .logo {
        height: 50px !important;
    }
}