@font-face {
    font-family: 'Inter';
    src: url('../font/inter.woff2') format('woff2'), url('../font/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.woff2') format('woff2'), url('../font/poppins.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-600: #800070;
    --brand-700: #700070;
    --brand-800: #600070;
    --purple-1: #600070;
    --purple-2: #700070;
    --purple-3: #800070;
    --brand-light: #e879f9;
    --dark-bg: #050505;
    --dark-surface: #141414;
    --dark-surface-2: #222222;
    --dark-border: rgba(255, 255, 255, 0.12);
    --dark-text: #f1f5f9;
    --dark-muted: rgba(241, 245, 249, 0.55);
    --sand-50: #0a0a0a;
    --ink: #f1f5f9;
    --muted: rgba(241, 245, 249, 0.55);
    --radius-card: 1rem;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-purple: 0 8px 30px rgba(128, 0, 112, 0.2);
}

a, button, .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    background: var(--dark-bg);
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #700070;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #800070;
}

::-webkit-scrollbar-button {
    display: none;
}

body.site-body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--dark-text);
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

@media (min-width: 992px) {
    body.site-body {
        padding-bottom: 0;
    }
}

.text-primary-brand {
    color: var(--brand-light) !important;
}

.btn-primary-brand {
    --bs-btn-bg: var(--brand-600);
    --bs-btn-border-color: var(--brand-600);
    --bs-btn-hover-bg: var(--brand-700);
    --bs-btn-hover-border-color: var(--brand-700);
    --bs-btn-active-bg: var(--brand-800);
    --bs-btn-active-border-color: var(--brand-800);
    --bs-btn-color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding-inline: 1.25rem;
}

.btn-outline-primary-brand {
    color: var(--brand-light);
    border-color: var(--brand-light);
    border-radius: 999px;
    font-weight: 600;
}

.btn-outline-primary-brand:hover,
.btn-outline-primary-brand.active {
    background: rgba(232, 121, 249, 0.15);
    color: #fff;
    border-color: var(--brand-light);
}

.navbar-brand {
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.site-header {
    top: 0;
    z-index: 1040;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--dark-border);
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.site-header .navbar {
    background: transparent !important;
}

.site-header .navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: var(--dark-border) !important;
}

.site-header .navbar-toggler-icon {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e879f9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.site-header .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
}

@media (max-width: 991px) {
    .site-header .navbar-collapse {
        border-top: 1px solid var(--dark-border);
        padding: 0.75rem 0;
    }
}

.site-header .nav-link {
    color: rgba(241, 245, 249, 0.8) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.site-header .nav-link:hover {
    color: #fff !important;
}

.site-header .navbar-store-name {
    color: #fff;
}

/* ─── CATEGORY DROPDOWN ─── */
.cat-dropdown-wrap {
    position: relative;
}

.cat-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 0.5rem;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cat-dropdown-wrap.open .cat-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .cat-dropdown-wrap:hover .cat-dropdown-menu {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
}

.cat-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    color: rgba(241, 245, 249, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.18s;
}

.cat-dropdown-menu a:hover {
    background: rgba(128, 0, 112, 0.15);
    color: #fff;
}

.cat-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--brand-600);
    font-size: 0.8rem;
}

.cat-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    background: transparent;
    border: 0;
    width: auto;
    font: inherit;
}

.cat-dropdown-toggle .caret {
    font-size: 0.65rem;
    transition: transform 0.2s;
    opacity: 0.6;
}

.cat-dropdown-wrap.open .caret {
    transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .cat-dropdown-wrap:hover .caret {
        transform: rotate(180deg);
    }
}

/* ─── SEARCH PILL ─── */
.search-pill {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 2px 2px 2px 10px;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-pill .form-control {
    background: transparent !important;
    color: #fff;
    border: none;
}

.search-pill .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-pill .form-control:focus {
    box-shadow: none;
    background: transparent;
}

/* ─── CART BADGE ─── */
.badge-cart {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--brand-600);
    color: #fff;
    font-size: 0.65rem;
    min-width: 1.1rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    border-radius: 999px;
    padding: 0 4px;
}

.mobile-nav-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.mobile-cart-badge {
    top: -5px;
    right: -10px;
    min-width: 1rem;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.58rem;
    padding: 0 3px;
    border: 2px solid #0a0a0a;
}

