/* Global Reset & Typography */
:root {
    --primary-black: #050505;
    --secondary-black: #111;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --accent-green: #6bffff;
    /*--accent-green: #bceeb0;*/
    /* Light green from the image */
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(15px);
}

html {
    scroll-behavior: smooth;
    /* Enhanced smooth scrolling for premium feel */
    scroll-padding-top: 80px;
    /* Offset for fixed headers */
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--primary-black);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    /* Smooth momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
}


a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

/* Header Part 1: Top Bar */
.top-bar {
    background-color: var(--primary-black);
    color: var(--text-white);
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #1a1a1a;
}

/* Header Part 2: Ticker Bar */
.ticker-bar {
    background-color: var(--primary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
    position: relative;
    padding-right: 20px;
}

.ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-move 30s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes ticker-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-control {
    z-index: 10;
    padding: 5px;
    color: white;
}

.ticker-control:hover {
    opacity: 0.7;
}

/* Header Part 3: Main Nav (Sticky) */
.main-nav {
    background-color: var(--primary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.main-nav.scrolled {
    padding: 15px 40px;
    border-bottom: 1px solid #1a1a1a;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn svg {
    display: block;
}

/* Promo Stripe */
.promo-stripe {
    background-color: var(--accent-green);
    color: var(--primary-black);
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.shop-link {
    text-decoration: underline;
    font-weight: 700;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    /* Large impactful height */
    overflow: hidden;
    background-color: #111;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding-left: 60px;
    /* Space for text */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 84px;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
}

.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

/* Slider Footer Controls */
.slider-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 60px;
    z-index: 10;
    color: white;
}

.footer-left p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    max-width: 300px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slide-counter {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ccc;
}

.progress-bars {
    display: flex;
    gap: 5px;
}

.bar {
    width: 60px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s;
}

.bar.active {
    background-color: white;
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
}

.menu-overlay.open {
    transform: translateY(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    color: var(--text-white);
}

.menu-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-close {
    padding: 10px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.menu-links a {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.2s;
}

.menu-links a:hover {
    color: var(--text-grey);
}

.highlight-green {
    color: var(--accent-green) !important;
}

.menu-footer {
    margin-top: auto;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.menu-secondary-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-secondary-links a {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
}

.locale-selector button {
    border: 1px solid #333;
    padding: 8px 16px;
    color: white;
    font-size: 12px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    color: white;
}

/* Utilities */
.hidden {
    display: none;
}


/* Footer */
.site-footer {
    background-color: var(--primary-black);
    /* Same as body */
    color: var(--text-white);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: #1a1a1a;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top: Flex for Desktop */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-newsletter {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-newsletter h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.newsletter-form input {
    background: none;
    border: none;
    flex-grow: 1;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    color: white;
    padding: 0 10px;
}

.newsletter-disclaimer {
    font-size: 11px !important;
    color: #666 !important;
}

.desktop-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.desktop-social a {
    color: white;
    transition: color 0.2s;
}

.desktop-social a:hover {
    color: var(--text-grey);
}

/* Footer Links Columns */
.footer-links-container {
    display: flex;
    gap: 40px;
    flex-grow: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 150px;
}

.footer-accordion-btn {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    /* Acts as header on desktop */
    width: 100%;
    text-align: left;
    cursor: default;
    /* Not clickable on desktop */
}

.chevron {
    display: none;
}

/* Hide chevron on desktop */

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-size: 13px;
    color: var(--text-white);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11px;
    color: var(--text-white);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-legal a {
    color: var(--text-white);
    text-decoration: none;
}

.footer-settings {
    order: 2;
}

.locale-btn {
    border: 1px solid #333;
    padding: 8px 16px;
    color: white;
    font-size: 12px;
}

.footer-copyright {
    order: 3;
    max-width: 300px;
    text-align: right;
    color: #666;
}

/* Chat Widget -> Back to Top */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-green);
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.2s, opacity 0.3s;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
}

.chat-widget.visible {
    opacity: 1;
    pointer-events: auto;
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* Responsive Design (Combined) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

    .main-nav {
        padding: 20px;
    }

    .slider-footer {
        padding: 0 20px 40px 20px;
    }

    .slide {
        padding-left: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 in a row on tablet */
    }
}

/* Responsive / Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        margin-top: 100px;
    }

    .hero-slider {
        height: 70vh;
    }

    .footer-left {
        display: none;
    }

    .footer-center {
        width: 100%;
        align-items: center;
    }

    .menu-links a {
        font-size: 24px;
    }

    .main-nav {
        padding: 15px 20px;
    }

    .slide {
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }

    .slide-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Footer Mobile Specific */
    .site-footer {
        padding: 40px 20px;
    }

    .footer-watermark {
        font-size: 30vw;
        top: 15%;
        /* Higher up */
        left: 50%;
        transform: translate(-50%, 0);
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .desktop-social {
        display: none;
        /* Hide on mobile here */
    }

    .footer-links-container {
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-top: 1px solid #333;
    }

    .footer-column {
        border-bottom: 1px solid #333;
    }

    .footer-accordion-btn {
        padding: 20px 0;
        margin-bottom: 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }

    .chevron {
        display: block;
        width: 10px;
        height: 10px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg);
        transition: transform 0.3s;
    }

    .footer-accordion-btn.active .chevron {
        transform: rotate(-135deg);
    }

    .footer-list {
        max-height: 0;
        /* Hidden by default */
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding-bottom: 0;
    }

    .footer-list.open {
        padding-bottom: 20px;
        /* max-height set via JS */
    }

    .mobile-social.hidden {
        display: none;
    }

    .mobile-social {
        display: flex;
        justify-content: flex-start;
        gap: 30px;
        margin-bottom: 40px;
        color: white;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-legal {
        max-width: 100%;
        grid-template-columns: 1fr;
        /* Single column links */
        gap: 15px;
        order: 1;
    }

    .footer-legal a {
        font-size: 13px;
    }

    .footer-settings {
        order: 3;
        width: 100%;
    }

    .locale-btn {
        width: 100%;
        /* Full width button */
        justify-content: center;
        padding: 15px;
    }

    .footer-copyright {
        order: 4;
        text-align: left;
        max-width: 100%;
    }

    /* Products Mobile */
    .products-page-container {
        padding: 0 20px;
        margin-top: 20px;
    }

    .toolbar-desktop {
        display: none;
    }

    .toolbar-mobile {
        display: flex;
    }

    /* Update Grid for Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mobile Sidebar Full Screen Overlay (Products) */
    .sidebar-filters {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 3000;
        padding: 20px;
        overflow-y: auto;
        transform: translateY(100%);
        margin-left: 0;
        opacity: 1;
        pointer-events: auto;
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

    .sidebar-filters.mobile-open {
        transform: translateY(0);
    }

    .sidebar-filters.hidden {
        /* Override desktop hidden logic */
        margin-left: 0;
        opacity: 1;
    }

    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .mobile-filter-header h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .mobile-apply-container {
        display: block;
        padding-top: 20px;
        margin-top: auto;
        background-color: #f9f9f9;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: -20px;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-results-count {
        margin-bottom: 10px;
        color: #666;
        font-size: 12px;
        text-align: center;
    }

    .apply-btn {
        width: 100%;
        background-color: black;
        color: white;
        padding: 15px;
        border-radius: 30px;
        font-weight: 600;
    }

    .mobile-only-filters {
        display: block;
        margin-top: 20px;
    }

    .filter-accordion-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        font-weight: 500;
    }
}

/* --- Products Page Layout (Added to Style.css) --- */
.products-page-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

/* Toolbar Desktop */
.toolbar-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    cursor: pointer;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
}

/* Toolbar Mobile (Hidden Desktop) */
.toolbar-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.filter-sort-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-black);
}

/* Content Wrapper (Sidebar + Grid) */
.content-wrapper {
    display: flex;
    gap: 40px;
    transition: all 0.3s ease;
}

/* Sidebar Filters */
.sidebar-filters {
    width: 250px;
    flex-shrink: 0;
    transition: margin-left 0.3s ease, opacity 0.3s ease;
}

.sidebar-filters.hidden {
    margin-left: -290px;
    /* width + gap */
    opacity: 0;
    pointer-events: none;
}

.mobile-filter-header {
    display: none;
}

/* Mobile Only */
.mobile-apply-container {
    display: none;
}

/* Mobile Only */

.filter-section {
    margin-bottom: 30px;
}

.filter-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
    color: #ccc;
}

