:root {
    --lux-blue: #00122e;
    --lux-gold: #c5a059;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================= */
/* 0. GLOBAL PRESETS                         */
/* ========================================= */
html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

a {
    text-decoration: none !important;
}

/* Serif Font utility */
.serif-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ========================================= */
/* 1. DESKTOP HEADER NAVIGATION              */
/* ========================================= */
.lux-nav-v3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 5000;
    list-style: none !important;
    mix-blend-mode: difference;
    color: white;
    pointer-events: auto;
}

.lux-nav-v3 .logo {
    height: 75px;
    filter: brightness(100);
}

.lux-nav-v3 .nav-left,
.lux-nav-v3 .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.lux-nav-v3 a {
    text-decoration: none;
    color: inherit;
}

.lux-nav-v3 .hamburger {
    cursor: pointer;
}

.lux-nav-v3 .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: white;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .lux-nav-v3 {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ========================================= */
/* 1.5 MOBILE HEADER NAVIGATION              */
/* ========================================= */
.lux-nav-v3-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 5000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.lux-nav-v3-mobile .logo {
    height: 55px;
    filter: brightness(100);
}

@media (min-width: 992px) {
    .lux-nav-v3-mobile {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ========================================= */
/* 2. ZARA-STYLE 80% MEGA MENU               */
/* ========================================= */

/* Dark Overlay Behind Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The 80% Menu Drawer */
.zara-mega-menu {
    position: fixed;
    top: 0;
    left: -85vw;
    /* Hidden off-screen */
    width: 80vw;
    max-width: 1200px;
    height: 100vh;
    background: #fff;
    z-index: 6000;
    color: #000;
    transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.zara-mega-menu.open {
    left: 0;
}

/* Menu Header */
.zara-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    height: 85px;
    flex-shrink: 0;
}

.zara-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zara-close-btn svg {
    width: 45px;
    height: 45px;
}

/* Huge thin cross */
.zara-menu-logo {
    height: 45px;
    filter: brightness(0);
}

/* Split Pane Body */
.zara-menu-body {
    display: flex;
    width: 100%;
    height: calc(100vh - 85px);
    padding: 20px 40px 40px;
}

/* Left Pane (Fixed) */
.zara-menu-left {
    width: 30%;
    flex-shrink: 0;
    padding-right: 20px;
}

.main-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-cat-list li {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #000;
    transition: 0.3s;
}

.main-cat-list li .dot {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.main-cat-list li.active .dot {
    opacity: 1;
    transform: translateX(0);
}

.main-cat-list li:hover {
    color: var(--lux-gold);
}

/* Right Pane (Scrollable) */
.zara-menu-right {
    width: 70%;
    overflow-y: auto;
    padding-right: 30px;
}

/* Custom Tiny Scrollbar matching Zara */
.zara-menu-right::-webkit-scrollbar {
    width: 2px;
}

.zara-menu-right::-webkit-scrollbar-track {
    background: transparent;
}

.zara-menu-right::-webkit-scrollbar-thumb {
    background: #000;
}

/* Sub-Menu Layout Grid */
.zara-sub-row {
    display: flex;
    gap: 40px;
}

.zara-sub-col {
    min-width: 150px;
}

.sub-col-id {
    font-size: 9px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 25px;
    display: block;
    white-space: nowrap;
}

.sub-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-cat-list li {
    margin-bottom: 15px;
}

.sub-cat-list a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333;
    transition: 0.3s;
}

.sub-cat-list a:hover {
    color: #000;
    font-weight: 500;
}

.new-tag {
    font-size: 8px;
    margin-left: 5px;
    vertical-align: super;
}

/* Menu Tabs Logic */
.menu-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Editorial Thumbnails */
.zara-thumb-col {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.thumb-box {
    display: flex;
    flex-direction: column;
    width: 90px;
}

.thumb-box img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin-bottom: 10px;
}

.thumb-box span {
    font-size: 8px;
    letter-spacing: 1px;
    color: #333;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .zara-mega-menu {
        width: 100vw;
        max-width: 100%;
        left: -100vw;
    }

    /* Full screen on mobile */
    .zara-menu-header {
        padding: 15px 20px;
    }

    .zara-menu-body {
        flex-direction: column;
        padding: 10px 20px 40px;
        overflow-y: auto;
    }

    .zara-menu-left {
        width: 100%;
        padding: 0 0 30px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 30px;
    }

    .zara-menu-right {
        width: 100%;
        overflow-y: visible;
        padding: 0;
    }

    .zara-sub-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* ========================================= */
/* 3. MOBILE BOTTOM APP BAR                  */
/* ========================================= */
@media (min-width: 992px) {
    .mobile-app-nav {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mobile-app-nav {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #fff;
        height: 75px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #eaeaea;
        z-index: 4000;
        padding-bottom: env(safe-area-inset-bottom);
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    width: 20%;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Floating Search Button */
.search-float {
    position: relative;
}

.search-circle {
    width: 55px;
    height: 55px;
    background: var(--lux-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -10px;
    box-shadow: 0 8px 20px rgba(0, 18, 46, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.search-circle:hover {
    transform: scale(1.05);
}

.search-circle svg {
    width: 24px;
    height: 24px;
    margin: 0;
}

/* ========================================= */
/* 4. FULL SCREEN SEARCH OVERLAY             */
/* ========================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    overflow-y: auto;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-search-btn {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.search-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 100px 40px;
}

.search-nav-left,
.search-nav-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 15%;
}

.search-nav-right {
    text-align: right;
}

.search-nav-left a,
.search-nav-right a {
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: opacity 0.3s;
}

.search-nav-left a.active {
    font-weight: 700;
}

.search-core {
    width: 70%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    border-bottom: 1px solid;
    margin-bottom: 60px;
    padding-bottom: 15px;
    text-align: center;
}

.mega-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
}

.suggestion-title {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 30px;
}

.suggest-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f0f0f0;
    margin-bottom: 15px;
}

.suggest-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
    text-transform: uppercase;
}

/* Adaptive Theming */
@media (min-width: 992px) {
    .search-overlay {
        background: #ffffff;
        color: #000;
    }

    .close-search-btn {
        color: #000;
        top: 30px;
        right: 40px;
    }

    .search-nav-left a,
    .search-nav-right a,
    .mega-search-input {
        color: #000;
    }

    .input-wrapper {
        border-bottom-color: #ddd;
    }

    .mega-search-input::placeholder {
        color: #888;
    }
}

@media (max-width: 991px) {
    .search-overlay {
        background: #000000;
        color: #fff;
    }

    .close-search-btn {
        color: #fff;
        top: 15px;
        right: 15px;
    }

    .search-layout {
        flex-direction: column;
        padding: 60px 20px;
    }

    .search-nav-left {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        margin-bottom: 80px;
    }

    .search-nav-left a,
    .mega-search-input {
        color: #fff;
    }

    .search-core {
        width: 100%;
        padding: 0;
    }

    .input-wrapper {
        border-bottom-color: #333;
        text-align: left;
    }

    .mega-search-input {
        text-align: left;
    }

    .mega-search-input::placeholder {
        color: #bbb;
    }
}

/* ========================================= */
/* 5. HERO & CINEMATIC VIDEO SECTIONS        */
/* ========================================= */
/* Hero v3 (First Section) */
.hero-v3 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-box h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 200;
    color: white;
    line-height: 0.9;
}

.hero-text-box h1 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    display: block;
    font-size: 0.5em;
}

.btn-main {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    margin: 10px;
    display: inline-block;
    transition: var(--transition-slow);
}

.btn-main:hover {
    background: white;
    color: black;
}

/* Cinematic Fullscreen Video (Second Section) */
.lux-cinematic-video {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--lux-blue);
}

.lux-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lux-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 18, 46, 0.2), rgba(0, 18, 46, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lux-video-content {
    padding: 0 20px;
}

.video-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--lux-gold);
}

.video-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: #fff;
    line-height: 0.9;
    margin-bottom: 20px;
}

.video-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-video-primary,
.btn-video-outline {
    display: inline-block;
    padding: 14px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-video-primary {
    background: #fff;
    color: var(--lux-blue);
}

.btn-video-primary:hover {
    background: var(--lux-gold);
    color: #fff;
}

.btn-video-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-video-outline:hover {
    background: #fff;
    color: var(--lux-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-indicator span {
    color: #fff;
    font-size: 9px;
    letter-spacing: 3px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #fff;
    opacity: 0.7;
    animation: scroll-pulse 2s infinite ease-in-out;
}

@keyframes scroll-pulse {
    0% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0.7;
    }

    50% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    51% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0.7;
    }
}

/* ========================================= */
/* 6. UNIVERSAL PRODUCT CARD STYLING         */
/* ========================================= */
.product-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    flex-grow: 1;
    aspect-ratio: 2 / 3.2;
}

.uniform-box {
    aspect-ratio: 3 / 4 !important;
}

.img-main,
.img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

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

/* Quick Buy Formats */
.quick-buy-overlay {
    position: absolute;
    bottom: -50px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
}

.product-card:hover .quick-buy-overlay {
    bottom: 0;
}

.btn-quick {
    background: var(--lux-blue);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

.quick-add-minimal {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: var(--lux-blue);
    padding: 8px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover .quick-add-minimal {
    opacity: 1;
    transform: translateY(0);
}

/* Meta Text Formats */
.product-meta {
    padding-top: 15px;
    text-align: left;
}

.product-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #000;
}

.product-price {
    font-size: 11px;
    color: #666;
    font-weight: 300;
    margin: 0;
}

.product-info-minimal {
    position: relative;
    padding: 12px 25px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-name {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-header .p-name a {
    text-decoration: none !important;
}

.p-price {
    font-size: 11px;
    color: #333;
    line-height: 1.2;
    margin: 0;
    display: block;
}

/* Category Headers */
.lux-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.grid-title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.grid-link {
    font-size: 10px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #666;
    text-transform: uppercase;
    transition: color 0.3s;
}

.grid-link:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ========================================= */
/* 7. CAROUSEL SECTION                       */
/* ========================================= */
.lux-carousel-section {
    background-color: #fff;
    overflow: hidden;
}

.lux-carousel-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    margin-bottom: 30px;
}

.carousel-controls {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
}

.btn-scroll {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-scroll:hover {
    background: var(--lux-blue);
    color: #fff;
    border-color: var(--lux-blue);
}

.lux-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lux-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    flex-basis: calc(25% - 11.25px);
}

@media (max-width: 991px) {
    .carousel-card {
        flex-basis: calc(33.333% - 10px);
    }
}

@media (max-width: 767px) {
    .lux-carousel-track {
        gap: 8px;
    }

    .carousel-card {
        flex-basis: calc(50% - 4px);
    }
}

/* ========================================= */
/* 8. CAMPAIGN BANNER                        */
/* ========================================= */
.lux-campaign-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.campaign-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
}

.campaign-overlay-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.campaign-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.campaign-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    line-height: 1;
}

.btn-campaign-white {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-campaign-white:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

/* ========================================= */
/* 9. EDITORIAL LOOK SECTION (Hotspots)      */
/* ========================================= */
.editorial-look-section {
    background-color: #fff;
}

.editorial-container {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.editorial-img {
    width: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

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

.editorial-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 10;
    cursor: pointer;
}

.hotspot-pulse {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-white 2s infinite;
}

.hotspot-label {
    position: absolute;
    left: 25px;
    top: -5px;
    background: rgba(0, 18, 46, 0.8);
    color: #fff;
    padding: 5px 12px;
    font-size: 10px;
    white-space: nowrap;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-lux-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--lux-blue);
    color: var(--lux-blue);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.4s;
}

.btn-lux-outline:hover {
    background: var(--lux-blue);
    color: #fff;
}

/* ========================================= */
/* 10. INLINE SIZE SELECTOR                  */
/* ========================================= */
.product-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}


.inline-size-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    max-height: 260px;
    overflow-y: auto;
}

/* Custom Scrollbar for the popup */
.inline-size-popup::-webkit-scrollbar {
    width: 6px;
}

.inline-size-popup::-webkit-scrollbar-track {
    background: transparent;
    margin-top: 10px;
    margin-bottom: 10px;
}

.inline-size-popup::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.product-card.show-sizes .inline-size-popup {
    transform: translateY(0);
}

.inline-size-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 10px 5px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: #000;
}

.inline-size-btn:hover {
    background: #f9f9f9;
}

.size-status {
    font-size: 11px;
    color: #666;
}

.inline-drawer-divider {
    height: 35px;
}

.inline-action-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 8px;
    align-items: center;
    background: transparent;
    border: none;
    padding: 10px 5px;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    color: #000;
}

