@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0a0514;
    --bg-card: #110a20;
    --primary: #9b2cfa;
    --secondary: #d946ef;
    --accent-gold: #c9a54e;
    --nav-gold: #f6c84c;
    --glass-bg: rgba(16, 8, 30, 0.75);
    --glass-border: rgba(155, 44, 250, 0.25);
    --text-main: #ffffff;
    --text-muted: #9a8cb5;
    --text-dim: #5c4d73;
    --surface-1: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.06);
    --glow: rgba(155, 44, 250, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    select,
    [role="button"],
    .nav-icon,
    .product-card,
    .marquee-item {
        cursor: none !important;
    }
}

#blyxu-cursor {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease;
}

#blyxu-cursor.is-visible {
    opacity: 1;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: #d946ef;
    box-shadow: 0 0 14px rgba(217, 70, 239, .9);
    translate: var(--cursor-x, -100px) var(--cursor-y, -100px);
}

.cursor-ring {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(217, 70, 239, .72);
    background: rgba(155, 44, 250, .08);
    box-shadow: 0 0 22px rgba(155, 44, 250, .32);
    translate: var(--ring-x, -100px) var(--ring-y, -100px);
    transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
}

#blyxu-cursor.is-hovering .cursor-ring {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 217, 105, .85);
    background: rgba(255, 217, 105, .1);
}

.wholesale-confetti {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    overflow: hidden;
}

.wholesale-confetti span {
    position: absolute;
    bottom: 18%;
    width: 8px;
    height: 14px;
    border-radius: 3px;
    background: var(--c);
    box-shadow: 0 0 12px color-mix(in srgb, var(--c), transparent 45%);
    animation: wholesaleConfettiBurst ease-out forwards;
}

.wholesale-confetti span:nth-child(3n) {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.wholesale-confetti span:nth-child(4n) {
    width: 12px;
    height: 6px;
}

@keyframes wholesaleConfettiBurst {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(.75);
    }

    12% {
        opacity: 1;
    }

    65% {
        opacity: 1;
        transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate3d(calc(var(--x) * 1.15), 120vh, 0) rotate(calc(var(--r) + 180deg)) scale(.9);
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0514 0%, #160d2e 40%, #1e0f3d 70%, #0a0514 100%);
    background-size: 400% 400%;
    animation: gradShift 20s ease infinite;
}

.bg-animation::before,
.bg-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .4;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.bg-animation::before {
    width: 700px;
    height: 700px;
    background: rgba(155, 44, 250, 0.2);
    top: -15%;
    left: -10%;
}

.bg-animation::after {
    width: 600px;
    height: 600px;
    background: rgba(217, 70, 239, 0.15);
    bottom: -15%;
    right: -10%;
    animation-delay: -12s;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(80px, 60px) scale(1.15)
    }
}

/* Particle canvas */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all .4s ease;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(246, 200, 76, .28));
}

.nav-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff 30%, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    border: 1px solid transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--nav-gold);
    background: rgba(246, 200, 76, .1);
    border-color: rgba(246, 200, 76, .48);
    box-shadow: 0 8px 24px rgba(246, 200, 76, .14), inset 0 0 18px rgba(246, 200, 76, .08);
    transform: translateY(-2px) scale(1.04);
}

.nav-links a.active {
    color: #fff4c3;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--nav-gold);
    box-shadow: 0 0 10px rgba(246, 200, 76, .55);
    opacity: 0;
    transform: translateX(-50%) scaleX(.4);
    transition: opacity .25s ease, transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-icon,
.nav-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: all .3s;
    color: #fff;
    position: relative;
}

.nav-icon-btn {
    font: inherit;
}

.nav-icon:hover,
.nav-icon-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* ===== MAIN BANNER (INICIO) ===== */
.main-banner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.main-banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.main-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 5, 20, 0.95) 0%, rgba(10, 5, 20, 0.6) 40%, transparent 100%),
        linear-gradient(0deg, rgba(10, 5, 20, 0.9) 0%, transparent 40%);
}

.main-banner-content {
    max-width: 600px;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s 0.4s ease;
}

.main-banner-slide.active .main-banner-content {
    opacity: 1;
    transform: translateY(0);
}

.main-banner-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.main-banner-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.main-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
    text-transform: uppercase;
    text-decoration: none;
}

.main-banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--glow);
    color: #fff;
}

.main-banner-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.main-banner-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.main-banner-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--glow);
}

.main-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    backdrop-filter: blur(10px);
}

.main-banner-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.main-banner-arrow.prev {
    left: 4%;
}

.main-banner-arrow.next {
    right: 4%;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 10;
    min-height: 76vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 76px 5% 42px;
    gap: 40px;
    overflow: hidden;
}

.hero-content {
    max-width: 560px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155, 44, 250, .15);
    border: 1px solid rgba(155, 44, 250, .35);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown .8s ease;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp .8s ease .15s both;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 440px;
    animation: fadeInUp .8s ease .3s both;
}

.hero-sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeInUp .8s ease .4s both;
}

.hero-sizes span {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all .3s;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-sizes span:hover,
.hero-sizes span.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    animation: fadeInUp .8s ease .5s both;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
    letter-spacing: .5px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow);
}

.btn-add-cart .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-price {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-price-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease .2s both;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(155, 44, 250, .15);
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 5, 20, .8) 100%);
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 5, 20, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    z-index: 5;
    opacity: 0;
}

.hero-carousel:hover .hero-carousel-btn {
    opacity: 1;
}

.hero-carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-carousel-btn.prev {
    left: 16px;
}

.hero-carousel-btn.next {
    right: 16px;
}

.hero-slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    z-index: 5;
}

.hero-slider-nav .line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .3);
}

.hero-socials {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.hero-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1px;
}

.gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smart-search {
    width: min(420px, 100%);
    margin-top: 14px;
}

.smart-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    color: #fff;
    font: inherit;
    font-size: 14px;
    padding: 0 14px;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.smart-search input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 3px rgba(155, 44, 250, .14);
}

.smart-search input::placeholder {
    color: var(--text-muted);
}

.admin-smart-search {
    width: 100%;
    margin: 0 0 18px;
}

