/* ==========================================================================
   LOUIS VUITTON CLONE - CUSTOM LUXURY STYLESHEET
   Colors: Cream (#F3E9D2) and Dark Charcoal (#111111)
   ========================================================================== */

:root {
    --cream: #F3E9D2;
    --dark: #111111;
    --cream-darker: #e2d7be;
    --dark-lighter: #222222;
    --white: #ffffff;
    --gray-light: #faf7f0;
    --gray-muted: #777777;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* Zero border-radius is a key LV signature */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--cream);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cream-darker);
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.05em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Utility Elements */
.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 40px 20px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--cream);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background-color: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(243, 233, 210, 0.15);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid rgba(243, 233, 210, 0.15);
    transition: var(--transition-smooth);
}

/* When header becomes scrolled/sticky */
.main-header.scrolled {
    background-color: var(--dark);
    color: var(--cream);
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(243, 233, 210, 0.1);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 95px;
    max-width: 1440px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 30%;
}

.header-right {
    justify-content: flex-end;
}

.header-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.header-logo a {
    pointer-events: auto;
    display: inline-block;
}

.logo-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo-img-header {
    height: 80px;
    max-height: 80px;
    object-fit: contain;
    mix-blend-mode: multiply;
    vertical-align: middle;
    transition: var(--transition-smooth);
    display: block;
    margin: 0 auto;
}

.main-header.scrolled .logo-img-header {
    height: 60px;
    max-height: 60px;
    filter: invert(1) brightness(1.2);
    mix-blend-mode: screen;
}

.main-header.scrolled .header-container {
    height: 75px;
}

.logo-img-footer {
    height: 90px;
    max-height: 90px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
    mix-blend-mode: screen;
    vertical-align: middle;
}

.main-header.scrolled .logo-link {
    color: var(--cream);
}

/* Header Action Controls */
.nav-toggle, .search-toggle, .bag-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.header-link {
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* Hamburger Icon styling */
.hamburger {
    display: block;
    width: 16px;
    height: 1px;
    background-color: var(--cream);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--cream);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before { top: -5px; }
.hamburger::after { top: 5px; }

/* Secondary Navigation on Desktop */
.desktop-nav {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(243, 233, 210, 0.1);
    background-color: transparent;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 12px 0;
}

.nav-link-item {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--cream);
    padding: 5px 0;
    position: relative;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--cream);
    transition: var(--transition-smooth);
}

.nav-link-item:hover::after {
    width: 100%;
}

/* Responsive Utilities for Header */
@media (max-width: 1024px) {
    .hide-mobile {
        display: none !important;
    }
    .header-left, .header-right {
        width: auto;
        gap: 15px;
    }
    .nav-text {
        display: none;
    }

    .logo-link {
        font-size: 1.3rem;
        letter-spacing: 0.2em;
    }
    .header-container {
        padding: 10px 20px;
        height: 75px;
    }
    .logo-img-header {
        height: 55px;
        max-height: 55px;
    }
    .main-header {
        top: 0;
    }
}
/* ==========================================================================
   NEW 7-SECTION WIREFRAME HOMEPAGE LAYOUT
   ========================================================================== */

/* Section Margins and Consistent Padding */
.section-padding {
    padding: 80px 40px;
}

/* Hero Section & Sliding Carousel */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.hero-carousel-indicators .indicator {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(243, 233, 210, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.hero-carousel-indicators .indicator:hover,
.hero-carousel-indicators .indicator.active {
    color: var(--cream);
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    color: var(--cream);
    max-width: 800px;
    padding: 0 20px;
    z-index: 5;
}

.hero-content .subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--cream);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: var(--cream);
}

.shop-all-btn {
    padding: 16px 45px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 0;
    border: 1px solid var(--cream);
    background-color: var(--cream);
    color: var(--dark);
    transition: var(--transition-smooth);
}

.shop-all-btn:hover {
    background-color: transparent;
    color: var(--cream);
}

/* Category Quick Access Row */
.category-row-section {
    width: 100%;
    background-color: var(--cream);
    margin-top: 20px;
}

.category-row-container {
    display: flex;
    width: 100%;
    height: 320px;
    gap: 10px;
}

.category-row-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-row-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-row-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.category-row-overlay h3 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--cream);
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.category-row-item:hover .category-row-bg {
    transform: scale(1.05);
}

.category-row-item:hover .category-row-overlay {
    background-color: rgba(17, 17, 17, 0.35);
}

.category-row-item:hover .category-row-overlay h3 {
    border-color: var(--cream);
    letter-spacing: 0.3em;
}