/* ─── FILTER PILLS ─── */
.filter-pills {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.filter-pills .btn {
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    transition: all 0.25s ease;
}

.filter-pills .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--dark-muted);
    background: rgba(255, 255, 255, 0.04);
}

.filter-pills .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.filter-pills .btn-primary-brand {
    box-shadow: 0 4px 12px rgba(128, 0, 112, 0.3);
}

.banner-slider .carousel-item {
    aspect-ratio: 16 / 9;
    padding: 0;
    background: transparent;
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .banner-slider {
        margin-left: -12px !important;
        margin-right: -12px !important;
        margin-top: -1.5rem !important;
        border-radius: 0 !important;
    }

    #carouselBanners {
        border-radius: 0 !important;
    }

    .banner-slider .carousel-item {
        aspect-ratio: auto !important;
        height: 500px !important;
        max-height: 500px !important;
    }
}

@media (min-width: 768px) {
    .banner-slider .carousel-item {
        aspect-ratio: 15 / 8;
    }
}

#carouselBanners {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.banner-slider .carousel-item>div {
    display: block;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
    z-index: 5;
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slider:hover .carousel-control-prev,
.banner-slider:hover .carousel-control-next {
    opacity: 0.75;
}

.banner-slider .carousel-control-prev-icon,
.banner-slider .carousel-control-next-icon {
    width: 2.8rem;
    height: 2.8rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6)) !important;
}

.banner-slider .carousel-indicators {
    z-index: 10;
    bottom: 1.5rem;
    left: 20%;
    right: 20%;
    margin: 0;
    gap: 12px;
}

.banner-slider .carousel-indicators [data-bs-target] {
    flex: 1;
    width: auto;
    height: 5px;
    border-radius: 3px;
    margin: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.25);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.banner-slider .carousel-indicators .active {
    opacity: 1;
    background: linear-gradient(90deg, #8b5cf6, var(--brand-light));
    transform: none;
}

/* ─── BANNER FALLBACK ─── */
.banner-premium-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0f0916;
    overflow: hidden;
}

.banner-premium-fallback::before,
.banner-premium-fallback::after,
.banner-premium-fallback-texture {
    content: '';
    position: absolute;
    inset: -100%;
    opacity: 0.8;
}

.banner-premium-fallback::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(128, 0, 112, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(96, 0, 112, 0.25) 0%, transparent 40%);
    filter: blur(80px);
    animation: xperiaFlow 25s infinite alternate ease-in-out;
}

.banner-premium-fallback::after {
    background:
        radial-gradient(circle at 50% 80%, rgba(112, 0, 112, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(96, 0, 112, 0.15) 0%, transparent 30%);
    filter: blur(80px);
    animation: xperiaFlow 35s infinite alternate-reverse ease-in-out;
    opacity: 0.5;
}

.banner-premium-fallback-texture {
    z-index: 2;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 15px);
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
    animation: textureFloat 20s infinite linear;
}

.banner-premium-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 80%);
    color: #fff;
    pointer-events: none;
}

.banner-premium-float-img-wrap {
    margin-bottom: 0.75rem;
    perspective: 800px;
    z-index: 15;
}

.banner-premium-float-img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.65));
    animation: floatAnim 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(-14deg) translateZ(0);
    }

    50% {
        transform: translateY(-8px) rotate(-11deg) translateZ(10px);
    }

    100% {
        transform: translateY(0) rotate(-14deg) translateZ(0);
    }
}

.banner-premium-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    max-width: 85%;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.banner-premium-subtitle {
    font-size: 0.8rem;
    opacity: 0.85;
    max-width: 80%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Elegant info pill bar styling */
.banner-premium-info-bar {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    gap: 16px;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    max-width: 95%;
    border: 4px solid #ffffff !important;
}

.banner-premium-prod-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.banner-premium-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.banner-premium-price-old {
    font-size: 0.65rem;
    text-decoration: line-through;
    color: #64748b;
    font-weight: 600;
}

.banner-premium-price-promo {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.banner-premium-cta-btn {
    background: #8b5cf6;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px 22px;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

/* Secondary Sub-Badge below the pill bar */
.banner-premium-badge-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

/* Hover trigger for premium animations */
.banner-slider .carousel-item a:hover .banner-premium-cta-btn {
    background: #7c3aed;
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.5);
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .banner-premium-content {
        padding: 3rem 2rem;
    }

    .banner-premium-float-img-wrap {
        margin-bottom: 1.25rem;
    }

    .banner-premium-float-img {
        width: 175px;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.65));
    }

    .banner-premium-title {
        font-size: 3.5rem;
        max-width: 650px;
    }

    .banner-premium-subtitle {
        font-size: 1.25rem;
    }

    .banner-premium-info-bar {
        padding: 6px 6px 6px 32px;
        gap: 32px;
        margin-top: 1.5rem;
    }

    .banner-premium-prod-name {
        font-size: 1.15rem;
    }

    .banner-premium-price-old {
        font-size: 0.75rem;
    }

    .banner-premium-price-promo {
        font-size: 1.5rem;
    }

    .banner-premium-cta-btn {
        font-size: 1rem;
        padding: 12px 36px;
    }

    .banner-premium-badge-sub {
        font-size: 0.9rem;
        margin-top: 1.25rem;
    }
}