.catalog-filter-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.category-select-wrap {
    min-width: 250px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 35px 0 16px;
    border: 1px solid rgba(155, 44, 250, 0.4);
    border-radius: 24px;
    background: rgba(155, 44, 250, 0.05);
    color: #fff;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.category-select-wrap:focus-within,
.category-select-wrap:hover {
    border-color: var(--primary);
    background: rgba(155, 44, 250, 0.15);
    box-shadow: 0 4px 20px rgba(155, 44, 250, 0.2);
    transform: translateY(-1px);
}

.category-select-wrap svg {
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.category-select-wrap:hover svg {
    transform: scale(1.1);
}

.category-select-wrap select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.category-select-wrap::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.category-select-wrap:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.category-select-wrap option {
    background: var(--bg-body);
    color: #fff;
    padding: 12px;
    font-size: 14px;
}

.btn-filter {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}

.btn-filter:hover {
    background: var(--surface-2);
    border-color: var(--glass-border);
}

.catalog-load-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0 8px;
    min-height: 104px;
}

.catalog-load-status {
    color: var(--text-muted);
    font-size: 13px;
}

.catalog-load-more {
    min-width: 160px;
    min-height: 46px;
    background: rgba(255, 255, 255, .04);
}

.catalog-load-more:disabled {
    opacity: .55;
    cursor: wait;
}

/* ===== PRODUCT GRID ===== */
.collection-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 5%;
}

.wholesale-catalog-section {
    display: none;
    border-top: 1px solid rgba(246, 200, 76, .18);
    background: linear-gradient(180deg, rgba(246, 200, 76, .05), rgba(10, 5, 20, 0));
}

.wholesale-catalog-section.open {
    display: block;
}

.wholesale-page-section {
    padding-top: 120px;
    border-top: 1px solid rgba(246, 200, 76, .18);
    background: linear-gradient(180deg, rgba(246, 200, 76, .05), rgba(10, 5, 20, 0));
}

.contact-page {
    position: relative;
    z-index: 10;
    padding: 120px 5% 88px;
}

.contact-concierge {
    color: #fff;
}

.contact-hero-luxury {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(246, 200, 76, .14);
    border-radius: 8px;
    background: #05020b;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(5, 2, 11, .2), rgba(0, 0, 0, .75)),
        repeating-linear-gradient(90deg, rgba(246, 200, 76, .16) 0 2px, transparent 2px 32px),
        radial-gradient(circle at 50% 18%, rgba(246, 200, 76, .22), transparent 34%),
        linear-gradient(180deg, rgba(16, 8, 30, .1), rgba(3, 1, 8, .96));
    opacity: .92;
    animation: contactHallGlow 8s ease-in-out infinite alternate;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(246, 200, 76, .1);
    border-radius: 50% 50% 0 0;
    box-shadow: inset 0 0 80px rgba(246, 200, 76, .08);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 20px;
}

.contact-kicker,
.contact-card-label {
    color: var(--nav-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 22px 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 8vw, 88px);
    line-height: .95;
    color: #f8d65c;
    text-shadow: 0 0 30px rgba(246, 200, 76, .18);
}

.contact-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .72);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.contact-hero-btn,
.contact-request-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 32px;
    padding: 0 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    background: linear-gradient(135deg, #f8dc63, #c79d12);
    color: #09030f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(246, 200, 76, .22);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.contact-hero-btn:hover,
.contact-request-form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 24px 60px rgba(246, 200, 76, .3);
}

.contact-grid-luxury,
.contact-experience-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 24px;
    margin-top: 28px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    background: rgba(18, 11, 27, .82);
    border: 1px solid rgba(246, 200, 76, .22);
    border-radius: 8px;
    padding: 32px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(246, 200, 76, .08) 48%, transparent 70%);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .35s ease, transform .65s ease;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 200, 76, .46);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .36), 0 0 32px rgba(246, 200, 76, .08);
}

.contact-card:hover::before {
    opacity: 1;
    transform: translateX(50%);
}

.contact-card-main {
    min-height: 250px;
}

.contact-card-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--nav-gold);
}

.contact-card h2 {
    margin: 12px 0 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(26px, 4vw, 38px);
    color: #f8d65c;
    letter-spacing: 0;
}

.contact-card p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.contact-schedule-card h2 {
    font-size: 22px;
}

.contact-hours-timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 22px;
    padding-left: 22px;
}

.contact-hours-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--nav-gold), rgba(246, 200, 76, .1));
}

.contact-time-node {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.contact-time-node::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5d4a1a;
    border: 1px solid var(--nav-gold);
}

.contact-time-node.active::before {
    background: var(--nav-gold);
    box-shadow: 0 0 0 8px rgba(246, 200, 76, .08), 0 0 20px rgba(246, 200, 76, .5);
    animation: contactPulse 1.8s ease-in-out infinite;
}

.contact-time-node strong {
    color: var(--nav-gold);
    white-space: nowrap;
}

.contact-clock-card {
    background: linear-gradient(135deg, rgba(36, 20, 54, .88), rgba(16, 8, 30, .88));
}

.contact-live-clock {
    margin-top: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 7vw, 54px);
    color: #f8d65c;
    text-shadow: 0 0 22px rgba(246, 200, 76, .18);
}

.contact-channel-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-action,
.contact-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(246, 200, 76, .34);
    color: var(--nav-gold);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-action:hover,
.contact-links a:hover {
    background: rgba(246, 200, 76, .1);
    box-shadow: 0 12px 28px rgba(246, 200, 76, .12);
    transform: translateY(-2px);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-map-panel {
    min-height: 520px;
    border: 1px solid rgba(246, 200, 76, .18);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-surface {
    position: relative;
    height: 100%;
    min-height: 520px;
    background:
        linear-gradient(rgba(5, 2, 11, .38), rgba(5, 2, 11, .92)),
        repeating-linear-gradient(35deg, transparent 0 58px, rgba(255, 255, 255, .05) 60px 62px),
        repeating-linear-gradient(125deg, transparent 0 80px, rgba(246, 200, 76, .06) 82px 84px),
        #15101d;
}

.contact-map-surface iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(.9) contrast(1.08) brightness(.42) sepia(.22) hue-rotate(220deg);
    opacity: .72;
}

.contact-map-surface::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 2, 11, .1), rgba(5, 2, 11, .42)), radial-gradient(circle at 52% 52%, rgba(246, 200, 76, .16), transparent 28%);
    pointer-events: none;
}