.category-tabs a.active {
    color: black;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #ccc;
    background-color: white;
}

.checkbox-container:hover input~.checkmark {
    border-color: #666;
}

.checkbox-container input:checked~.checkmark {
    background-color: black;
    border-color: black;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.desktop-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* Color Circles */
.color-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
}

.color-name {
    font-size: 11px;
    color: #666;
}

/* Mobile Accordions inside filter */
.mobile-only-filters {
    display: none;
}

/* Product Grid */
.product-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in a row */
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    background-color: #f6f6f6;
    aspect-ratio: 3/4;
    /* Vertical Card */
    margin-bottom: 15px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.badge-sale {
    background-color: #bceeb0;
    /* Light green */
    color: black;
}

.badge-new {
    background-color: #666;
    color: white;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    height: 40px;
}

.thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background-color: #f6f6f6;
    cursor: pointer;
    border: 1px solid transparent;
}

.thumb.active {
    border-bottom: 2px solid black;
}

/* Product Info */
.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--primary-black);
}

.product-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.product-divider {
    border: 0;
    border-top: 2px solid black;
    width: 100%;
    margin-bottom: 15px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.product-color-name {
    text-transform: uppercase;
    color: #666;
}

.product-price {
    text-align: right;
    display: flex;
    gap: 8px;
    align-items: center;
    /* Align prices */
}

.price-regular {
    color: black;
}

/* --- Filter & Sort Enhancements --- */
.sort-wrapper {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    background: #fff;
    display: flex;
    align-items: center;
}

.sort-select {
    border: none;
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    outline: none;
    color: var(--primary-black);
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link {
    text-decoration: none;
    color: var(--secondary-black);
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.category-link:hover {
    padding-left: 5px;
    color: var(--primary-color);
}

.category-link.active {
    font-weight: 700;
    color: var(--primary-black);
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
}

.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.apply-price-btn {
    width: 100%;
    background-color: black;
    color: white;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
}

.apply-price-btn:hover {
    background: #333;
}

.clear-filters-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.clear-filters-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #f5f5f5;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.clear-filters-btn:hover {
    background: #ffebee;
}

.price-original {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 12px;
}

.price-discounted {
    color: black;
}

/* --- New Arrivals Marquee --- */
.new-arrivals-section {
    padding: 60px 20px;
    background-color: white;
    overflow: hidden;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--primary-black);
    /* text-transform: uppercase; Removed based on image which is Title Case/Normal */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-right: 30px;
    /* Ensure seamless loop */
    animation: marquee-scroll 60s linear infinite;
    /* Slower speed */
}

.marquee-card {
    width: 300px;
    /* Fixed width for carousel items */
    flex-shrink: 0;
    white-space: normal;
    /* Allow text wrapping inside card */
}

/* Pause on hover for better UX */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Collection Highlight Section --- */
.collection-highlight {
    display: flex;
    align-items: center;
    padding: 0 40px 60px 40px;
    gap: 60px;
    background-color: white;
}

.collection-content {
    flex: 1;
    max-width: 400px;
    /* Reduced to balance with collage */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align text */
}

.collection-content h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--primary-black);
}