@keyframes xperiaFlow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(5%, 10%) rotate(5deg) scale(1.1);
    }

    66% {
        transform: translate(-5%, 5%) rotate(-5deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes textureFloat {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-15px) translateY(-15px);
    }
}

/* ─── SECTION TITLE ─── */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

/* ─── PRODUCT CARD — DARK ─── */
.product-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--dark-surface);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
    border-color: rgba(128, 0, 112, 0.35);
}

.product-card .thumb-wrap {
    position: relative;
    background: var(--dark-surface-2);
}

.product-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}

.product-card .p-3 h3,
.product-card .p-3 .h6 {
    color: var(--dark-text);
}

.product-card .small.text-muted {
    color: var(--dark-muted) !important;
}

.flash-ribbon {
    position: absolute;
    top: 12px;
    left: -36px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.featured-ribbon {
    position: absolute;
    top: 22px;
    left: -35px;
    width: 140px;
    text-align: center;
    background: linear-gradient(90deg, #600070, #800070);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(128, 0, 112, 0.35);
}

.price-old {
    text-decoration: line-through;
    color: var(--dark-muted);
    font-size: 0.85rem;
}

/* ─── DARK FOOTER ─── */
.site-footer {
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(128, 0, 112, 0.15);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 112, 0.3), transparent);
    margin-bottom: 3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

/* ─── DARK MOBILE BOTTOM NAV ─── */
.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0 !important;
    width: 100%;
    z-index: 1080;
    background: #0a0a0a;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateZ(0);
    backface-visibility: hidden;
    border-top: 1px solid rgba(128, 0, 112, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(70px + env(safe-area-inset-bottom));
    min-height: calc(70px + env(safe-area-inset-bottom));
    padding: 6px 6px calc(8px + env(safe-area-inset-bottom));
    contain: layout paint;
}

.mobile-bottom-nav::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(-1 * env(safe-area-inset-bottom));
    height: env(safe-area-inset-bottom);
    background: #0a0a0a;
    pointer-events: none;
}

.mobile-bottom-nav a {
    min-width: 0;
    flex: 1;
    height: 52px;
    text-decoration: none;
    color: rgba(241, 245, 249, 0.5);
    font-size: 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 0;
    line-height: 1.1;
}

.mobile-bottom-nav a i,
.mobile-bottom-nav a .svg-inline--fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
    line-height: 1;
}

.mobile-bottom-nav a small {
    display: block;
    width: 100%;
    line-height: 1.1;
    text-align: center;
}

.mobile-bottom-nav a.active {
    color: var(--brand-600);
    font-weight: 600;
}

/* ─── SKELETON ─── */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #222 37%, #1a1a1a 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
    border-radius: 0.5rem;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

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

/* ─── BREADCRUMB ─── */
.breadcrumb-modern {
    --bs-breadcrumb-divider: '›';
    font-size: 0.9rem;
    --bs-breadcrumb-item-active-color: var(--dark-muted);
    --bs-breadcrumb-divider-color: var(--dark-muted);
}

.breadcrumb-modern a {
    color: var(--dark-muted);
    text-decoration: none;
}

.breadcrumb-modern a:hover {
    color: #fff;
}

