@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ============================
   WHIP DELIVERY DUBAI
   ✨ Premium Midnight Gold Theme
   Ultra-Luxury · Cinematic · Clean
   ============================ */

:root {
    /* Palette: Deep Black & Gold */
    --gold: #D4AF37;
    /* Classic Gold */
    --gold-deep: #AA8529;
    /* Darker Gold */
    --gold-light: #F3E5AB;
    /* Champagne Gold */
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-soft: rgba(212, 175, 55, 0.05);

    /* Backgrounds */
    --bg-darker: #050505;
    --bg: #0A0A0B;
    --bg-2: #121214;
    --bg-3: #1A1A1D;
    --bg-card: rgba(20, 20, 22, 0.6);
    --bg-card-hover: rgba(28, 28, 30, 0.8);

    /* Text */
    --text: #F8F8F8;
    --text-2: #A1A1AA;
    --text-3: #71717A;
    --text-inv: #050505;

    /* Borders */
    --border: rgba(212, 175, 55, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);

    /* Shadows */
    --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-gold-heavy: 0 12px 40px rgba(212, 175, 55, 0.25);

    /* Shape */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --fast: 0.2s;
    --mid: 0.4s;
    --slow: 0.7s;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-darker);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.04), transparent 25%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--fast) var(--ease-out);
}

a:hover {
    color: var(--gold-light);
}

h1,
h2,
h3,
h4,
.logo-text,
.price,
.cart-grand-total {
    font-family: 'Montserrat', sans-serif;
}

/* ===== BACKGROUND ANIMATION ===== */
.celebration-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb var(--duration) infinite ease-in-out alternate;
    opacity: 0.6;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -60px) scale(1.1);
    }
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER (GLASSMORPHISM) ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.7);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--mid) var(--ease-out);
}

.sticky-header.scrolled {
    background: rgba(10, 10, 11, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-text span {
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    margin-left: 6px;
}

/* Nav */
.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: color var(--fast) var(--ease-out);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--mid) var(--ease-out);
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switcher {
    display: flex;
    gap: 12px;
}

.lang-switcher a {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    transition: all var(--fast);
}

.lang-switcher a.active {
    color: var(--gold);
}

.lang-switcher a:hover {
    color: #fff;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all var(--fast) var(--ease-out);
    border: 1px solid transparent;
}

.cart-icon:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    /* Above overlay */
    transition: all 0.3s var(--ease-out);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background-color: var(--gold);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background-color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--mid) var(--ease-out);
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-heavy);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-subtle);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.btn-lg {
    height: 56px;
    padding: 0 36px;
    font-size: 15px;
}

.btn-wa-detail {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.btn-wa-detail:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center top, var(--bg-3) 0%, var(--bg-darker) 100%);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
    background: var(--bg-2);
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    transition: all var(--mid) var(--ease-out);
}

.badge-item:hover {
    border-color: var(--border);
    transform: translateY(-5px);
    background: var(--bg-3);
    box-shadow: var(--shadow-sm);
}

.badge-item i {
    color: var(--gold);
    width: 28px;
    height: 28px;
}

.badge-item span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-products {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Product Card - Ultra Premium */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--mid) var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.08);
    /* Glow effect */
    background: var(--bg-card-hover);
}