.contact-map-card {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    padding: 20px 24px;
    border: 1px solid rgba(246, 200, 76, .24);
    border-radius: 8px;
    background: rgba(18, 11, 27, .86);
    backdrop-filter: blur(16px);
}

.contact-map-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--nav-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-map-card strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
}

.contact-map-pin {
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #f8dc63, #a97d0e);
    transform: rotate(-45deg);
    box-shadow: 0 0 28px rgba(246, 200, 76, .35);
    animation: contactPinFloat 3s ease-in-out infinite;
}

.contact-map-pin::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #09030f;
}

.pin-one {
    left: 50%;
    top: 52%;
}

.pin-two {
    left: 28%;
    top: 72%;
    animation-delay: .5s;
    opacity: .6;
}

.pin-three {
    left: 78%;
    top: 38%;
    animation-delay: 1s;
    opacity: .6;
}

.contact-request-card h2 {
    font-size: clamp(32px, 5vw, 44px);
}

.contact-request-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
    width: 100%;
    min-height: 46px;
    border: none;
    border-bottom: 1px solid rgba(246, 200, 76, .24);
    background: transparent;
    color: #fff;
    border-radius: 0;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 11px;
}

.contact-request-form select option {
    background: #110a20;
    color: #fff;
}

.contact-request-form textarea,
.contact-request-form select,
.contact-request-form button {
    grid-column: 1 / -1;
}

.contact-request-form textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-request-form button {
    width: 100%;
    margin-top: 0;
}

@keyframes contactHallGlow {
    from {
        filter: brightness(.86);
        transform: scale(1);
    }

    to {
        filter: brightness(1.08);
        transform: scale(1.03);
    }
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.24);
    }
}

@keyframes contactPinFloat {
    0%, 100% {
        margin-top: 0;
    }

    50% {
        margin-top: -12px;
    }
}

@media(max-width:900px) {
    .contact-grid-luxury,
    .contact-experience-grid,
    .contact-request-form {
        grid-template-columns: 1fr;
    }

    .contact-hero-luxury {
        min-height: 440px;
    }
}

@media(max-width:768px) {
    .contact-page {
        padding: 100px 5% 60px;
    }

    .contact-card {
        padding: 24px;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-6px);
        border-color: var(--glass-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 30px rgba(155, 44, 250, .12);
    }
    .product-card:hover .product-card-img img {
        transform: scale(1.08);
    }
}

.product-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a0e2e, #0d0718);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-new {
    background: var(--primary);
    color: #fff;
}

.badge-sale {
    background: #ef4444;
    color: #fff;
}

.badge-out {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 8px 24px rgba(239, 68, 68, .32);
}

.badge-low {
    background: linear-gradient(135deg, #ffd84d, #f59e0b);
    color: #180b20;
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: 0 8px 24px rgba(245, 158, 11, .3);
}

.product-card-quick {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(155, 44, 250, .8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s;
    color: #fff;
    border: none;
    cursor: pointer;
}

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

.product-card-info {
    padding: 16px;
}

.product-card-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-card-desc {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.product-card-variant {
    font-size: 11px;
    color: var(--accent);
    margin: -4px 0 10px;
    line-height: 1.35;
}

.product-card-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
}

.color-dot:hover,
.color-dot.active {
    border-color: #fff;
    transform: scale(1.2);
}

.product-card-price {
    font-size: 16px;
    font-weight: 700;
}

.product-card-price.discount-active {
    color: #ffd969;
    text-shadow: 0 0 12px rgba(255, 217, 105, 0.4);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    from { text-shadow: 0 0 8px rgba(255, 217, 105, 0.3); }
    to { text-shadow: 0 0 16px rgba(255, 217, 105, 0.8), 0 0 4px rgba(255, 255, 255, 0.5); }
}

.product-card-price .old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-left: 8px;
    font-weight: 400;
    text-shadow: none;
}

.product-card-price.price-hidden {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.price-consult-btn {
    display: inline-flex;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}

.price-consult-btn:hover {
    color: var(--secondary);
}

.price-consult-btn:disabled {
    color: var(--text-dim);
    cursor: not-allowed;
    opacity: .62;
}

/* Featured card (first big one) */
.product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.product-card.featured .product-card-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 500px;
}

.product-card.featured .product-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(10, 5, 20, .9));
}

.product-card.featured .product-card-name {
    font-size: 20px;
    font-weight: 800;
}

/* ===== LOADING ===== */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(155, 44, 250, .2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.loading-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 180;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 7px 12px 7px 8px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, .32);
    background: rgba(9, 3, 17, .88);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3), 0 0 18px rgba(37, 211, 102, .18);
    backdrop-filter: blur(14px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, .7);
    background: rgba(13, 25, 18, .92);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .36), 0 0 26px rgba(37, 211, 102, .26);
}

.floating-whatsapp-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 35% 25%, #ffd969, #9b2cfa 48%, #180b20 100%);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, .28), inset 0 1px 4px rgba(255, 255, 255, .28);
}

.floating-whatsapp-logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .42));
}

@media(max-width:560px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        min-height: 38px;
        padding: 6px 10px 6px 7px;
        font-size: 11px;
    }

    .floating-whatsapp-logo {
        width: 25px;
        height: 25px;
    }
}

/* ===== FLOATING PROMO ===== */
.inline-promo-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(155, 44, 250, 0.15), rgba(217, 70, 239, 0.15));
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 16px;
    padding: 12px 20px;
    margin: 0 auto;
    max-width: fit-content;
    box-shadow: 0 0 24px rgba(217, 70, 239, 0.2), inset 0 0 12px rgba(155, 44, 250, 0.1);
    animation: inlinePromoPulse 2s infinite alternate;
    backdrop-filter: blur(8px);
}

@keyframes inlinePromoPulse {
    0% { box-shadow: 0 0 16px rgba(217, 70, 239, 0.2), inset 0 0 8px rgba(155, 44, 250, 0.1); }
    100% { box-shadow: 0 0 32px rgba(217, 70, 239, 0.5), inset 0 0 16px rgba(155, 44, 250, 0.3); border-color: rgba(217, 70, 239, 0.6); }
}