/* ─── PRODUCT GALLERY — DARK ─── */
.product-gallery-container {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.main-display {
    cursor: zoom-in;
    overflow: hidden;
    background: var(--dark-surface-2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-display:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.thumb-strip {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-600) transparent;
    background: var(--dark-surface);
}

.gallery-thumb {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
    background: var(--dark-surface-2);
}

.gallery-thumb.active {
    border-color: var(--brand-600);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0916;
    color: #fff;
    font-size: 1.5rem;
}

/* ─── LIGHTBOX ─── */
.product-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.lightbox-close:hover {
    background: rgba(128, 0, 112, 0.6);
    transform: rotate(90deg);
}

.lightbox-content {
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.lightbox-nav .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-nav .nav-btn:hover {
    background: rgba(128, 0, 112, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.lightbox-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.lightbox-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-dots .dot.active {
    width: 24px;
    background: var(--brand-600);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(128, 0, 112, 0.4);
}

.lightbox-media-item {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* ─── IMG FALLBACK — DARK GLASS ─── */
.img-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(96, 0, 112, 0.15), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(128, 0, 112, 0.2);
    color: rgba(128, 0, 112, 0.7);
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    font-size: 2rem;
    border-radius: inherit;
}

.img-fallback i {
    margin-bottom: 8px;
    opacity: 0.6;
}

.img-fallback span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(241, 245, 249, 0.5);
}

/* ─── CTA IMAGE FALLBACK ─── */
.cta-img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(128, 0, 112, 0.8);
    font-size: 2.5rem;
    gap: 0.5rem;
    border-radius: inherit;
}

.cta-img-fallback span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(241, 245, 249, 0.4);
}

/* ─── ORDER MILESTONE ─── */
.order-milestone {
    position: relative;
    margin: 2rem 0;
}

.milestone-track {
    position: absolute;
    top: 25px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #1a1a1a;
    z-index: 1;
    border-radius: 2px;
    overflow: hidden;
}

.milestone-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--brand-600);
    transition: width 0.5s ease-in-out;
}

.milestone-steps {
    z-index: 2;
}

.milestone-step {
    width: 25%;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-surface);
    border: 3px solid var(--dark-surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark-muted);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.milestone-step.active .step-icon {
    border-color: var(--brand-light);
    color: var(--brand-light);
    background: var(--dark-surface);
    box-shadow: 0 0 0 4px rgba(232, 121, 249, 0.15);
}

.milestone-step.active .step-label {
    color: var(--brand-light);
}

.step-label {
    color: rgba(241, 245, 249, 0.4);
    transition: color 0.3s ease;
}

@media (max-width: 576px) {
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .milestone-track {
        top: 20px;
    }
}

.ls-1 {
    letter-spacing: 1px;
}

.border-bottom-subtle {
    border-bottom: 1px solid var(--dark-border);
}

/* ─── HERO THEMES ─── */
.hero-theme-blue {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(59, 130, 246, 0.45), transparent), linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%) !important;
    color: #ffffff !important;
}

.hero-theme-black {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(255, 255, 255, 0.05), transparent), linear-gradient(135deg, #090d16 0%, #0f172a 50%, #1e293b 100%) !important;
    color: #ffffff !important;
}

.hero-theme-grey {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(255, 255, 255, 0.05), transparent), linear-gradient(135deg, #334155 0%, #475569 50%, #64748b 100%) !important;
    color: #ffffff !important;
}

.hero-theme-dark_grey {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(255, 255, 255, 0.05), transparent), linear-gradient(135deg, #09090b 0%, #18181b 50%, #27272a 100%) !important;
    color: #ffffff !important;
}

.hero-theme-yellow {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(0, 0, 0, 0.05), transparent), linear-gradient(135deg, #ca8a04 0%, #eab308 50%, #fef08a 100%) !important;
    color: #0f172a !important;
}

.hero-theme-red {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(255, 255, 255, 0.15), transparent), linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #dc2626 100%) !important;
    color: #ffffff !important;
}

.hero-theme-blue .btn-theme,
.hero-theme-black .btn-theme,
.hero-theme-grey .btn-theme,
.hero-theme-dark_grey .btn-theme,
.hero-theme-red .btn-theme {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.hero-theme-yellow .btn-theme {
    background-color: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

/* ─── CTA SECTIONS ─── */
.cta-section-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-section-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(128, 0, 112, 0.15);
}

.cta-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
}

.cta-image-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-section-wrapper:hover .cta-image-col img {
    transform: scale(1.06);
}