.inline-action-btn:hover {
    background: #f9f9f9;
}

.inline-dash {
    text-align: center;
    color: #000;
    margin: 8px 0;
    font-size: 12px;
}

.btn-zara-plus {
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 24px;
    font-size: 22px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    color: #000;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.3s;
    z-index: 20;
}

.product-card.show-sizes .btn-zara-plus {
    border: 1px solid #000;
}

.btn-zara-plus:hover {
    transform: scale(1.1);
}

.p-header {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
}

.p-colors {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.p-color-swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 0;
}


/* ========================================= */
/* 11. MEGA FOOTER                           */
/* ========================================= */
.lux-mega-footer {
    background: #fff;
    color: #000;
    border-top: 1px solid #eaeaea;
}

/* --- Newsletter Section --- */
.footer-title {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 11px;
    color: #666;
    margin-bottom: 0;
}

.newsletter-form {
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
    max-width: 400px;
}

.newsletter-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 11px;
    letter-spacing: 1px;
    color: #000;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-submit {
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--lux-blue);
    transition: color 0.3s;
}

.newsletter-submit:hover {
    color: var(--lux-gold);
}

/* --- Social Icons --- */
.social-icons a {
    display: inline-block;
    margin-left: 25px;
    color: #000;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--lux-gold);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* --- Directory Grid --- */
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    text-decoration: none;
    font-size: 11px;
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Legal Bottom Bar --- */
.footer-bottom {
    font-size: 9px;
    letter-spacing: 1px;
    color: #888;
}

.copyright {
    text-transform: uppercase;
}

.region-selector {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.region-selector:hover {
    color: var(--lux-gold);
}

/* --- Mobile Specific Fixes --- */
@media (max-width: 991px) {
    .social-icons {
        margin-top: 30px;
        text-align: left;
    }

    .social-icons a {
        margin-left: 0;
        margin-right: 25px;
    }

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

/* ========================================= */
/* 12. SHOP PAGE : TOOLBAR & GRID            */
/* ========================================= */

.shop-toolbar {
    background: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 4999;
}

.category-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.view-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
}

.view-toggles {
    display: flex;
    gap: 15px;
}

.btn-view {
    background: none;
    border: none;
    font-size: 11px;
    color: #888;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.btn-view.active {
    color: #000;
    font-weight: 700;
}

.btn-filter-toggle {
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* The Dynamic Grid */
.shop-grid {
    display: grid;
    gap: 15px;
    width: 100%;
    transition: all 0.4s ease;
}

.shop-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.shop-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.shop-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .shop-toolbar {
        top: 55px;
    }

    /* Adjust for smaller mobile header */
}


/* ========================================= */
/* 13. ADVANCED FILTER DRAWER (H&M Style)    */
/* ========================================= */

.shop-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 7000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.shop-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.shop-filter-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 7001;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-filter-drawer.active {
    right: 0;
}

/* Header */
.f-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eaeaea;
}

.f-title {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.f-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
}

/* Body & Accordions */
.f-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 30px 40px;
}