.inline-promo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #9b2cfa, #d946ef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(155, 44, 250, 0.4);
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

.inline-promo-number {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.inline-promo-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 24px;
}

.inline-promo-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.inline-promo-msg {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.inline-promo-timer-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inline-promo-timer-icon {
    margin-right: 8px;
    font-size: 14px;
    animation: spinSlow 4s linear infinite;
}

@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

.inline-promo-timer {
    font-family: monospace;
    font-size: 15px;
    font-weight: 800;
    color: #ffd969;
    letter-spacing: 1px;
}

@media(max-width: 600px) {
    .inline-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .inline-promo-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .inline-promo-content {
        margin-right: 0;
        margin-bottom: 16px;
        align-items: center;
    }
    
    .inline-promo-title {
        font-size: 15px;
    }
    
    .inline-promo-msg {
        font-size: 12px;
    }
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--glass-border);
    z-index: 201;
    transition: right .4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    align-items: flex-start;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--surface-1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
}

.cart-item-price {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 4px;
}

.cart-item-qty {
    display: inline-grid;
    grid-template-columns: 30px 46px 30px;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px;
    border: 1px solid rgba(246, 200, 76, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(246, 200, 76, .12);
    color: var(--nav-gold);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.cart-item-qty button:hover {
    background: rgba(246, 200, 76, .22);
    transform: scale(1.06);
}

.cart-item-qty input {
    width: 46px;
    height: 30px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: center;
    font-weight: 800;
    outline: none;
}

.cart-item-subtotal {
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 18px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}

.btn-checkout:hover {
    box-shadow: 0 8px 30px var(--glow);
}

.cart-consult-note {
    margin: 0 0 14px;
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.45;
}

.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-dim);
    font-size: 14px;
}

.cart-note-input {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
    min-height: 60px;
    outline: none;
    transition: border-color 0.3s;
}

.cart-note-input:focus {
    border-color: var(--primary);
}

/* ===== WHOLESALE ACCESS ===== */
.wholesale-overlay {
    position: fixed;
    inset: 0;
    z-index: 230;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 2, 20, .85);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

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

.wholesale-panel {
    position: relative;
    width: min(420px, 100%);
    padding: 34px;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(17, 10, 32, .96), rgba(34, 16, 64, .94));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55), 0 0 40px rgba(155, 44, 250, .18);
    text-align: center;
    transform: translateY(18px) scale(.98);
    transition: transform .3s ease;
}

.wholesale-overlay.open .wholesale-panel {
    transform: translateY(0) scale(1);
}

.wholesale-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.wholesale-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 18px rgba(155, 44, 250, .35));
}

.wholesale-kicker {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wholesale-panel h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.wholesale-form {
    display: grid;
    gap: 12px;
}

.wholesale-form input {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font: inherit;
    font-size: 18px;
    text-align: center;
    outline: none;
}

.wholesale-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 44, 250, .18);
}

.wholesale-form button {
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.wholesale-error {
    display: none;
    margin-top: 14px;
    color: #fca5a5;
    font-size: 13px;
    font-weight: 700;
}

.wholesale-error.show {
    display: block;
}

/* Vault-style access panels */
.wholesale-overlay {
    background: rgba(10, 2, 20, .96);
}

.wholesale-panel {
    width: min(410px, 100%);
    padding: 38px 42px 34px;
    border-radius: 18px;
    border: 1px solid rgba(244, 196, 65, .18);
    background:
        radial-gradient(circle at 50% -12%, rgba(244, 196, 65, .12), transparent 34%),
        linear-gradient(180deg, rgba(26, 18, 38, .94), rgba(14, 8, 24, .96));
    box-shadow:
        0 34px 92px rgba(0, 0, 0, .74),
        0 0 44px rgba(155, 44, 250, .18),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
}

.wholesale-logo,
.wholesale-panel h2,
.wholesale-close {
    display: none;
}

.wholesale-panel::before {
    content: 'BLYXU';
    display: block;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 0 #a855f7, -2px 0 #f4c441, 0 12px 28px rgba(0, 0, 0, .45);
    margin-bottom: 6px;
}

.wholesale-kicker {
    color: #f4c441;
    font-size: 10px;
    letter-spacing: 5px;
    margin-bottom: 24px;
}

.wholesale-form input {
    height: 58px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, .45);
    background: rgba(7, 3, 16, .72);
    letter-spacing: 7px;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), 0 0 22px rgba(168, 85, 247, .14);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.wholesale-form input:focus {
    border-color: rgba(244, 196, 65, .74);
    background: rgba(9, 4, 19, .9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 0 0 3px rgba(244, 196, 65, .1), 0 0 32px rgba(168, 85, 247, .26);
}

.wholesale-form input::placeholder {
    color: rgba(255, 255, 255, .34);
    letter-spacing: 7px;
}

.wholesale-form button {
    position: relative;
    height: 48px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffe477, #d8ac16 52%, #f4c441);
    color: #09030f;
    font-size: 11px;
    box-shadow: 0 16px 34px rgba(244, 196, 65, .2);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.wholesale-form button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .55) 48%, transparent 62% 100%);
    transform: translateX(-120%);
    animation: wholesaleButtonSheen 2.8s ease-in-out infinite;
}

.wholesale-form button:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 20px 42px rgba(244, 196, 65, .3);
}

.wholesale-form button:active {
    transform: translateY(0) scale(.98);
}

@keyframes wholesaleButtonSheen {
    0%, 48% {
        transform: translateX(-120%);
    }

    78%, 100% {
        transform: translateX(120%);
    }
}