.cta-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-btn {
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.cta-style-1 {
    border: none;
    background: var(--cta-bg, #0a0a0a) !important;
}

.cta-style-2 {
    border: none;
    background: #0a0a0a !important;
    position: relative;
    overflow: hidden;
}

.cta-style-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cpath d='M0,380 C60,320 100,280 180,240 C240,210 300,220 360,180 C420,140 450,80 520,60 C580,42 640,55 720,30 C760,18 790,10 800,5' stroke='%23600070' stroke-width='1.4' fill='none' opacity='0.6'/%3E%3Cpath d='M0,400 C80,350 140,310 200,270 C260,230 310,240 370,200 C430,160 460,100 530,75 C595,52 660,65 740,40' stroke='%23700070' stroke-width='0.9' fill='none' opacity='0.45'/%3E%3Cpath d='M10,360 C70,300 130,265 195,230 C255,198 315,210 375,172 C435,133 465,72 535,50' stroke='%23800070' stroke-width='0.6' fill='none' opacity='0.28'/%3E%3Ccircle cx='180' cy='240' r='3' fill='%23800070' opacity='0.55'/%3E%3Ccircle cx='360' cy='180' r='2.5' fill='%23600070' opacity='0.5'/%3E%3Ccircle cx='520' cy='60' r='2.5' fill='%23700070' opacity='0.45'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

.cta-style-2::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 5% 95%, rgba(96, 0, 112, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 95% 5%, rgba(128, 0, 112, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.cta-style-2>.row {
    position: relative;
    z-index: 1;
}

.cta-style-3 {
    border: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a0a 30%, #0e000f 50%, #0a0a0a 70%, #0a0a0a 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-style-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 88%, rgba(96, 0, 112, 0.2) 0%, transparent 42%),
        radial-gradient(ellipse at 88% 12%, rgba(128, 0, 112, 0.14) 0%, transparent 38%),
        radial-gradient(ellipse at 50% 50%, rgba(112, 0, 112, 0.07) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.cta-style-3::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #700070;
    filter: blur(70px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.cta-style-3>.row {
    position: relative;
    z-index: 1;
}

.cta-style-4 {
    border: none;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-style-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

.cta-style-4 .cta-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.68);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-image-col {
        min-height: 280px;
    }

    .cta-style-4 .cta-glass-card {
        padding: 2rem;
        max-width: 100%;
    }
}

/* ─── REVIEWS SECTION ─── */
.reviews-section-header {
    background: linear-gradient(135deg, rgba(96, 0, 112, 0.15) 0%, rgba(10, 10, 10, 0) 60%);
    border-left: 3px solid var(--brand-600);
    padding: 0.5rem 1rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}

.review-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.25s ease;
    height: 100%;
}

.review-card:hover {
    border-color: rgba(128, 0, 112, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.review-stars i.empty {
    color: rgba(255, 255, 255, 0.15);
}

.review-name {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.review-text {
    color: var(--dark-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.review-date {
    font-size: 0.75rem;
    color: rgba(241, 245, 249, 0.35);
}

/* ─── STAR RATING INPUT ─── */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.15s, transform 0.15s;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input[type="radio"]:checked~label {
    color: #fbbf24;
}

.star-rating-input label:hover {
    transform: scale(1.15);
}

/* ─── REVIEW FORM ─── */
.review-form-card {
    background: var(--dark-surface);
    border: 1px solid rgba(128, 0, 112, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.review-form-card .form-control,
.review-form-card .form-check-input {
    background: var(--dark-surface-2);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.review-form-card .form-control::placeholder {
    color: var(--dark-muted);
}

.review-form-card .form-control:focus {
    background: var(--dark-surface-2);
    border-color: rgba(128, 0, 112, 0.5);
    box-shadow: 0 0 0 3px rgba(128, 0, 112, 0.1);
    color: var(--dark-text);
}

.review-form-card .form-check-label {
    color: var(--dark-muted);
    font-size: 0.875rem;
}

/* ─── FAQ SECTION ─── */
.faq-section-wrap {
    background: linear-gradient(180deg, transparent 0%, rgba(96, 0, 112, 0.05) 50%, transparent 100%);
    padding: 3rem 0;
    position: relative;
}

.faq-section-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 112, 0.5), transparent);
}

.faq-section-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 112, 0.3), transparent);
}

.faq-accordion .accordion-item {
    background-color: var(--dark-surface) !important;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-card) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: var(--dark-surface) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(128, 0, 112, 0.1);
    color: #fff;
}

.faq-accordion .accordion-button::after {
    filter: invert(1) brightness(0.7);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    background: rgba(128, 0, 112, 0.05);
    color: var(--dark-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid var(--dark-border);
}

/* ─── PRODUCT PAGE DARK ─── */
.product-info-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.product-info-card h2 {
    color: #fff;
}

.product-info-card .small.text-muted {
    color: var(--dark-muted) !important;
}

.product-info-card .text-muted {
    color: var(--dark-muted) !important;
}

.variant-btn {
    background: var(--dark-surface-2);
    border-color: rgba(128, 0, 112, 0.3);
    color: var(--dark-text);
}

.variant-btn:hover,
.variant-btn.active {
    background: rgba(128, 0, 112, 0.2);
    border-color: var(--brand-600);
    color: #fff;
}

/* Dark forms general */
.site-body .form-control,
.site-body .form-select {
    background-color: var(--dark-surface-2);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.site-body .form-control:focus,
.site-body .form-select:focus {
    background-color: var(--dark-surface-2);
    border-color: rgba(128, 0, 112, 0.5);
    box-shadow: 0 0 0 3px rgba(128, 0, 112, 0.1);
    color: var(--dark-text);
}

.site-body .form-control::placeholder {
    color: var(--dark-muted);
}

.site-body .card {
    background: var(--dark-surface);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.site-body .card-body h2,
.site-body .card-body h3,
.site-body .card-body h6 {
    color: var(--dark-text);
}

/* Dark cart modal */
.site-body #cartModal .modal-content {
    background: transparent;
}

.site-body #cartModal .card {
    background: var(--dark-surface);
    border-color: var(--dark-border);
}

.site-body #cartModal .bg-light {
    background: var(--dark-surface-2) !important;
}

.site-body #cartModal h5,
.site-body #cartModal h4 {
    color: #fff;
}

.site-body #cartModal .text-muted {
    color: var(--dark-muted) !important;
}

.site-body #cartModal .input-group {
    border-color: var(--dark-border) !important;
}

.site-body #cartModal .btn-link {
    color: var(--dark-text) !important;
}

.site-body #cartModal .form-control {
    background: var(--dark-surface-2);
    color: var(--dark-text);
}

.site-body #cm-qty {
    background: var(--dark-surface-2) !important;
    color: #fff !important;
}