/* Split Showcase Feature Layout */
.homepage-feature-section {
    background-color: var(--cream);
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.homepage-feature-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    gap: 15px;
}

.homepage-feature-container.reversed {
    grid-template-columns: 2fr 1fr;
}

.feature-lifestyle-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    cursor: pointer;
    overflow: hidden;
}

.feature-lifestyle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0) 70%);
    z-index: 1;
}

.feature-lifestyle-content {
    position: relative;
    z-index: 2;
    color: var(--cream);
    max-width: 500px;
}

.feature-lifestyle-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.explore-btn-luxury {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--cream);
    padding-bottom: 6px;
    transition: var(--transition-smooth);
}

.feature-lifestyle-card:hover .explore-btn-luxury {
    letter-spacing: 0.25em;
    padding-bottom: 4px;
}

/* Feature Products Grid */
.feature-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 100%;
}

.homepage-feature-container.layout-shoes .feature-products-grid,
.homepage-feature-container.layout-accessories .feature-products-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Three-column layout fallback for other pages */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    width: 100%;
}

.category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--dark-lighter);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--cream);
    z-index: 3;
}

.category-card h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    color: var(--cream);
}

.category-card .explore-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

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

.category-card:hover .explore-link {
    opacity: 1;
}

/* Louis Vuitton Product Card System (Collections Page) */
.lv-product-card__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    cursor: pointer;
    width: 100%;
}

.lv-product-card__info-wrapper {
    order: 2;
    padding: 15px 12px 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    z-index: 5;
    width: 100%;
    box-sizing: border-box;
}

.lv-product-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
    width: 100%;
}

.lv-product-card-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-lighter);
    opacity: 0.8;
}

.lv-product-card__name-wrapper {
    margin: 0;
    min-height: 2.6em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.lv-product-card__name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

.lv-product-card__url {
    color: var(--dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lv-product-card__url:hover {
    opacity: 0.7;
}

.lv-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark-lighter);
}

.lv-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
    width: 100%;
}

.lv-wishlist-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark-lighter);
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.lv-wishlist-btn:hover {
    color: #c0392b;
    transform: scale(1.15);
}

.lv-addbag-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark-lighter);
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.lv-addbag-btn:hover {
    color: var(--dark);
    transform: scale(1.15);
}

.lv-addbag-btn:active {
    transform: scale(0.95);
}

.lv-make-it-yours-btn {
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
    padding: 8px 18px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.lv-make-it-yours-btn:hover {
    background-color: var(--dark);
    color: var(--cream);
}

.lv-make-it-yours-btn:active {
    transform: scale(0.97);
}

/* Color Variant Swatches */
.lv-product-card__variants {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 4px 0;
    min-height: 24px;
}

.color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px rgba(17,17,17,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 1.5px rgba(17,17,17,0.5);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--dark);
    transform: scale(1.15);
}

.color-swatch-large {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.color-swatch-large:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 1.5px rgba(17, 17, 17, 0.4);
}

.color-swatch-large.active {
    box-shadow: 0 0 0 2px var(--dark);
    transform: scale(1.1);
}

/* Media & Mini Slider Area */
.lv-product-card__media {
    order: 1;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--cream);
    width: 100%;
}

.lv-mini-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.lv-mini-slider__scrollpane {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.lv-mini-slider__items {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: static;
}

.lv-mini-slider__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.lv-mini-slider__item > div {
    width: 100%;
    height: 100%;
}

.lv-mini-slider__item.active {
    opacity: 1;
    z-index: 2;
}

/* Sibling combinator hover swap: if Slide 1 is active, and card is hovered, swap Slide 1 for Slide 2 */
.lv-product-card__wrap:hover .lv-mini-slider__item:nth-child(1).active {
    opacity: 0;
    z-index: 1;
}

.lv-product-card__wrap:hover .lv-mini-slider__item:nth-child(1).active ~ .lv-mini-slider__item:nth-child(2) {
    opacity: 1;
    z-index: 3;
}

.lv-product-card__wrap:hover .lv-mini-slider__item.active {
    transform: scale(1.04);
}

/* Allow hovered sibling slide to scale too when hovered */
.lv-product-card__wrap:hover .lv-mini-slider__item:nth-child(2) {
    transform: scale(1.04);
}

.lv-product-picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.lv-product-picture picture {
    display: block;
    width: 100%;
    height: 100%;
}

.lv-smart-picture__object {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}



/* Brand/Story Section */
.brand-story-section {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.story-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.story-content {
    max-width: 750px;
    padding: 40px;
    color: var(--cream);
    z-index: 5;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 15px 0;
    color: var(--cream);
}

.story-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
}

/* Bottom Promo Section (Split Layout) */
.bottom-promo-section {
    background-color: var(--cream);
    margin-bottom: 40px;
}

.promo-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
    width: 100%;
}