.brand-loader {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(155, 44, 250, .24), rgba(10, 5, 20, .96) 54%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.brand-loader.open {
    opacity: 1;
    pointer-events: auto;
}

.brand-loader-card {
    width: min(360px, calc(100vw - 48px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.brand-loader-card img {
    width: 116px;
    height: 116px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(217, 70, 239, .35));
    animation: loaderLogoPulse 1.2s ease-in-out infinite;
}

.brand-loader-card span {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 5px;
}

.brand-loader-bar {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .1);
}

.brand-loader-progress {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #f0abfc);
    transform-origin: left;
    transform: scaleX(0);
}

.brand-loader.open .brand-loader-progress {
    animation: brandLoadBar 1.35s ease forwards;
}

@keyframes brandLoadBar {
    to {
        transform: scaleX(1);
    }
}

@keyframes loaderLogoPulse {
    50% {
        transform: scale(1.04);
        opacity: .82;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 10;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: color .3s;
}

.footer ul a:hover {
    color: var(--secondary);
}

.footer-bottom {
    grid-column: 1/-1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-sizes {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .hero-socials {
        display: none;
    }

    .product-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .product-card.featured .product-card-img {
        min-height: 300px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 5, 20, .97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        backdrop-filter: blur(20px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 4%;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .catalog-filter-bar,
    .category-select-wrap {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-carousel {
        max-width: 360px;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* ===== GLASS PRODUCT SHOWCASE ===== */
.product-showcase {
    min-height: 78vh;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
    padding: 96px 5% 68px;
    gap: 24px;
    isolation: isolate;
}

.product-showcase::before {
    content: '';
    position: absolute;
    inset: 12% 3% 9%;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 36px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 36%, rgba(11, 224, 255, .05) 68%, rgba(236, 72, 153, .07)),
        rgba(255, 255, 255, .018);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 34px 90px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px);
}

.product-showcase::after {
    content: '';
    position: absolute;
    inset: 13% 4%;
    z-index: -1;
    background:
        linear-gradient(100deg, transparent 0 12%, rgba(255, 255, 255, .16) 13%, transparent 14% 52%, rgba(11, 224, 255, .13) 53%, transparent 54% 100%);
    opacity: .55;
    transform: skewY(-4deg);
    pointer-events: none;
}

.product-showcase .hero-content {
    max-width: 610px;
}

.product-showcase .hero-title {
    font-size: clamp(40px, 5.8vw, 78px);
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-showcase .hero-subtitle {
    max-width: 520px;
    font-size: 17px;
}

.product-showcase .hero-sizes {
    flex-wrap: wrap;
}

.product-showcase .hero-sizes span {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.glass-carousel {
    width: min(760px, 100%);
    max-width: none;
    min-height: 430px;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .025)),
        radial-gradient(circle at 18% 18%, rgba(11, 224, 255, .2), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(236, 72, 153, .22), transparent 30%),
        rgba(11, 6, 22, .55);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55), 0 0 55px rgba(155, 44, 250, .22), inset 0 1px 0 rgba(255, 255, 255, .16);
    backdrop-filter: blur(20px);
}

.glass-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .14), transparent 18% 82%, rgba(255, 255, 255, .1)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 88px);
    pointer-events: none;
}

.glass-carousel .hero-carousel-track {
    height: 100%;
    min-height: 430px;
    align-items: center;
    gap: 22px;
    padding: 42px 82px;
    transition: transform .7s cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
}

.product-glass-card {
    flex: 0 0 clamp(205px, 28vw, 255px);
    min-width: clamp(205px, 28vw, 255px);
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .045));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .22);
    cursor: pointer;
    transform: scale(.88) translateY(16px);
    opacity: .55;
    filter: saturate(.72) brightness(.82);
    transition: transform .55s ease, opacity .55s ease, filter .55s ease, border-color .55s ease, box-shadow .55s ease;
    backdrop-filter: blur(18px);
}

.product-glass-card.active {
    transform: scale(1.08) translateY(-10px);
    opacity: 1;
    filter: saturate(1.22) brightness(1.08);
    border-color: rgba(236, 72, 153, .72);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .52), 0 0 42px rgba(217, 70, 239, .42), inset 0 1px 0 rgba(255, 255, 255, .3);
    animation: cardPulseGlow 2.4s ease-in-out infinite;
}

.product-glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, .22), transparent 28% 64%, rgba(255, 255, 255, .1));
    opacity: .55;
    pointer-events: none;
}

.product-glass-media {
    position: relative;
    height: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, #241048, #0be0ff 46%, #ec4899);
}

.product-glass-media.neon-aqua {
    background: linear-gradient(135deg, #08111f, #0be0ff 42%, #9b2cfa);
}

.product-glass-media.neon-gold {
    background: linear-gradient(135deg, #1f1235, #c9a54e 45%, #ec4899);
}

.product-glass-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    opacity: .9;
    transform: scale(1.08);
    transition: transform .7s ease, opacity .4s ease;
}

.product-glass-card.active .product-glass-media img,
.product-glass-card:hover .product-glass-media img {
    transform: scale(1.16);
    opacity: 1;
}

.product-glass-media.is-fallback::before {
    content: 'BLYXU';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .42);
}

.product-glass-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(7, 3, 16, .58);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(12px);
}

.product-glass-media .product-card-badge {
    left: auto;
    right: 12px;
    top: 12px;
    z-index: 2;
}

.marquee-item .product-card-badge {
    z-index: 2;
    max-width: calc(100% - 24px);
}

.product-glass-info {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    padding: 14px;
}

.product-glass-info span {
    color: #0be0ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.product-glass-info h3 {
    min-height: 42px;
    font-size: 15px;
    line-height: 1.18;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-glass-info p {
    min-height: 34px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-glass-info strong {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 12px;
    box-shadow: 0 10px 24px rgba(155, 44, 250, .34);
}

.glass-carousel .hero-carousel-btn {
    opacity: 1;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .32);
}

.glass-carousel .hero-carousel-btn.prev {
    left: 18px;
}

.glass-carousel .hero-carousel-btn.next {
    right: 18px;
}

.glass-carousel .hero-slider-nav {
    right: 24px;
    bottom: 20px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 3, 18, .48);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
}

@keyframes cardPulseGlow {
    50% {
        box-shadow: 0 28px 76px rgba(0, 0, 0, .54), 0 0 58px rgba(11, 224, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .3);
    }
}

@media(max-width:1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        padding-top: 112px;
    }

    .product-showcase::before {
        inset: 7% 3% 5%;
    }

    .glass-carousel {
        width: min(720px, 100%);
    }
}