.site-body .btn-close {
    filter: invert(1);
}

/* Dark input-group styling */
.site-body .input-group .btn-link.text-dark {
    color: var(--dark-text) !important;
}

/* Dark breadcrumb bg */
.site-body nav[aria-label="breadcrumb"] {
    background: transparent;
}

/* ─── RELATED PRODUCTS SECTION ─── */
.related-products-wrap {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--dark-border);
}

.related-products-wrap .section-title {
    font-size: 1.15rem;
}

/* ─── DEEP DARK THEME FIXES ─── */
.site-body .bg-light,
.site-body .bg-white {
    background-color: var(--dark-surface-2) !important;
    color: var(--dark-text) !important;
}

.site-body .text-dark,
.site-body strong.text-dark {
    color: #fff !important;
}

.site-body .text-muted {
    color: var(--dark-muted) !important;
}

.site-body .input-group-text {
    background-color: var(--dark-surface-2) !important;
    border-color: var(--dark-border) !important;
    color: var(--dark-muted) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--dark-surface-2) inset !important;
    -webkit-text-fill-color: var(--dark-text) !important;
    transition: background-color 5000s ease-in-out 0s;
}

input,
select,
textarea,
.form-control,
.form-select {
    font-size: 16px !important;
}

.page-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #fff !important;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── PREMIUM CUSTOM FOOTER ─── */
.site-footer {
    background: #050505 !important;
    /* solid black */
    color: #fff;
    border-top: 1px solid var(--dark-border) !important;
}

.site-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.site-footer .footer-links a:hover {
    color: #fff !important;
}

.btn-whatsapp-footer {
    background: #6366f1;
    /* Light indigo/purple as in the design */
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.2s;
}

.btn-whatsapp-footer:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    color: #fff !important;
}