.promo-left-graphic {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--dark-lighter);
}

.promo-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-right-text {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: var(--dark-lighter);
    border: 1px solid rgba(243, 233, 210, 0.12);
    color: var(--cream);
}

.promo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-text-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
}

.promo-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
    font-weight: 300;
}

/* Catalog Drawer Specific Styles */
#catalog-drawer .product-card {
    background-color: var(--dark-lighter);
    border-color: rgba(243, 233, 210, 0.1);
}

#catalog-drawer .product-info {
    background-color: var(--dark-lighter);
}

#catalog-drawer .product-name, #catalog-drawer .product-price {
    color: var(--cream);
}

/* Responsive Grid Overrides */
@media (max-width: 992px) {
    .three-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .promo-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .section-padding {
        padding: 40px 20px;
    }
    .hero-section {
        height: 60vh;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-title-small {
        font-size: 1.6rem;
    }
    .brand-story-section {
        height: auto;
        padding: 60px 0;
        margin-bottom: 40px;
    }
    .story-content h2 {
        font-size: 1.8rem;
    }
    .promo-right-text {
        padding: 30px 20px;
    }
    .promo-text-wrapper h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 14px;
    }
    .product-info {
        padding: 12px 8px;
    }
    .product-name {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
        margin-bottom: 5px;
    }
    .product-price {
        font-size: 0.75rem;
    }
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }
    /* LV cards — 2 columns on tablet */
    .lv-product-card__name {
        font-size: 0.75rem;
    }
    .lv-price {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .product-info {
        padding: 20px 15px;
    }
    .product-name {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .product-price {
        font-size: 1rem;
    }
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Product Showcase */
.product-showcase {
    background-color: var(--cream);
}

.section-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 1px solid rgba(17, 17, 17, 0.2);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 28px;
    align-items: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--gray-light);
    border: 1px solid rgba(17, 17, 17, 0.05);
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    box-sizing: border-box;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--dark);
    color: var(--cream);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    text-transform: uppercase;
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    color: var(--cream);
    border: none;
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
    text-align: center;
    background-color: var(--gray-light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

/* Editorial Film Banner */
.editorial-banner {
    background-image: linear-gradient(rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.5)), url('assets/img10.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-overlay {
    text-align: center;
    color: var(--cream);
    max-width: 700px;
    padding: 0 20px;
}

.banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-overlay p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Footer Section */
.footer {
    background-color: var(--dark);
    color: var(--cream);
    border-top: 1px solid rgba(243, 233, 210, 0.15);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(243, 233, 210, 0.7);
}

.footer-column ul li a:hover {
    color: var(--cream);
    padding-left: 5px;
}

.newsletter-col p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(243, 233, 210, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    background-color: transparent;
    border: 1px solid rgba(243, 233, 210, 0.3);
    border-right: none;
    color: var(--cream);
    padding: 12px 15px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    flex-grow: 1;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(243, 233, 210, 0.4);
}

.newsletter-submit {
    background-color: var(--cream);
    color: var(--dark);
    border: 1px solid var(--cream);
    padding: 0 20px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-submit:hover {
    background-color: var(--dark);
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(243, 233, 210, 0.1);
    padding: 30px 40px;
}

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(243, 233, 210, 0.6);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    color: var(--cream);
}

.legal-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DRAWERS & INTERACTIVE OVERLAYS
   ========================================================================== */

/* Backdrop Overlay */
.backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(5px);
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Drawer Component Base */
.drawer {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 480px;
    background-color: var(--dark);
    color: var(--cream);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.drawer-left {
    left: 0;
    transform: translateX(-100%);
    border-right: 1px solid rgba(243, 233, 210, 0.1);
}

.drawer-right {
    right: 0;
    transform: translateX(100%);
    border-left: 1px solid rgba(243, 233, 210, 0.1);
}

/* Open states */
.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(243, 233, 210, 0.1);
}

.drawer-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--cream);
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    opacity: 0.7;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

/* Left Menu Navigation Items */
.drawer-nav {
    list-style: none;
}

.drawer-nav li {
    margin-bottom: 25px;
}

.drawer-nav-item {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    padding: 5px 0;
}

.drawer-nav-item:hover, .drawer-nav-item.active-cat {
    color: var(--white);
    padding-left: 8px;
}

.drawer-nav li.divider {
    height: 1px;
    background-color: rgba(243, 233, 210, 0.15);
    margin: 30px 0;
}