@media(max-width:768px) {
    .product-showcase {
        min-height: auto;
        padding: 106px 4% 44px;
    }

    .product-showcase .hero-title {
        font-size: clamp(34px, 11vw, 52px);
    }

    .product-showcase .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .glass-carousel {
        min-height: 390px;
        border-radius: 22px;
    }

    .glass-carousel .hero-carousel-track {
        min-height: 390px;
        padding: 34px 64px;
        gap: 16px;
    }

    .product-glass-card {
        flex-basis: min(68vw, 235px);
        min-width: min(68vw, 235px);
        height: 318px;
    }
}

@media(max-width:480px) {
    .glass-carousel .hero-carousel-track {
        padding-inline: 44px;
    }

    .glass-carousel .hero-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .glass-carousel .hero-carousel-btn.prev {
        left: 8px;
    }

    .glass-carousel .hero-carousel-btn.next {
        right: 8px;
    }
}

.glass-carousel .hero-carousel-track.is-loading {
    justify-content: center;
    padding: 42px;
    transform: none !important;
}

.product-carousel-loading {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255, 255, 255, .78);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-carousel-track.is-loading ~ .hero-carousel-btn,
.hero-carousel-track.is-loading ~ .hero-slider-nav {
    display: none;
}

.collection-section {
    scroll-margin-top: 92px;
}
/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-container {
    position: relative;
    z-index: 10;
    isolation: isolate;
    padding: 140px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 11;
}

.product-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(155, 44, 250, 0.08));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s;
}

.product-main-img.is-fallback img {
    width: 60%;
    height: 60%;
    opacity: .75;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 12;
    width: 100%;
    min-width: 0;
    padding: 34px;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: rgba(17, 10, 32, .72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    backdrop-filter: blur(14px);
    color: var(--text-main);
    opacity: 1;
    visibility: visible;
}

.product-info,
.product-info * {
    -webkit-text-fill-color: currentColor;
}

.product-info-cat {
    font-size: 14px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.product-info-name {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    overflow-wrap: anywhere;
}

.product-info-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.product-info-price .old {
    font-size: 20px;
    color: var(--text-dim);
    text-decoration: line-through;
    font-weight: 400;
}

.product-info-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.product-info-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-buy-now {
    flex: 1;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    min-height: 58px;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-buy-now:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-specs {
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    color: #fff;
    font-weight: 600;
}

.recommended-section {
    position: relative;
    z-index: 10;
    padding: 80px 5%;
    border-top: 1px solid var(--glass-border);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-not-found {
    grid-column: 1 / -1;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
    }

    .product-gallery {
        position: static;
    }

    .product-main-img {
        max-width: 560px;
        margin: 0 auto;
        border-radius: 18px;
    }

    .product-info {
        padding: 24px;
        border-radius: 18px;
    }

    .product-info-name {
        font-size: 32px;
    }

    .product-info-actions {
        flex-direction: column;
    }
}

@media(max-width:480px) {
    .products-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-info {
        padding: 10px;
    }

    .product-card-name {
        font-size: 11px;
    }
}

/* ===== LUXURY PRODUCT DETAIL REFRESH ===== */
body.dark-mode {
    background:
        radial-gradient(circle at 18% 8%, rgba(155, 44, 250, .18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(255, 198, 41, .08), transparent 28%),
        #07020d;
}

.product-detail-luxury {
    max-width: 1280px;
    padding: 132px 5% 72px;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, .92fr);
    gap: clamp(34px, 5vw, 86px);
}

.product-detail-luxury::before {
    content: "";
    position: absolute;
    inset: 92px 5% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 196, 65, .32), transparent);
    opacity: .85;
}

.product-detail-luxury .product-gallery {
    top: 112px;
}

.product-detail-luxury .product-main-img {
    border-radius: 10px;
    border: 1px solid rgba(244, 196, 65, .28);
    background:
        radial-gradient(circle at 50% 34%, rgba(244, 196, 65, .10), transparent 32%),
        linear-gradient(145deg, rgba(21, 9, 37, .92), rgba(5, 2, 10, .98));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, .52),
        inset 0 0 0 1px rgba(255, 255, 255, .035);
    cursor: zoom-in;
}

.product-detail-luxury .product-main-img img {
    object-fit: cover;
    padding: 0;
}

.product-detail-luxury .product-main-img img {
    opacity: 0;
    transform: scale(1.012);
    transition: opacity .28s ease, transform .34s ease;
}

.product-detail-luxury .product-main-img img.is-ready,
.product-detail-luxury .product-main-img:not(.is-loading) img {
    opacity: 1;
    transform: scale(1);
}

.product-detail-luxury .product-main-img.is-loading img {
    opacity: .38;
}

.product-detail-luxury .product-main-img.is-fallback img {
    object-fit: contain;
    padding: 54px;
}

.product-detail-luxury .product-thumbnails {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: thin;
}

.product-detail-luxury .gallery-thumb {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(244, 196, 65, .12);
    background: rgba(18, 8, 31, .8);
    opacity: .64;
    transition: border-color .2s, opacity .2s, transform .2s, box-shadow .2s;
}

.product-detail-luxury .gallery-thumb:hover,
.product-detail-luxury .gallery-thumb.active {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--secondary);
    box-shadow: 0 12px 28px rgba(244, 196, 65, .13);
}