@media (min-width: 768px) {
    .footer-col-divider {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer-col-divider {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ─── MOBILE DRAWER & NAVBAR STYLES ─── */
@media (max-width: 991.98px) {
    .site-header .navbar > .container {
        position: relative;
    }

    .site-header .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.45rem);
        left: 0.75rem;
        right: 0.75rem;
        background: #000000 !important;
        padding: 0 0.9rem 0.75rem;
        margin: 0 !important;
        border: 1px solid rgba(128, 0, 112, 0.22) !important;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(100vh - 78px - env(safe-area-inset-bottom));
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity 0.14s ease, transform 0.14s ease;
        will-change: opacity, transform;
    }

    .site-header .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    .site-header .navbar-collapse.collapsing {
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity 0.14s ease, transform 0.14s ease;
    }

    .site-header .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.42) !important;
        background: transparent;
        transition: border-color 0.2s ease, background-color 0.2s ease;
    }

    .site-header .navbar-toggler:not(.collapsed),
    .site-header .navbar-toggler[aria-expanded="true"] {
        border-color: rgba(232, 121, 249, 0.85) !important;
        background: rgba(128, 0, 112, 0.14);
    }

    .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e879f9' stroke-linecap='round' stroke-width='2.6' d='M8 8l14 14M22 8L8 22'/%3e%3c/svg%3e") !important;
    }

    /* Mobile Menu Product Card */
    .mobile-menu-featured {
        padding: 0.65rem 0.2rem 0;
    }

    .mobile-menu-product-card {
        background: #000 !important;
        border: none !important;
        margin-bottom: 0.75rem;
        text-align: left;
        padding: 0.55rem;
    }

    .mobile-menu-product-card .card-img-gradient-wrap {
        background: linear-gradient(135deg, #700070 0%, #1e002e 100%);
        border-radius: 12px;
        padding: 0.65rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.7rem;
        min-height: clamp(92px, 26vw, 136px);
    }

    .mobile-menu-product-card .card-img-gradient-wrap img {
        max-height: clamp(78px, 22vw, 112px);
        max-width: 100%;
        object-fit: contain;
    }

    .mobile-menu-product-card .product-title {
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .mobile-menu-product-card .product-desc {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 0.45rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mobile-menu-product-card .product-rating {
        display: flex;
        align-items: center;
        gap: 0.38rem;
        margin-bottom: 0.7rem;
        font-size: 0.72rem;
        flex-wrap: wrap;
    }

    .mobile-menu-product-card .product-rating .stars {
        color: #fbbf24;
        white-space: nowrap;
    }

    .mobile-menu-product-card .product-rating .stars .empty {
        color: rgba(255, 255, 255, 0.18);
    }

    .mobile-menu-product-card .product-rating .rating-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-menu-product-card .product-cta-btn {
        background: linear-gradient(135deg, #a855f7 0%, #6b21a8 100%);
        color: #fff !important;
        font-weight: 600;
        font-size: 0.82rem;
        padding: 0.58rem 1rem;
        border-radius: 99px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        border: none;
        transition: transform 0.2s;
        box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    }

    .mobile-menu-product-card .product-cta-btn:hover {
        transform: translateY(-1px);
    }

    .site-header .navbar-nav {
        padding-left: 0.2rem !important;
        padding-right: 0.2rem !important;
        gap: 0 !important;
    }

    .site-header .navbar-nav .nav-link,
    .site-header .navbar-nav .btn-primary-brand {
        min-height: 38px;
        padding: 0.42rem 0.2rem;
        font-size: 0.9rem;
    }

    .site-header .navbar-nav .btn-primary-brand {
        margin-top: 0.2rem;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .site-header .cat-dropdown-toggle {
        justify-content: flex-start;
        width: 100%;
    }

    .site-header .cat-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin: 0.05rem 0 0.35rem;
        padding: 0.25rem;
        border-radius: 10px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .site-header .cat-dropdown-wrap.open .cat-dropdown-menu {
        display: block;
    }

    .site-header .cat-dropdown-menu a {
        min-height: 34px;
        padding: 0.42rem 0.55rem;
        font-size: 0.82rem;
    }

    .site-header .badge-cart {
        top: 0 !important;
        right: auto !important;
        margin-left: 0.35rem !important;
    }

    /* Mobile Menu List Links */
    .mobile-menu-list {
        margin-top: 0.5rem;
        padding-bottom: 2rem;
    }

    .mobile-menu-list .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-list .nav-link {
        color: #fff !important;
        font-weight: 600;
        font-size: 1rem;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent !important;
        text-decoration: none;
    }

    .mobile-menu-list .nav-link i {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.9rem;
    }
}