.drawer-nav-item.secondary-link {
    font-size: 0.8rem;
    color: rgba(243, 233, 210, 0.6);
}

/* Right Shopping Bag Drawer Items */
.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.empty-cart-message {
    text-align: center;
    margin: auto 0;
    padding: 40px 0;
}

.empty-cart-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart-message p {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    color: rgba(243, 233, 210, 0.7);
}

.cart-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(243, 233, 210, 0.1);
    padding-bottom: 20px;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    background-color: var(--cream);
}

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

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--cream-darker);
}

.cart-item-quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(243, 233, 210, 0.25);
    width: fit-content;
    margin-top: 10px;
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--cream);
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

.quantity-value {
    padding: 0 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(243, 233, 210, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-top: 10px;
    text-align: left;
    width: fit-content;
}

.cart-item-remove:hover {
    color: var(--cream);
}

.drawer-footer {
    padding: 30px;
    border-top: 1px solid rgba(243, 233, 210, 0.1);
    background-color: var(--dark-lighter);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.cart-tax-notice {
    font-size: 0.7rem;
    color: rgba(243, 233, 210, 0.5);
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
}

/* ==========================================================================
   FULL SCREEN SEARCH OVERLAY
   ========================================================================== */
.search-overlay-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark);
    color: var(--cream);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.search-overlay-drawer.open {
    opacity: 1;
    pointer-events: auto;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(243, 233, 210, 0.2);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 40px;
    position: relative;
}

.search-input-icon {
    font-size: 1.3rem;
    margin-right: 15px;
    color: rgba(243, 233, 210, 0.6);
}

#search-input {
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 300;
    flex-grow: 1;
    outline: none;
    width: 100%;
}

#search-input::placeholder {
    color: rgba(243, 233, 210, 0.3);
}

.search-clear-btn {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0 10px;
}

.search-close {
    background: none;
    border: 1px solid rgba(243, 233, 210, 0.4);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-close:hover {
    background-color: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
}

.search-results-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.search-suggestions h4, .search-results-container h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: rgba(243, 233, 210, 0.5);
    text-transform: uppercase;
}

.search-suggestions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggestion-link {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--cream);
}

.suggestion-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   PRODUCT MODAL (QUICK VIEW)
   ========================================================================== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 0;
}

.product-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--cream);
    color: var(--dark);
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    position: relative;
    box-shadow: none;
    animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
    z-index: 100;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    height: 100%;
}

.modal-gallery {
    background-color: #d7cca8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    image-rendering: -webkit-optimize-contrast;
}

.modal-details {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    overflow-y: auto;
}

.modal-brand {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    color: var(--gray-muted);
}