.f-drawer-body::-webkit-scrollbar {
    width: 4px;
}

.f-drawer-body::-webkit-scrollbar-thumb {
    background: #ccc;
}

.f-accordion {
    border-bottom: 1px solid #eaeaea;
}

.f-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    color: #000;
}

.f-accordion-btn .chevron {
    transition: transform 0.3s;
}

.f-accordion.is-open .chevron {
    transform: rotate(180deg);
}

.f-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.f-accordion.is-open .f-accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Filter UI: Custom Checkboxes & Radios */
.custom-checkbox,
.custom-radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
    cursor: pointer;
}

.custom-checkbox input,
.custom-radio input {
    display: none;
}

.checkbox-ui {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-mark {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.custom-checkbox input:checked+.checkbox-ui .check-mark {
    background: #000;
    border-color: #000;
}

.custom-checkbox input:checked+.checkbox-ui .check-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-mark {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.custom-radio input:checked+.radio-mark {
    border-color: #000;
    border-width: 5px;
}

.label-text {
    font-size: 12px;
    color: #000;
    font-weight: 400;
}

.meta-ui {
    display: flex;
    align-items: center;
    gap: 15px;
}

.count {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: inline-block;
}

/* Filter UI: Price Slider */
.price-labels {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 30px;
}

.slider-track {
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 15px;
    height: 15px;
    background: #000;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
}

/* Footer Buttons */
.f-drawer-footer {
    display: flex;
    gap: 10px;
    padding: 20px 30px;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

.btn-f-clear {
    flex: 1;
    background: #f4f4f4;
    color: #888;
    border: none;
    padding: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-f-view {
    flex: 1;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-f-view:hover {
    background: var(--lux-gold);
}

/* ========================================= */
/* 14. PRODUCT DETAILS PAGE (H&M / Zara Hybrid) */
/* ========================================= */

.lux-breadcrumb {
    font-size: 9px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.lux-breadcrumb a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}

.lux-breadcrumb a:first-child {
    margin-left: 0;
}

.lux-breadcrumb span {
    margin-left: 5px;
}

/* Image Grid (Left Pane) */
.product-image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.grid-img-wrap {
    cursor: pointer;
    overflow: hidden;
    background: #f7f7f7;
}

.grid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.grid-img-wrap:hover img {
    opacity: 0.8;
}

.full-width {
    width: 100%;
    aspect-ratio: 3/4;
}

.half-width {
    width: calc(50% - 7.5px);
    aspect-ratio: 3/4;
}

/* Sticky Info (Right Pane) */
.product-sticky-info {
    position: sticky;
    top: 130px;
    width: 100%;
    max-width: 400px;
    margin-left: 40px;
    margin-right: auto;
}

/* Typography & Swatches */
.p-detail-title {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    width: 85%;
    line-height: 1.3;
}

.btn-bookmark {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
    margin-top: -2px;
}

.p-detail-price {
    font-size: 13px;
    color: #333;
    display: block;
    margin-top: 8px;
    margin-bottom: 5px;
}

.p-detail-tax {
    font-size: 9px;
    color: #888;
    letter-spacing: 0.5px;
    display: block;
}

/* Divider & Color */
.detail-divider {
    border-top: 1px solid #000;
    opacity: 1;
    margin: 25px 0;
}

.p-detail-color-name {
    font-size: 10px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    display: block;
}

.p-detail-colors .color-swatch {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.p-detail-colors .color-swatch.active {
    border: 1px solid #000;
    padding: 2px;
    background-clip: content-box;
}

/* Sizes */
.size-label {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.size-guide-link {
    font-size: 10px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.size-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.size-opt {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 5px;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.size-opt:hover {
    border-bottom-color: #000;
}

.size-opt.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    border-bottom-color: #eaeaea;
}

.low-stock {
    font-size: 10px;
    color: #888;
}

/* Add Button */
.btn-detail-add {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 14px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-detail-add:hover {
    background: #f9f9f9;
}

.p-detail-desc {
    font-size: 11.5px;
    color: #333;
    line-height: 1.6;
}

.complete-look-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
}

.look-thumb {
    width: 65px;
    height: 85px;
    object-fit: cover;
    background: #f7f7f7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.look-thumb:hover {
    opacity: 0.7;
}

.p-detail-desc p {
    margin-bottom: 18px;
}

.p-detail-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-detail-links a {
    font-size: 10px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.p-detail-links a:hover {
    color: #000;
}

/* Mobile Override */
@media (max-width: 991px) {
    .product-sticky-info {
        position: relative;
        top: 0;
        max-width: 100%;
    }
}

/* Tabs (Screenshot 3 Exact Match) */
.tab-headers {
    gap: 15px;
    border-bottom: 1px solid transparent;
}

.tab-btn {
    background: none;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    padding: 6px 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* The specific Blue Box for the active tab from the H&M/Zara screenshot */
.tab-btn.active {
    color: #000;
    border: 1px solid #0066cc;
    /* Exact blue border */
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-pane.active {
    display: block;
}

.tab-text {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Layout Overrides */
@media (max-width: 991px) {
    .product-image-grid {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .full-width,
    .half-width {
        width: 100%;
        aspect-ratio: 4/5;
    }

    .product-sticky-info {
        max-width: 100%;
        position: relative;
        top: 0;
    }

    .tab-headers {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

/* ========================================= */
/* 15. MOBILE STICKY ADD BAR & GALLERY       */
/* ========================================= */

.mobile-sticky-add-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4500;
    transform: translateY(100%);
    /* Hidden by default */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.mobile-sticky-add-bar.show {
    transform: translateY(0);
}

.btn-sticky-add {
    background: #fff;
    border: 1px solid #000;
    padding: 12px 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.sticky-price {
    font-size: 12px;
    font-weight: 400;
}

/* Fullscreen Gallery Modal */
.fs-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: none;
    /* Flex when open */
    flex-direction: row;
}

.fs-gallery-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.btn-close-gallery {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

.gallery-thumbnails {
    width: 100px;
    height: 100%;
    padding: 80px 0 20px 20px;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    flex-shrink: 0;
}

.gallery-thumbnails img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.gallery-thumbnails img:hover {
    opacity: 1;
}

.gallery-scroll-area {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-full-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .gallery-full-img {
        margin-bottom: 0;
    }

    /* Seamless mobile swipe */
}

/* ========================================= */
/* 16. INFO DRAWER (Measurements & Care)     */
/* ========================================= */

/* Link Buttons */
.btn-text-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-text-link:hover {
    color: #000;
}

/* Overlay */
.info-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    /* Very light overlay */
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.info-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The Drawer */
.info-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 8001;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eaeaea;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
}

.info-drawer.active {
    right: 0;
}

/* Boxed Close Button (From Screenshot) */
.info-drawer-header {
    padding: 20px 25px;
    display: flex;
    justify-content: flex-end;
}

.btn-close-drawer {
    background: none;
    border: 1px solid #0066cc;
    /* Blue border like Zara */
    color: #0066cc;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-close-drawer:hover {
    background: #0066cc;
    color: #fff;
}

/* Drawer Content */
.info-drawer-body {
    padding: 0 40px 40px;
    overflow-y: auto;
    flex: 1;
}

.info-drawer-body::-webkit-scrollbar {
    width: 3px;
}

.info-drawer-body::-webkit-scrollbar-thumb {
    background: #ccc;
}

.drawer-content-pane {
    display: none;
    animation: fadeIn 0.4s;
}

.drawer-content-pane.active {
    display: block;
}

.drawer-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
}

.drawer-desc {
    font-size: 11px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.drawer-product-img {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.drawer-product-img img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
}

.drawer-link-text {
    font-size: 9px;
    margin-bottom: 30px;
    color: #000;
}

.drawer-link-text a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Measurements Table */
.measure-toggle {
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 25px;
}

.measure-toggle span {
    cursor: pointer;
    margin-right: 15px;
}

.measure-toggle span.active {
    color: #000;
}

.measure-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9px;
    text-transform: uppercase;
    color: #000;
}

.measure-table th {
    text-align: left;
    padding: 10px 0;
    font-weight: 700;
    border-bottom: 1px solid #000;
}

.measure-table td {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-weight: 300;
}

/* ========================================= */
/* FULLSCREEN GALLERY MODAL OVERRIDES        */
/* ========================================= */
.fs-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: none;
    /* Flex when open */
    flex-direction: row;
}

.fs-gallery-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* White Box Close Button */
.btn-close-gallery {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10002;
    background: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    color: #000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Thumbnail Structure */
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    flex-shrink: 0;
    z-index: 10001;
    /* Keeps it above the large images */
    scrollbar-width: none;
    /* Firefox */
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-thumbnails img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    opacity: 1;
}

/* The white border highlight for the active thumbnail */
.gallery-thumbnails img.active {
    border: 2px solid #fff;
    opacity: 1;
}

/* Desktop Thumbnail Layout */
@media (min-width: 992px) {
    .gallery-thumbnails {
        width: 100px;
        height: 100%;
        padding: 80px 0 20px 20px;
        position: relative;
    }
}

/* Mobile Floating Thumbnail Layout (Matches Screenshot) */
@media (max-width: 991px) {
    .gallery-thumbnails {
        position: absolute;
        bottom: 30px;
        left: 15px;
        width: 45px;
        /* Tiny thumbnails for mobile */
        max-height: 60vh;
        padding: 0;
    }

    .gallery-thumbnails img.active {
        border-width: 1px;
    }
}

/* Large Images */
.gallery-scroll-area {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-full-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .gallery-full-img {
        margin-bottom: 0;
    }
}

/* ========================================= */
/* 14. PRODUCT DETAILS PAGE UPDATES          */
/* ========================================= */

/* NEW: Mobile Product Header (H&M style icons) */
.mobile-prod-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 20px;
    z-index: 5000;
}

.mobile-prod-header .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #000;
    margin-bottom: 5px;
}

.mobile-header-icons svg {
    width: 22px;
    height: 22px;
    margin-left: 18px;
    cursor: pointer;
    color: #000;/
}

.bag-wrapper span {
    font-size: 11px;
    font-weight: 500;
    margin-left: 4px;
    color: #000;
}

/* H&M Style Desktop Sticky (Goal 1 Fix) */
.product-sticky-info {
    position: sticky;
    top: 130px;
    /* Sits perfectly below the desktop header */
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    /* Pushes the text block neatly against the right margin */
}

/* Typography Overrides for Goal 2 (Alignment) */
.p-detail-title {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    line-height: 1.3;
}

.btn-bookmark {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
    margin-top: -2px;
}

.p-detail-price {
    font-size: 13px;
    color: #333;
    display: block;
    margin-top: 8px;
    margin-bottom: 5px;
}

.p-detail-tax {
    font-size: 9px;
    color: #888;
    letter-spacing: 0.5px;
    display: block;
    text-transform: uppercase;
}

/* Color Info & Square Swatches */
.p-detail-color-name {
    font-size: 10px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    display: block;
}

.p-detail-colors .color-swatch {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 0;
}

.p-detail-colors .color-swatch.active {
    border: 1px solid #000;
    padding: 2px;
    background-clip: content-box;
}

/* Add Button */
.btn-detail-add {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 14px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-detail-add:hover {
    background: #f9f9f9;
}

/* Mobile Sticky Bar (Goal 4 Fix) */
.mobile-sticky-add-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4500;
    transform: translateY(100%);
    /* Hidden by default */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.mobile-sticky-add-bar.show {
    transform: translateY(0);
}

.btn-sticky-add {
    background: #fff;
    border: 1px solid #000;
    padding: 12px 60px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

.sticky-price {
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

/* Mobile Overrides */
@media (max-width: 991px) {
    .product-sticky-info {
        position: relative;
        /* Disables sticky on mobile so it scrolls naturally */
        top: 0;
        max-width: 100%;
        margin-left: 0;
    }

    .mx-n4 {
        /* Utility to make mobile images bleed to the edge of the screen */
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}

/* ========================================= */
/* 17. MINIMALIST RECOMMENDATIONS GRID       */
/* ========================================= */

.zara-recommendations-section {
    background: #fff;
}

.zara-rec-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.zara-rec-img-box {
    width: 100%;
    aspect-ratio: 3/4;
    /* Keeps all images uniformly tall */
    margin-bottom: 12px;
    background: #fff;
    /* Pure white background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* * The mix-blend-mode trick: 
 * If your images have a light grey background (like Zara's do), 
 * this CSS will instantly strip the background and make the clothing float 
 * directly on your pure white page.
 */
.zara-rec-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents cropping, ensures full item is visible */
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.zara-rec-card:hover .zara-rec-img-box img {
    transform: scale(1.05);
}

.zara-rec-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.z-rec-price {
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #333;
}

.z-rec-add {
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 200;
    color: #888;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.z-rec-add:hover {
    color: #000;
}

/* Mobile specific overrides */
@media (max-width: 991px) {
    .z-rec-price {
        font-size: 9px;
        /* Slightly smaller for 3-column mobile view */
    }
}

/* ========================================= */
/* 18. SHOPPING CART PAGE                    */
/* ========================================= */

.cart-page-title {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Cart Item Row */
.cart-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eaeaea;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item-img {
    width: 140px;
    /* Large thumbnail like Zara */
    flex-shrink: 0;
    background: #f7f7f7;
}

.cart-item-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cart-item-title {
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.cart-item-title:hover {
    color: #666;
}

.cart-item-price {
    font-size: 12px;
    color: #000;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
    color: #666;
    letter-spacing: 0.5px;
}

.cart-item-actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #000;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
}

.action-links {
    display: flex;
    gap: 15px;
}

.action-links button {
    background: none;
    border: none;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
}

.action-links button:hover {
    color: #000;
}

/* Right Pane: Order Summary */
.cart-summary-sticky {
    position: sticky;
    top: 130px;
    /* Locks below the header */
    width: 100%;
    padding: 30px;
    background: #fdfdfd;
    /* Subtle off-white to detach from items */
}

.summary-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.summary-divider {
    border-top: 1px solid #000;
    opacity: 1;
}

.total-row {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.summary-tax-note {
    font-size: 9px;
    color: #888;
    letter-spacing: 0.5px;
    text-align: right;
}

.btn-checkout {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #333;
}

.summary-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-links a {
    font-size: 10px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Mobile Overrides */
@media (max-width: 991px) {
    .cart-item-img {
        width: 100px;
    }

    /* Smaller images on phone */
    .cart-summary-sticky {
        position: relative;
        top: 0;
        padding: 20px 0 0 0;
        background: #fff;
        border-top: 1px solid #eaeaea;
    }

    .cart-page-title {
        font-size: 14px;
    }
}

/* ========================================= */
/* 19. CHECKOUT PAGE (Minimal Zara Style)    */
/* ========================================= */

/* Stripped Down Header & Footer */
.checkout-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    z-index: 5000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.checkout-back-link {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.checkout-logo img {
    height: 35px;
    filter: brightness(1);
    -webkit-filter: brightness(1);
}

.checkout-footer {
    border-top: 1px solid #eaeaea;
    padding: 30px 0;
    background: #fff;
}

.checkout-footer .footer-links a {
    color: #666;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .checkout-header {
        padding: 0 20px;
        height: 70px;
    }
}

/* Step Accordion Mechanics */
.checkout-step {
    border-top: 1px solid #000;
    padding: 30px 0;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.checkout-step.active {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.step-number {
    font-size: 11px;
    font-weight: 600;
}

.step-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.step-body {
    display: none;
    /* Hidden by default */
    padding-top: 40px;
    animation: fadeIn 0.4s ease;
}

.checkout-step.active .step-body {
    display: block;
}

.step-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Minimalist Zara Inputs (Floating Label) */
.lux-input-group {
    position: relative;
    width: 100%;
}

.lux-input-group input,
.lux-input-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 20px 0 5px 0;
    font-size: 12px;
    color: #000;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color 0.3s;
}

.lux-input-group input:focus,
.lux-input-group select:focus {
    border-bottom-color: #000;
}

.lux-input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Float label up when input is focused or has text */
.lux-input-group input:focus~label,
.lux-input-group input:not(:placeholder-shown)~label,
.lux-input-group select:valid~label {
    top: 0;
    font-size: 8px;
    color: #000;
}

/* Custom Radio Boxes (Shipping/Payment) */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-method-card {
    cursor: pointer;
    position: relative;
}

.shipping-method-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.method-card-content {
    border: 1px solid #eaeaea;
    padding: 20px;
    transition: all 0.3s ease;
}

.shipping-method-card input:checked~.method-card-content {
    border-color: #000;
    background: #fafafa;
}

.method-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
}

.method-price {
    font-size: 11px;
    font-weight: 600;
    color: #000;
}

.method-desc {
    font-size: 10px;
    color: #666;
    display: block;
}

/* Action Buttons */
.btn-checkout-next {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 15px 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.btn-checkout-next:hover {
    opacity: 0.8;
}

.btn-checkout-back {
    background: transparent;
    color: #000;
    border: 1px solid transparent;
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Right Pane: Mini Cart Summary */
.checkout-edit-link {
    font-size: 10px;
    color: #666;
    text-decoration: underline;
    letter-spacing: 1px;
}

.checkout-mini-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.checkout-mini-item img {
    width: 60px;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f7f7f7;
}

.mini-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    color: #333;
    letter-spacing: 0.5px;
}

/* ========================================= */
/* 20. USER ACCOUNT DASHBOARD                */
/* ========================================= */

/* Sidebar Navigation */
.account-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-sidebar-menu li,
.account-sidebar-menu a {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.account-sidebar-menu li:hover {
    color: #000;
}

.account-sidebar-menu li.active {
    color: #000;
    font-weight: 600;
}

/* Content Panes */
.account-content-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.account-content-pane.active {
    display: block;
}

.pane-title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Order Cards (Purchases Tab) */
.account-order-card {
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
}

.account-order-card:first-of-type {
    padding-top: 0;
}

.order-header {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.order-img-grid {
    display: flex;
    gap: 10px;
}

.order-img-grid img {
    width: 65px;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f7f7f7;
}

.order-number {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #000;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.order-total {
    font-size: 10px;
    color: #666;
    letter-spacing: 0.5px;
}

/* Profile Data Blocks */
.profile-data-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.data-label {
    font-size: 9px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.data-value {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #000;
    text-transform: uppercase;
}

/* Mobile Sidebar Override (Swipeable horizontal tabs) */
@media (max-width: 991px) {
    .account-sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 30px;
        /* Hide scrollbar */
        scrollbar-width: none;
    }

    .account-sidebar-menu::-webkit-scrollbar {
        display: none;
    }
}

.luxmont-account-wrapper {
    margin-top: 120px;
    min-height: 60vh;
    font-family: 'Inter', sans-serif;
}

/* Left Sidebar Menu */
.account-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar-nav li {
    margin-bottom: 20px;
}

.account-sidebar-nav a {
    text-decoration: none;
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.account-sidebar-nav a:hover {
    color: #000;
}

.account-sidebar-nav li.active a {
    color: #000;
    font-weight: 600;
}

.account-sidebar-divider {
    height: 1px;
    background: transparent;
    margin: 40px 0;
}

/* Right Content Area */
.account-content {
    padding-left: 20px;
}

.account-header-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    margin-bottom: 50px;
}

.account-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s;
    border-bottom: 1px solid transparent;
}

.account-list-item:hover {
    opacity: 0.6;
}

.account-list-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.account-section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin: 60px 0 20px 0;
}

.account-data-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 0;
    text-decoration: none;
    color: #000;
}

.account-data-item:hover .action-icon {
    opacity: 0.6;
}

.data-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.data-value {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

/* CRITICAL FIX: Controls the SVG arrow sizes */
.action-icon {
    width: 14px;
    height: 14px;
    stroke-width: 1;
    color: #000;
}

/* Footer Actions */
.account-footer-actions {
    margin-top: 60px;
}

.btn-signout {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
}

.btn-delete-acc {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 991px) {
    .account-sidebar {
        display: none;
    }

    /* Hide sidebar on mobile */
    .account-content {
        padding-left: 0;
    }
}

.wishlist-btn.active svg {
    fill: #000;
    /* Fills the bookmark when active */
}

.wishlist-btn.active span {
    font-weight: 600;
}

.address-card {
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.address-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.address-text {
    font-size: 12px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.luxmont-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 12px 0;
    width: 100%;
    font-size: 12px;
    outline: none;
    margin-bottom: 20px;
    background: transparent;
}

.luxmont-input:focus {
    border-color: #000;
}

.btn-add-address {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-add-address:hover {
    background: #fff;
    color: #000;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

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