.product-detail-luxury .product-info {
    gap: 22px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 22px;
    border: 1px solid rgba(155, 44, 250, .34);
    background:
        linear-gradient(180deg, rgba(17, 7, 31, .96), rgba(7, 2, 13, .97)),
        rgba(9, 3, 17, .96);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

.product-detail-luxury .product-stock-alert {
    width: fit-content;
    margin-bottom: -4px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-detail-luxury .product-stock-alert.is-low {
    background: linear-gradient(135deg, #ffd84d, #f59e0b);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #180b20;
    box-shadow: 0 10px 26px rgba(245, 158, 11, .26);
}

.product-detail-luxury .product-stock-alert.is-out {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    box-shadow: 0 10px 26px rgba(239, 68, 68, .28);
}

.product-detail-luxury .product-info-cat {
    color: #f4c441;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 900;
}

.product-detail-luxury .product-info-name {
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
    letter-spacing: 0;
    color: #fff;
    max-width: 11ch;
}

.product-detail-luxury .product-info-price {
    color: #a83cff;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.1;
}

.product-detail-luxury .product-info-price .old {
    color: rgba(255, 255, 255, .34);
}

.product-detail-luxury .product-info-desc {
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.75;
    max-width: 56ch;
}

.product-detail-luxury #product-variations {
    padding-top: 4px;
}

.product-detail-luxury #product-variations h3 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.detail-variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-variant-chip {
    min-width: 72px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.detail-variant-chip:hover,
.detail-variant-chip.active {
    border-color: #f4c441;
    color: #f4c441;
    background: rgba(244, 196, 65, .08);
    transform: translateY(-1px);
}

.product-detail-luxury .product-specs {
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(244, 196, 65, .2);
}

.product-detail-luxury .spec-item {
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    gap: 18px;
}

.product-detail-luxury .spec-label {
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    font-weight: 800;
}

.product-detail-luxury .spec-value {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-align: right;
}

.product-detail-luxury .product-info-actions.has-consult-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.product-detail-luxury .btn-buy-now {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f4c441, #ffd969);
    color: #180b20;
    box-shadow: 0 18px 42px rgba(244, 196, 65, .18);
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
}

.product-detail-luxury .btn-buy-now:hover {
    box-shadow: 0 22px 52px rgba(244, 196, 65, .28);
}

.product-detail-luxury .btn-consult-direct {
    width: 100%;
    min-height: 58px;
    margin-top: 0;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .25s;
}

.product-detail-luxury .btn-consult-direct:hover {
    border-color: rgba(244, 196, 65, .45);
    color: #ffd969;
}

.product-detail-luxury .cart-consult-note {
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px 14px;
    border: 1px solid rgba(244, 196, 65, .16);
    border-radius: 10px;
    background: rgba(244, 196, 65, .06);
    color: rgba(255, 255, 255, .68);
    font-size: 12.5px;
    line-height: 1.45;
}

@media(max-width:560px) {
    .product-detail-luxury .product-info-actions.has-consult-actions {
        grid-template-columns: 1fr;
    }

    .product-detail-luxury .btn-buy-now,
    .product-detail-luxury .btn-consult-direct {
        min-height: 54px;
    }
}

.recommended-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 5% 92px;
    border-top: 1px solid rgba(244, 196, 65, .18);
}

.recommended-header {
    margin-bottom: 32px;
}

.recommended-header .section-title {
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    text-transform: none;
}

.recommended-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
    padding: 0;
}

.recommended-section .product-card {
    min-width: 0;
    border-radius: 10px;
    border-color: rgba(244, 196, 65, .18);
    background: rgba(15, 8, 25, .86);
}

@media(max-width:980px) {
    .recommended-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.product-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(3, 0, 7, .9);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    cursor: zoom-out;
}

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

.product-zoom-overlay img {
    max-width: min(92vw, 1200px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(244, 196, 65, .28);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .7);
    transition: transform .22s ease;
    cursor: zoom-in;
}

.product-zoom-overlay.zoomed img {
    transform: scale(1.75);
    cursor: zoom-out;
}

.product-zoom-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(244, 196, 65, .24);
    background: rgba(12, 5, 20, .88);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .product-detail-luxury {
        grid-template-columns: 1fr;
        padding-top: 104px;
    }

    .product-detail-luxury .product-info-name {
        max-width: 100%;
    }

    .product-detail-luxury .gallery-thumb {
        width: 82px;
        height: 82px;
    }

    .recommended-section .products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .product-detail-luxury {
        padding-inline: 18px;
    }

    .product-detail-luxury .product-info {
        padding: 24px 20px;
    }

    .product-detail-luxury .spec-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .recommended-section .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-luxury .spec-value {
        text-align: left;
    }
}

/* ===== IMAGE CAROUSEL MARQUEE ===== */
.allies-section {
    position: relative;
    z-index: 10;
    padding: 46px 5% 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(5, 2, 11, .92), rgba(17, 10, 32, .72));
    border-top: 1px solid rgba(246, 200, 76, .16);
}

.allies-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(246, 200, 76, .08), transparent),
        repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .025) 72px 73px);
    opacity: .7;
    pointer-events: none;
}

.allies-header {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.allies-header span {
    color: var(--nav-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.allies-header strong {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.allies-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 22px;
}

.ally-card {
    position: relative;
    min-height: 190px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(246, 200, 76, .2);
    border-radius: 8px;
    background: rgba(9, 3, 15, .78);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .32);
    animation: allyFloat 4.6s ease-in-out infinite;
}

.ally-card-original {
    animation-delay: .7s;
}

.ally-card::before {
    content: '';
    position: absolute;
    inset: -60%;
    background: conic-gradient(from 90deg, transparent, rgba(246, 200, 76, .2), transparent 35%);
    animation: allySpin 6s linear infinite;
    opacity: .6;
}

.ally-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(18, 11, 27, .94), rgba(5, 2, 11, .9));
}

.ally-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(246, 200, 76, .16);
    filter: blur(34px);
    animation: allyGlow 2.8s ease-in-out infinite alternate;
    z-index: 1;
}

.ally-card img {
    position: relative;
    z-index: 2;
    max-width: min(72%, 340px);
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .45));
    transition: transform .35s ease, filter .35s ease;
}

.ally-card:hover img {
    transform: scale(1.07);
    filter: drop-shadow(0 0 24px rgba(246, 200, 76, .28));
}

@keyframes allyFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes allySpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes allyGlow {
    from {
        opacity: .45;
        transform: scale(.9);
    }

    to {
        opacity: .95;
        transform: scale(1.2);
    }
}

@media(max-width:768px) {
    .allies-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .allies-track {
        grid-template-columns: 1fr;
    }

    .ally-card {
        min-height: 160px;
    }
}

.image-marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(to right, rgba(10,5,20,1) 0%, rgba(10,5,20,0) 15%, rgba(10,5,20,0) 85%, rgba(10,5,20,1) 100%), var(--bg-card);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.image-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.image-marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    cursor: pointer;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.marquee-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll-marquee {
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

/* ===== CATALOG FILTER FIXES ===== */
.category-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.category-select-wrap:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(155, 44, 250, 0.2);
}

.category-select-wrap select {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    padding-right: 10px;
    appearance: none; /* Remove default arrow */
}

/* Fix for the dropdown options background in some browsers */
.category-select-wrap select option {
    background: var(--bg-card);
    color: #fff;
    padding: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 5%;
    gap: 20px;
    flex-wrap: wrap;
}