.modal-title {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.modal-price {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.modal-divider {
    height: 1px;
    background-color: rgba(17, 17, 17, 0.15);
    margin-bottom: 25px;
}

.modal-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-meta {
    margin-bottom: 35px;
    font-size: 0.75rem;
}

.meta-item {
    margin-bottom: 8px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-actions .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .modal-gallery {
        height: 50vh;
    }
    .modal-gallery img {
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .modal-details {
        padding: 30px;
        height: auto;
        overflow-y: visible;
    }
    .product-modal {
        overflow-y: auto;
        align-items: flex-start;
    }
    .modal-content {
        margin-top: 0;
        height: auto;
    }
    .modal-close {
        top: 20px;
        right: 20px;
        color: var(--dark);
        background-color: var(--cream);
        border-radius: 50% !important;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
}

/* ==========================================================================
   VIDEO FILM MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 11, 11, 0.95);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: var(--cream);
    padding: 40px;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--cream);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-placeholder h3 {
    margin-bottom: 10px;
    letter-spacing: 0.25em;
}

.video-placeholder p {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 30px;
}

.loading-bar-container {
    width: 250px;
    height: 2px;
    background-color: rgba(243, 233, 210, 0.15);
    margin: 0 auto;
}

.loading-bar {
    width: 60%;
    height: 100%;
    background-color: var(--cream);
    animation: loadingAnim 3s infinite linear;
}

@keyframes loadingAnim {
    0% { transform: translateX(-100%); width: 30%; }
    50% { width: 70%; }
    100% { transform: translateX(350%); width: 30%; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--dark);
    color: var(--cream);
    border: 1px solid var(--cream);
    padding: 15px 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
    from {
        transform: translateY(100%) translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   PRODUCT PAGE SPLIT SCROLL & ACCORDIONS (LV STYLE)
   ========================================================================== */

.product-gallery-container {
    display: flex;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.product-thumbnails-list {
    list-style: none;
    margin: 0;
    margin-left: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
    flex-shrink: 0;
    margin-right: 10px;
    position: sticky;
    top: 160px;
    z-index: 10;
}

.product-thumbnail-item {
    width: 60px;
    height: 60px;
    border: 1px solid #111111;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: border-color 0.2s, transform 0.2s, border-width 0.2s, box-shadow 0.2s;
}

.product-thumbnail-item.active {
    border: 2.5px solid #111111;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-thumbnail-item:hover {
    border-color: #111111;
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.product-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    overflow: visible;
}

.product-gallery-scroll img {
    display: block;
    width: 100%;
    max-width: 569px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 24px;
    box-sizing: border-box;
    image-rendering: -webkit-optimize-contrast;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.sticky-detail-panel {
    position: sticky;
    top: 140px;
    height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 40px 40px 60px 40px;
    justify-content: flex-start !important;
}

.sticky-detail-panel::-webkit-scrollbar {
    width: 4px;
}
.sticky-detail-panel::-webkit-scrollbar-track {
    background: transparent;
}
.sticky-detail-panel::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.15);
}

/* Size Selector Buttons */
.product-size-selector {
    margin-bottom: 35px;
}

.product-size-selector .selector-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray-muted);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.size-options-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    background: none;
    border: 1px solid rgba(17, 17, 17, 0.15);
    color: var(--dark);
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 60px;
    text-align: center;
}

.size-btn:hover {
    border-color: var(--dark);
}

.size-btn.active {
    background-color: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}

/* Louis Vuitton Expandable Accordions */
.product-accordions {
    margin-top: 40px;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.product-accordions details {
    border-bottom: 1px solid rgba(17, 17, 17, 0.15);
    padding: 15px 0;
}

.product-accordions summary {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    padding: 5px 0;
}

/* Remove default triangle in chrome/safari */
.product-accordions summary::-webkit-details-marker {
    display: none;
}

.product-accordions summary::after {
    content: '+';
    font-size: 1rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.product-accordions details[open] summary::after {
    content: '−';
}

.product-accordions .accordion-text {
    padding-top: 15px;
    font-size: 0.85rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--dark-lighter);
}

/* Responsive Split Scroll Mobile Handling */
@media (max-width: 768px) {
    .product-gallery-container {
        flex-direction: column-reverse;
        gap: 15px !important;
        width: 100%;
    }
    
    .product-thumbnails-list {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 5px;
        position: static !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .product-gallery-scroll {
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 0 !important;
        height: auto !important;
        border-bottom: 1px solid rgba(17, 17, 17, 0.05);
        max-width: 100vw;
        min-width: 0;
    }

    .product-gallery-scroll img {
        min-width: 100vw !important;
        width: 100vw !important;
        height: 100vw !important;
        max-height: none;
        object-fit: contain;
        padding: 20px;
        box-sizing: border-box;
        scroll-snap-align: start;
        background-color: #ffffff;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .sticky-detail-panel {
        position: static;
        height: auto;
        overflow-y: visible;
        padding: 40px 20px;
    }
    
    .product-page-content {
        margin-top: 115px !important;
    }

    /* Mobile Homepage Layout Overrides */
    .hero-section, .hero-carousel-wrapper {
        height: 85vh;
    }
    .hero-carousel-indicators {
        bottom: 25px;
        right: 30px;
        gap: 15px;
    }
    .hero-carousel-indicators .indicator {
        font-size: 1.5rem;
    }
    .category-row-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .category-row-item {
        height: 160px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    }
    .category-row-item:nth-child(even) {
        border-right: none;
    }
    .homepage-feature-container {
        grid-template-columns: 1fr;
    }
    .homepage-feature-container.reversed {
        display: flex;
        flex-direction: column;
    }
    .homepage-feature-container.reversed .feature-lifestyle-card {
        order: 2;
    }
    .homepage-feature-container.reversed .feature-products-grid {
        order: 1;
    }
    .feature-lifestyle-card {
        min-height: 400px;
        padding: 40px 25px;
    }
    .feature-lifestyle-content h2 {
        font-size: 1.6rem;
    }
    .feature-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card Media Absolute Interaction Overlay Buttons */
.lv-product-card__media .lv-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #111111;
    font-size: 1.15rem;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
}
.lv-product-card__media .lv-wishlist-btn:hover {
    color: #c0392b;
    transform: scale(1.25);
}
.lv-product-card__media .lv-addbag-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #111111;
    font-size: 1.1rem;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
}
.lv-product-card__media .lv-addbag-btn:hover {
    color: #555555;
    transform: scale(1.25);
}