.collection-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.collection-collage {
    flex: 2;
    /* Takes more space */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 500px;
}

.collage-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.btn-black {
    background-color: var(--primary-black);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-black:hover {
    background-color: #333;
}

/* --- Main Categories Section --- */
.main-categories-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Increased gap */
    padding: 0 40px 60px 40px;
    background-color: var(--text-white);
}

.category-card-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square images */
    overflow: hidden;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-large:hover .cat-img-wrapper img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Updated Button Styles */
.cat-btn-container {
    display: flex;
    justify-content: flex-start;
    /* Left Align */
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-black);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    min-width: 140px;
    text-align: center;
    border: 2px solid var(--primary-black);
    /* For variety */
    transition: all 0.3s ease;
}

/* Specific Style Matching Reference Removed - All Buttons Black now */

.btn-pill:hover {
    opacity: 0.8;
}

/* --- Shop the Look Section --- */
.shop-the-look-section {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 60px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.look-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.look-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.look-product-card {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.look-product-card:hover {
    transform: translateY(-50%) translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.look-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.look-divider {
    width: 100%;
    height: 2px;
    background-color: var(--primary-black);
    margin-bottom: 25px;
}

.look-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.look-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.look-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: #f6f6f6;
    overflow: hidden;
    border-radius: 4px;
}

.look-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.look-item:hover .look-item-image img {
    transform: scale(1.1);
}

.look-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.look-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 4px;
    line-height: 1.3;
}

.look-item-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.look-item-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.look-price-link {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.look-price-link:hover {
    color: var(--primary-black);
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: white;
    padding: 60px 0;
}

/* Reviews Banner (New to NEXO) */
.reviews-banner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-content {
    flex: 1;
    max-width: 400px;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.banner-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-black);
    margin-bottom: 30px;
}

.banner-image {
    flex: 2;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: scale(1.05);
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    padding: 0 40px 40px 40px;
}

.reviews-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 0.5px;
}