.product-image {
    position: relative;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.product-image img {
    height: 220px;
    object-fit: contain;
    transition: transform var(--slow) var(--ease-out);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.product-card:hover .product-image img {
    transform: scale(1.08) translateY(-5px);
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-info .specs {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 20px;
    min-height: 42px;
    font-weight: 300;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #E8524A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(232, 82, 74, 0.4);
    z-index: 2;
}

/* Price Block */
.price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.price-block .price {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -1px;
}

.price-block .price-old {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-3);
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
}

.save-label {
    background: rgba(232, 82, 74, 0.15);
    color: #FF6B6B;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(232, 82, 74, 0.3);
}

/* Qty Selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    height: 44px;
    padding: 0 4px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-2);
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--bg-3);
    color: #fff;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Actions */
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
    padding: 0 16px;
    height: 44px;
    font-size: 12px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    padding: 60px 0 100px;
}

.breadcrumb-nav {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--text-2);
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav span {
    color: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.product-detail-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.product-detail-info h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.1;
}

.product-short-desc {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.price-block-lg {
    margin-bottom: 40px;
}

.price-block-lg .price {
    font-size: 56px;
    color: var(--gold);
}

.price-block-lg .price-old {
    font-size: 24px;
}

.product-description {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.product-specs {
    background: var(--bg-2);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.product-specs h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.product-specs li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-specs .spec-label {
    color: var(--text-3);
}

.product-specs .spec-value {
    color: #fff;
    font-weight: 500;
}

/* ========================================= */
/* MOBILE MENU TOGGLE EXTRACTED FROM LAYOUT.PHP */
/* ========================================= */
/* Hide menu button on desktop by default */
#menu-toggle-btn {
    display: none !important;
}

@media (max-width: 1024px) {
    #menu-toggle-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-end !important;
        gap: 5px !important;
        width: 38px !important;
        height: 38px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        padding: 0 8px !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-backdrop-filter: blur(4px) !important;
        backdrop-filter: blur(4px) !important;
        transition: all 0.3s ease !important;
    }

    #menu-toggle-btn span {
        display: block !important;
        height: 2px !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #menu-toggle-btn span:nth-child(1) {
        width: 100% !important;
        transform-origin: center right !important;
    }

    #menu-toggle-btn span:nth-child(2) {
        width: 75% !important;
    }

    #menu-toggle-btn span:nth-child(3) {
        width: 50% !important;
        transform-origin: center right !important;
    }

    #menu-toggle-btn.active {
        background: rgba(224, 185, 118, 0.1) !important;
        border-color: rgba(224, 185, 118, 0.3) !important;
        align-items: center !important;
    }

    #menu-toggle-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(-45deg) !important;
        background-color: var(--gold, #e0b976) !important;
        width: 100% !important;
        transform-origin: center !important;
    }

    #menu-toggle-btn.active span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(10px) !important;
    }

    #menu-toggle-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(45deg) !important;
        background-color: var(--gold, #e0b976) !important;
        width: 100% !important;
        transform-origin: center !important;
    }

    /* Fix for the overlay visibility */
    .mobile-nav-overlay.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    /* Simple Fullscreen Centered Menu */
    .mobile-nav-overlay {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(10, 10, 11, 0.98) !important;
        z-index: 2000 !important;
        display: none !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        pointer-events: none !important;
    }

    .mobile-nav-overlay.active {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    .mobile-nav-overlay.active .mobile-nav-content {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        transform: none !important;
    }

    .mobile-nav-content .close-mobile-menu {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 32px !important;
    }

    .mobile-menu-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .mobile-menu-list li {
        opacity: 1 !important;
        transform: none !important;
    }

    .mobile-menu-list a {
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #fff !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        font-family: 'Inter', sans-serif !important;
    }

    .mobile-lang-switcher {
        margin-top: 40px !important;
        display: flex !important;
        gap: 20px !important;
        justify-content: center !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.product-specs p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.detail-order-block {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.qty-selector-lg {
    height: 56px;
    padding: 0 6px;
}

.qty-selector-lg .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 24px;
}

.qty-selector-lg .qty-input {
    width: 50px;
    font-size: 18px;
}

.detail-order-block .product-actions {
    display: flex;
    gap: 16px;
    flex: 1;
}

.detail-order-block .product-actions .btn {
    flex: 1;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1900;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--mid) var(--ease-in-out);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(440px, 100vw);
    height: 100dvh;
    background: var(--bg-darker);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--mid) var(--ease-out);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
}