.section-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .category-select-wrap {
        width: 100%;
    }
}

/* ===== SITE-WIDE RESPONSIVE HARDENING ===== */
img,
video,
canvas,
iframe {
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
}

.nav-logo,
.nav-actions,
.product-card,
.contact-card,
.admin-panel,
.footer > *,
.section-header > *,
.cart-item-info {
    min-width: 0;
}

@media (max-width: 980px) {
    .navbar {
        padding: 12px 4%;
    }

    .nav-links {
        z-index: 120;
        padding: 96px 24px 32px;
        overflow-y: auto;
    }

    .nav-links a {
        width: min(320px, 100%);
        font-size: 14px;
    }

    .nav-toggle {
        position: relative;
        z-index: 130;
    }

    .main-banner {
        min-height: 520px;
        height: min(760px, 82svh);
    }

    .main-banner-slide {
        padding: 96px 6% 72px;
        align-items: flex-end;
    }

    .main-banner-content {
        max-width: min(620px, 100%);
    }

    .main-banner-title {
        letter-spacing: 0;
    }

    .main-banner-desc {
        max-width: 46rem;
    }

    .contact-experience-grid,
    .contact-grid-luxury,
    .product-detail-luxury,
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-gallery,
    .product-detail-luxury .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        width: 100%;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        transform: none;
    }

    .main-banner {
        min-height: 500px;
        height: auto;
    }

    .main-banner-slide {
        min-height: 500px;
        padding-inline: 5%;
    }

    .main-banner-title {
        font-size: clamp(34px, 12vw, 58px);
    }

    .main-banner-desc {
        font-size: 15px;
        line-height: 1.55;
    }

    .main-banner-content > div[style*="display:flex"] {
        width: 100%;
        gap: 10px!important;
    }

    .main-banner-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 13px;
        text-align: center;
    }

    .main-banner-arrow {
        width: 42px;
        height: 42px;
    }

    .main-banner-nav {
        bottom: 22px;
    }

    .main-banner-dot {
        width: 28px;
    }

    .allies-section,
    .image-marquee-section,
    .collection-section,
    .recommended-section,
    .footer {
        overflow-x: hidden;
    }

    .section-header {
        padding-inline: 4%;
        margin-bottom: 26px;
    }

    .section-title {
        font-size: clamp(28px, 10vw, 42px);
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .smart-search,
    .catalog-filter-bar,
    .category-select-wrap {
        width: 100%;
        min-width: 0;
    }

    .category-select-wrap {
        padding-inline: 14px 36px;
    }

    .products-grid,
    .recommended-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-inline: 4%;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-card-img {
        aspect-ratio: 1 / 1.22;
    }

    .product-card-quick {
        opacity: 1;
        transform: none;
        width: 36px;
        height: 36px;
    }

    .product-card-name,
    .product-card-desc,
    .product-card-variant {
        overflow-wrap: anywhere;
    }

    .catalog-load-more-wrap {
        padding-inline: 4%;
    }

    .catalog-load-more {
        width: min(100%, 280px);
    }

    .image-marquee-section {
        padding-block: 34px;
    }

    .marquee-item {
        width: min(58vw, 220px);
        height: min(58vw, 220px);
        border-radius: 14px;
    }

    .footer {
        padding: 42px 5% 24px;
        gap: 28px;
    }

    .cart-sidebar {
        right: -100vw;
        width: 100vw;
        max-width: 100vw;
    }

    .cart-header,
    .cart-items,
    .cart-footer {
        padding-inline: 18px;
    }

    .cart-item {
        gap: 10px;
    }

    .cart-item-qty {
        grid-template-columns: 28px 42px 28px;
    }

    .wholesale-panel,
    .brand-loader-card {
        width: calc(100vw - 28px);
        max-width: 420px;
        padding-inline: 22px;
    }

    .contact-page {
        padding: 96px 4% 52px;
    }

    .contact-hero-luxury {
        min-height: 380px;
    }

    .contact-hero-content {
        padding-inline: 16px;
    }

    .contact-hero h1 {
        font-size: clamp(34px, 12vw, 54px);
        letter-spacing: 0;
    }

    .contact-map-surface {
        min-height: 360px;
    }

    .product-detail-container,
    .product-detail-luxury {
        padding: 104px 4% 48px;
        gap: 24px;
    }

    .product-detail-luxury .product-main-img.is-fallback img {
        padding: 28px;
    }

    .product-detail-luxury .product-info {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .product-detail-luxury .product-info-name {
        font-size: clamp(30px, 10vw, 44px);
        line-height: 1.05;
        max-width: 100%;
    }

    .product-detail-luxury .product-info-price {
        font-size: clamp(24px, 8vw, 34px);
    }

    .product-thumbnails,
    .product-detail-luxury .product-thumbnails {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding-inline: 14px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-icon,
    .nav-icon-btn {
        width: 38px;
        height: 38px;
    }

    .main-banner-slide {
        min-height: 480px;
        padding-bottom: 68px;
    }

    .products-grid,
    .recommended-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-card-info {
        padding: 10px;
    }

    .product-card-price {
        font-size: 14px;
    }

    .btn-checkout,
    .btn-buy-now,
    .product-detail-luxury .btn-consult-direct {
        font-size: 13px;
        line-height: 1.2;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 360px) {
    .products-grid,
    .recommended-section .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-img {
        aspect-ratio: 1 / 1.05;
    }
}

/* ===== ANIMACIÓN DE ILUMINACIÓN DE CARRITO ===== */
@keyframes cartHighlight {
    0% {
        transform: scale(1);
        background: var(--surface-2);
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.8);
        border-color: rgba(217, 70, 239, 0.5);
    }
    30% {
        transform: scale(1.25);
        background: var(--secondary);
        box-shadow: 0 0 0 15px rgba(217, 70, 239, 0.4);
        border-color: var(--secondary);
    }
    70% {
        transform: scale(1.1);
        background: var(--secondary);
        box-shadow: 0 0 0 25px rgba(217, 70, 239, 0);
        border-color: var(--secondary);
    }
    100% {
        transform: scale(1);
        background: var(--surface-2);
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

.cart-highlight-active {
    animation: cartHighlight 0.9s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