/* Reviews Marquee (Right to Left) */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-bottom: 40px;
}

.reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-right: 20px;
    /* Reverse animation: right to left - Slow and smooth */
    animation: reviews-scroll-rtl 120s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes reviews-scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left (negative direction) */
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    position: relative;
    width: 350px;
    flex-shrink: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    white-space: normal;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: #ff9800;
    font-size: 18px;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    min-height: 80px;
}

.review-date {
    font-size: 11px;
    color: #999;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-black);
}

.review-verified {
    font-size: 11px;
    color: #4caf50;
    font-weight: 500;
}

.review-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

/* --- Final Section: Loyalty & Mission (Inverted Colors) --- */
.final-section {
    background-color: var(--primary-black);
    color: var(--text-white);
}

/* Loyalty Container (Top Half) */
.loyalty-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
}

.loyalty-content {
    flex: 1;
    max-width: 500px;
}

.loyalty-labels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.loyalty-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    line-height: 1.6;
}

.loyalty-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.loyalty-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 30px;
}

.loyalty-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.loyalty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.loyalty-image:hover img {
    transform: scale(1.05);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-black);
}

/* Mission Container (Bottom Half) */
.mission-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.mission-content {
    flex: 2;
    max-width: 700px;
}

.mission-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.mission-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.mission-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mission-link:hover {
    opacity: 0.7;
}

.mission-logo {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Product Details Page --- */
.product-details-page {
    display: flex;
    min-height: 100vh;
    background-color: white;
    color: var(--primary-black);
}

/* Left Side: Product Images */
.product-images-section {
    flex: 1;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Navigation Arrows */
.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-black);
}

.image-nav-btn:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Right Side: Product Info */
.product-info-section {
    flex: 1;
    padding: 60px 60px 60px 80px;
    overflow-y: auto;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

/* Product Title */
.product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
    color: #000;
    font-size: 16px;
}

.rating-count {
    font-size: 13px;
    color: #666;
}

/* Price Display */
.product-price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-original-strike {
    font-size: 18px;
    color: #d32f2f;
    text-decoration: line-through;
    font-weight: 500;
}

.price-current {
    font-size: 24px;
    color: var(--primary-black);
    font-weight: 700;
}

/* Special Notes */
.special-notes {
    margin-bottom: 20px;
}

.special-notes ul {
    list-style: none;
    padding: 0;
}