.cart-drawer-head h3 {
    font-size: 22px;
    color: #fff;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-2);
    border-radius: 50%;
    color: var(--text-2);
    cursor: pointer;
    transition: all var(--fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    background: var(--border);
    color: #fff;
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.cart-item-price {
    font-size: 13px;
    color: var(--gold);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    height: 32px;
    padding: 0 4px;
}

.cart-item-qty .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
    color: var(--text-2);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
}

.cart-item-qty .qty-btn:hover {
    background: var(--border-subtle);
    color: #fff;
}

.cart-qty-num {
    font-size: 13px;
    font-weight: 600;
    width: 24px;
    text-align: center;
    color: #fff;
}

.cart-item-sub {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    min-width: 60px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all var(--fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(232, 82, 74, 0.1);
    color: #E8524A;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-3);
    gap: 16px;
}

.cart-empty-icon {
    font-size: 56px;
    opacity: 0.3;
}

.cart-drawer-footer {
    padding: 24px 30px 30px;
    border-top: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-total-row span {
    font-size: 16px;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cart-grand-total {
    font-size: 32px;
    color: var(--gold);
}

.btn-wa-checkout {
    width: 100%;
    margin-bottom: 12px;
}

.btn-clear-cart {
    width: 100%;
    font-size: 12px;
    height: 40px;
}

/* Hide mobile menu by default on desktop */
.mobile-nav-overlay {
    display: none;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {

    .main-nav,
    .lang-switcher {
        display: none;
    }

    #menu-toggle-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important;
        height: 20px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #menu-toggle-btn span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #menu-toggle-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
        background-color: var(--gold) !important;
    }

    #menu-toggle-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }

    #menu-toggle-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
        background-color: var(--gold) !important;
    }

    .header-content {
        height: 64px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-nav-overlay.active {
        display: block !important;
        opacity: 1;
        pointer-events: all;
    }

    .mobile-nav-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 340px;
        height: 100%;
        background: rgba(10, 10, 11, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        padding: 60px 30px 40px;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .mobile-nav-overlay.active .mobile-nav-content {
        transform: translateX(0);
    }

    .close-mobile-menu {
        display: none;
    }

    .mobile-menu-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-menu-list li,
    .mobile-lang-switcher {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s var(--ease-out);
        transition-delay: calc(var(--i) * 0.1s);
    }

    .mobile-nav-overlay.active li,
    .mobile-nav-overlay.active .mobile-lang-switcher {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-list a {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: block;
        transition: color 0.3s;
    }

    .mobile-menu-list a:hover {
        color: var(--gold);
    }

    .card-actions {
        flex-direction: column;
    }

    .detail-order-block {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-order-block .product-actions {
        flex-direction: column;
    }
}

/* ===== BLOG ===== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--mid);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.blog-excerpt {
    color: var(--text-2);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.blog-date {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Misc */
.product-image-link,
.product-card-title-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-title-link h3:hover {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.main-footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    margin-top: 60px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-info {
    max-width: 400px;
}

.footer-info .logo {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-info .logo span {
    font-weight: 400;
    color: var(--gold);
    font-style: italic;
}

.footer-info .disclaimer {
    color: var(--text-3);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    color: var(--text-3);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-sections {
        flex-direction: column;
    }
}

/* ===== BASIC PAGES (Terms, Privacy) ===== */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
}

.page-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.8;
}

.page-content h2,
.page-content h3 {
    color: #fff;
    margin: 30px 0 16px;
    font-family: 'Montserrat', sans-serif;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin: 0 0 20px 20px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.alert-error {
    background: rgba(232, 82, 74, 0.1);
    color: #E8524A;
    border: 1px solid rgba(232, 82, 74, 0.3);
}

/* ===== PRODUCT BADGES ===== */
.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #000;
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(224, 185, 118, 0.3);
}

.sale-badge.badge-new {
    background: rgba(255, 255, 255, 0.95);
    /* Bright White */
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.sale-badge.badge-hot {
    background: #E8524A;
    /* Premium Red */
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 82, 74, 0.3);
}

.sale-badge-lg {
    font-size: 13px;
    padding: 8px 16px;
    top: 20px;
    left: 20px;
}