.special-notes li {
    font-size: 11px;
    color: #d32f2f;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.special-notes li:before {
    content: "●";
    position: absolute;
    left: 0;
}

/* Section Divider */
.section-divider {
    border: 0;
    border-top: 2px solid #e0e0e0;
    margin: 30px 0;
}

/* Selection Header */
.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.selection-label {
    font-size: 13px;
    color: #666;
}

.selection-label strong {
    color: var(--primary-black);
    font-weight: 600;
}

.other-label,
.size-guide-link {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}

.other-label:hover,
.size-guide-link:hover {
    color: var(--primary-black);
}

/* Color Selection */
.color-selection,
.seasonal-colors,
.additional-colors {
    margin-bottom: 25px;
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-swatch.active {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-black);
}

/* Size Selection */
.size-selection {
    margin-bottom: 25px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.size-btn {
    padding: 12px;
    border: 1px solid #ddd;
    background-color: white;
    color: var(--primary-black);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-btn:hover:not(.sold-out) {
    border-color: var(--primary-black);
    background-color: #f5f5f5;
}

.size-btn.active {
    background-color: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

.size-btn.sold-out {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    position: relative;
}

.size-btn.sold-out:after,
.color-swatch.sold-out:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #ccc;
    transform: rotate(-45deg);
}

.color-swatch.sold-out {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Selection Errors */
.selection-error {
    color: #d32f2f;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: none;
    /* Hidden by default */
}

/* Stock Status Tag */
.stock-status-container {
    margin-bottom: 20px;
    display: none;
    /* Hidden by default */
}

.stock-tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-tag.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.stock-tag.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

/* Fit Note */
.fit-note {
    margin-bottom: 25px;
}

.fit-note p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* Add to Cart Section */
.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 50px;
    border: none;
    background-color: white;
    color: var(--primary-black);
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-input {
    width: 60px;
    height: 50px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
}

.add-to-cart-btn {
    flex: 1;
    background-color: #bdbdbd;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.add-to-cart-btn:hover {
    background-color: #9e9e9e;
}

.add-to-cart-btn.active {
    background-color: var(--primary-black);
}

/* Shipping Note */
.shipping-note {
    margin-top: 20px;
}

.shipping-note p {
    font-size: 11px;
    color: #666;
}

/* --- CORRECTIVE MOBILE OVERRIDES --- */




/* Recent edits appended desktop styles after the original media queries, causing overrides. We fix this here. */
@media (max-width: 768px) {

    /* 1. Fix Product Grid - 1 Column */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* 2. Fix Sidebar Filter Overlay */
    /* Must override the desktop .sidebar-filters rules */
    /* 2. Fix Sidebar Filter Overlay */
    /* Must override the desktop .sidebar-filters rules */
    .sidebar-filters {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        background-color: white;
        color: var(--primary-black);
        /* Fix: Text visible on white bg */
        z-index: 3000;
        padding: 20px;
        overflow-y: auto;

        /* Mobile Transformation */
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;

        /* Override specifically */
        margin-left: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        flex-shrink: 0;
        display: flex !important;
        flex-direction: column;
    }

    /* Fix Close Button Visibility */
    .close-filter-btn {
        color: var(--primary-black);
        padding: 10px;
    }

    /* 5. New Sections Mobile Layout */
    .collection-highlight {
        flex-direction: column-reverse;
        /* Text below image */
        padding: 40px 20px;
        gap: 30px;
    }

    .collection-content {
        align-items: center;
        /* Center text on mobile */
        text-align: center;
    }

    .collection-content h2 {
        font-size: 32px;
    }

    .collection-collage {
        width: 100%;
        height: 300px;
        /* Shorter on mobile */
        gap: 5px;
    }

    .main-categories-section {
        grid-template-columns: 1fr;
        /* 1 column */
        padding: 0 20px 40px 20px;
        gap: 40px;
    }

    .category-card-large {
        align-items: center;
        /* Center button */
    }

    .cat-btn-container {
        width: 100%;
        justify-content: center;
        /* Center alignment on mobile */
    }

    .btn-pill {
        width: 100%;
        /* Full width button on mobile */
        display: flex;
    }

    .sidebar-filters.mobile-open {
        transform: translateY(0) !important;
    }

    .sidebar-filters.hidden {
        /* Override desktop hidden active state logic */
        margin-left: 0 !important;
        opacity: 1 !important;
    }

    /* 3. Ensure Toolbar Switching */
    .toolbar-desktop {
        display: none !important;
    }

    .toolbar-mobile {
        display: flex !important;
    }

    /* 4. Ensure Mobile Specific Filter Sections are Visible */
    .mobile-filter-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .mobile-apply-container {
        display: block !important;
        padding-top: 20px;
        margin-top: auto;
        background-color: #f9f9f9;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: -20px;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-only-filters {
        display: block !important;
        margin-top: 20px;
    }

    /* Shop the Look Mobile */
    .shop-the-look-section {
        height: auto;
        min-height: 500px;
        margin-bottom: 40px;
    }

    .look-product-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: calc(100% - 40px);
        margin: 20px;
        padding: 20px;
    }

    .look-product-card:hover {
        transform: translateY(-5px);
    }

    .look-card-title {
        font-size: 18px;
    }

    .look-item {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .look-item-image {
        width: 70px;
        height: 70px;
    }

    .look-item-name {
        font-size: 13px;
    }

    .look-item-category {
        font-size: 11px;
    }

    .look-item-price {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-banner {
        flex-direction: column;
        padding: 0 20px 40px 20px;
        gap: 30px;
    }

    .banner-content {
        max-width: 100%;
        text-align: center;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-description {
        font-size: 13px;
    }

    .banner-image {
        width: 100%;
        height: 300px;
    }

    .reviews-header {
        padding: 0 20px 30px 20px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-marquee-container {
        padding-bottom: 30px;
    }

    .review-card {
        width: 300px;
        padding: 20px;
    }

    .review-title {
        font-size: 15px;
    }

    .review-text {
        font-size: 12px;
        min-height: 60px;
    }

    /* Final Section Mobile */
    .loyalty-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .loyalty-content {
        max-width: 100%;
        text-align: center;
    }

    .loyalty-labels {
        align-items: center;
        margin-bottom: 30px;
    }

    .loyalty-label {
        font-size: 10px;
        text-align: center;
    }

    .loyalty-title {
        font-size: 36px;
    }

    .loyalty-description {
        font-size: 13px;
    }

    .loyalty-image {
        width: 100%;
        height: 350px;
    }

    .mission-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 30px;
    }

    .mission-content {
        max-width: 100%;
    }

    .mission-title {
        font-size: 28px;
    }

    .mission-links {
        align-items: flex-start;
        width: 100%;
    }

    .mission-logo {
        font-size: 12px;
    }

    /* Product Details Page Mobile */
    .product-details-page {
        flex-direction: column;
    }

    .product-images-section {
        min-height: 60vh;
    }

    .image-counter {
        bottom: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .product-info-section {
        padding: 30px 20px;
        max-width: 100%;
    }

    .product-title {
        font-size: 24px;
    }

    .price-current {
        font-size: 20px;
    }

    .size-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .add-to-cart-section {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart-btn {
        width: 100%;
    }
}

/* --- Cart Drawer --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 33.333%;
    /* 1/3 of screen */
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.82, 0.085, 0.395, 0.895);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-drawer.active {
    right: 0;
}

/* Mobile responsive cart */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
    }
}

/* Cart Header */
.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.cart-header h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 0;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    background: #f6f6f6;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #000;
}

.cart-item-sku {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.cart-details-small {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.cart-price-current {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.cart-price-original {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 400;
}

/* Cart Footer */
.cart-footer {
    padding: 25px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s ease;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: #333;
}

/* Cart Count Badge */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
}

.remove-btn {
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    font-size: 11px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    text-align: left;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #d32f2f;
}

/* --- Checkout Body Override --- */
body.checkout-body {
    background-color: #fff !important;
    color: #000 !important;
}

body.checkout-body .main-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

body.checkout-body .logo,
body.checkout-body .icon-btn svg {
    color: #000;
}

body.checkout-body .main-nav.scrolled {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

body.checkout-body .site-footer {
    background-color: #f7f7f7;
    color: #000;
}

body.checkout-body .footer-watermark {
    color: #eee;
}

body.checkout-body .footer-list a,
body.checkout-body .footer-newsletter h2,
body.checkout-body .footer-newsletter p,
body.checkout-body .footer-legal a,
body.checkout-body .footer-copyright,
body.checkout-body .checkout-section h2 {
    color: #000;
}

body.checkout-body .checkout-input {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

body.checkout-body .top-bar,
body.checkout-body .ticker-bar {
    display: none;
}



.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    background: #f6f6f6;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #000;
}

.cart-item-sku {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.cart-details-small {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.cart-price-current {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.cart-price-original {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 400;
}

/* Cart Footer */
.cart-footer {
    padding: 25px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s ease;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: #333;
}

/* Cart Count Badge */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
}

.remove-btn {
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    font-size: 11px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    text-align: left;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #d32f2f;
}

/* --- Checkout Body Override --- */
body.checkout-body {
    background-color: #fff !important;
    color: #000 !important;
}

body.checkout-body .main-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

body.checkout-body .logo,
body.checkout-body .icon-btn svg {
    color: #000;
}

body.checkout-body .main-nav.scrolled {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

body.checkout-body .site-footer {
    background-color: #f7f7f7;
    color: #000;
}

body.checkout-body .footer-watermark {
    color: #eee;
}

body.checkout-body .footer-list a,
body.checkout-body .footer-newsletter h2,
body.checkout-body .footer-newsletter p,
body.checkout-body .footer-legal a,
body.checkout-body .footer-copyright,
body.checkout-body .checkout-section h2 {
    color: #000;
}

body.checkout-body .checkout-input {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

body.checkout-body .top-bar,
body.checkout-body .ticker-bar {
    display: none;
}

body.checkout-body .site-header {
    border-bottom: 1px solid #eee;
}

body.checkout-body .main-nav {
    position: relative;
    background-color: #fff !important;
}

/* --- Light Theme Overrides (For Products & Details) --- */
body.light-theme {
    background-color: #ffffff !important;
    color: #050505 !important;
}

body.light-theme .products-page-container,
body.light-theme .product-details-page {
    background-color: #ffffff !important;
    color: #050505 !important;
}

/* Ensure header/footer remain dark */
body.light-theme .site-header,
body.light-theme .main-nav,
body.light-theme .top-bar,
body.light-theme .ticker-bar,
body.light-theme .site-footer {
    background-color: var(--primary-black) !important;
    color: var(--text-white) !important;
}

body.light-theme .main-nav .logo a,
body.light-theme .main-nav .nav-icons button,
body.light-theme .site-header span,
body.light-theme .site-footer a,
body.light-theme .site-footer h2,
body.light-theme .site-footer p {
    color: var(--text-white) !important;
}

body.light-theme .main-nav .nav-icons svg {
    stroke: var(--text-white) !important;
}

/* Product Card Tweaks for Light Theme */
body.light-theme .product-image-container {
    background-color: #f9f9f9;
}

body.light-theme .product-name,
body.light-theme .product-category,
body.light-theme .results-count,
body.light-theme .filter-section h3,
body.light-theme .category-link,
body.light-theme .price-discounted {
    color: #050505 !important;
}

body.light-theme .sidebar-filters {
    background-color: #fff;
}

body.light-theme .product-info-section {
    background-color: #fff;
}

body.light-theme .filter-toggle-btn svg,
body.light-theme .sort-select,
body.light-theme .results-count,
body.light-theme .checkbox-container {
    color: #050505 !important;
    stroke: #050505 !important;
}

body.light-theme .category-link.active {
    color: var(--accent-green) !important;
    font-weight: 700;
}

body.light-theme .breadcrumb,
body.light-theme .breadcrumb a,
body.light-theme .breadcrumb span,
body.light-theme .product-title,
body.light-theme .rating-count,
body.light-theme .selection-label,
body.light-theme .selection-label strong,
body.light-theme .other-label,
body.light-theme .size-guide-link,
body.light-theme .size-btn {
    color: #050505 !important;
}

body.light-theme .size-btn.active {
    color: #ffffff !important;
}

body.light-theme .fit-note p,
body.light-theme .qty-btn,
body.light-theme .qty-input {
    color: #050505 !important;
}

/* =====================================================
   Search Overlay
   ===================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.96);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 720px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.35s ease;
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.search-input-wrap:focus-within {
    border-bottom-color: var(--accent-green, #39ff14);
}

.search-icon-inside {
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.5);
}

#searchInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.search-close-btn:hover {
    color: #fff;
}

.search-close-btn svg {
    stroke: currentColor;
}

.search-results {
    max-height: 60vh;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.search-hint,
.search-no-results {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

.search-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.search-result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
    display: block;
}

.search-result-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(57, 255, 20, 0.3);
}

.search-result-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #111;
}

.search-result-info {
    padding: 12px 14px;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.search-result-cat {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.search-result-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-green, #39ff14);
}

.search-result-price .original {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 5px;
}

.search-spinner {
    text-align: center;
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}


.similar-products-section,
.reviews-section {
    padding: 80px 40px;
    background-color: #fff;
    color: #000;
    border-top: 1px solid #eee;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.rating-overview {
    text-align: right;
}

.big-rating {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.rating-overview .stars {
    color: #ffc107;
    font-size: 24px;
    margin: 5px 0;
}

.total-reviews {
    font-size: 14px;
    color: #666;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.review-item {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-meta {
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    font-size: 16px;
    display: block;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-stars {
    color: #ffc107;
    margin-top: 5px;
}

.review-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.review-form-container {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.review-form-container h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input label:hover,
.rating-input label:hover~label,
.rating-input input:checked~label {
    color: #ffc107;
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    transition: opacity 0.3s;
}

.btn-black:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .review-form-container {
        order: -1;
    }
}

@media (max-width: 768px) {

    .similar-products-section,
    .reviews-section {
        padding: 60px 20px;
    }
}

/* --- Premium Glass Flash Messages --- */
.flash-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.flash-message {
    pointer-events: all;
    min-width: 320px;
    max-width: 450px;
    padding: 20px 24px;
    background: rgba(15, 15, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: flashSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flash-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.flash-message.hide {
    animation: flashSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.flash-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.success .flash-icon { background: rgba(161, 250, 255, 0.15); color: #a1faff; }
.error .flash-icon { background: rgba(255, 113, 108, 0.15); color: #ff716c; }
.info .flash-icon { background: rgba(196, 127, 255, 0.15); color: #c47fff; }

.flash-content { flex: 1; }
.flash-title { font-weight: 800; font-size: 15px; margin-bottom: 3px; letter-spacing: -0.02em; }
.flash-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

@keyframes flashSlideIn {
    from { opacity: 0; transform: translateX(50px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes flashSlideOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(30px) scale(0.9); }
}

/* --- Glass Confirmation Modal --- */
.flash-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flash-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.flash-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 32px;
    width: 90%;
    max-width: 380px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    text-align: center;
}

.flash-modal-overlay.active .flash-modal {
    transform: scale(1) translateY(0);
}

.flash-modal-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
}

.flash-modal-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    line-height: 1.6;
}

.flash-modal-buttons {
    display: flex;
    gap: 12px;
}

.flash-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.flash-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.flash-modal-btn.confirm {
    background: var(--primary);
    color: var(--on-primary);
}

.flash-modal-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(161,250,255,0.25);
}

.flash-modal-btn.cancel {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.flash-modal-btn.cancel:hover {
    background: rgba(255,255,255,0.1);
}