/* ═══════════════════════════════════════════════════════════════
   CrackerPro ERP — 100% Colorful Crackers Theme
   NO plain/solid/block backgrounds anywhere
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --red:       #dc2626; /* Premium Cherry Magenta */
    --orange:    #d97706; /* Bronze Gold/Orange */
    --gold:      #ffd700; /* Pure Gold */
    --purple:    #7f1d1d; /* Deep Plum Magenta */
    --cyan:      #fde047; /* Amber Gold Glow */
    --green:     #eab308; /* Candle Flame Gold */
    --pink:      #dc2626;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease:      cubic-bezier(0.16, 1, 0.3, 1);
    --t:         all 0.2s var(--ease);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── HTML & BODY — Stacking context fixed for canvas visibility ── */
html {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    scroll-behavior: smooth;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(220, 38, 38, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 65% 70% at 80% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 10% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 90% 85%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
        linear-gradient(160deg, #090003 0%, #140105 35%, #0f030a 70%, #090003 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 110% 110%;
    animation: bodyPulse 22s ease-in-out infinite alternate;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    background: transparent !important;
}

@keyframes bodyPulse {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 5% 3%; }
    100% { background-position: 0% 0%; }
}

/* ── Sparkling Star Particles (canvas bg handled in JS) ── */
#fireworksCanvas {
    position: fixed; inset: 0;
    width: 100vw; height: 100vh;
    pointer-events: none; z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR — Rainbow Gradient + Glassmorphism
   ═══════════════════════════════════════════════════════════════ */
.glass-nav {
    background:
        linear-gradient(90deg,
            rgba(255,0,85,0.85) 0%,
            rgba(245,158,11,0.80) 30%,
            rgba(0,100,180,0.80) 60%,
            rgba(0,200,200,0.82) 80%,
            rgba(57,255,20,0.78) 100%
        ) !important;
    backdrop-filter: blur(28px) saturate(2);
    -webkit-backdrop-filter: blur(28px) saturate(2);
    border-bottom: 2px solid rgba(255,255,255,0.22) !important;
    position: sticky; top: 0; z-index: 1000;
    box-shadow:
        0 6px 40px rgba(255,0,85,0.35),
        0 2px 0 rgba(255,255,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.18);
    animation: navbarGlow 6s ease-in-out infinite alternate;
}

@keyframes navbarGlow {
    0%   { box-shadow: 0 6px 40px rgba(255,0,85,0.35), 0 2px 0 rgba(255,255,255,0.12); }
    33%  { box-shadow: 0 6px 40px rgba(245,158,11,0.45), 0 2px 0 rgba(255,255,255,0.15); }
    66%  { box-shadow: 0 6px 40px rgba(0,255,255,0.30), 0 2px 0 rgba(255,255,255,0.12); }
    100% { box-shadow: 0 6px 40px rgba(255,215,0,0.35), 0 2px 0 rgba(255,255,255,0.15); }
}

/* ── Brand Logo sparkle text ── */
.text-gradient {
    font-family: var(--font-head);
    font-weight: 900;
    background: linear-gradient(90deg,
        #fff 0%, #fff8d6 20%, #fff 40%, #ffe0f0 60%, #e8d5ff 80%, #fff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.8));
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}
@keyframes textShine { to { background-position: 300% center; } }

/* ── Navbar theme toggle btn ── */
.theme-toggle-btn {
    border: 2px solid rgba(255,255,255,0.5) !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important;
    transition: var(--t);
}
.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: rotate(30deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* ── Navbar buttons ── */
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(6px);
    font-weight: 700;
    transition: var(--t);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.28) !important;
    border-color: #fff !important;
    box-shadow: 0 0 18px rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

/* ── Dropdown ── */
.dropdown-menu {
    background: linear-gradient(135deg,
        rgba(60,0,100,0.97) 0%,
        rgba(20,0,50,0.98) 100%) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 30px rgba(245,158,11,0.25) !important;
    backdrop-filter: blur(20px);
    border-radius: 16px !important;
    overflow: hidden;
}
.dropdown-item {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    padding: 10px 18px;
    transition: var(--t);
}
.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255,0,85,0.3), rgba(245,158,11,0.3)) !important;
    color: #fff !important;
    padding-left: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary-custom {
    background: linear-gradient(135deg, #ffd700, #f59e0b, #ffd700);
    background-size: 200% auto;
    border: none; color: #090003 !important; font-weight: 800;
    font-family: var(--font-head);
    border-radius: 50px; padding: 10px 28px;
    transition: var(--t);
    box-shadow: 0 4px 24px rgba(255,215,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative; overflow: hidden; z-index: 1;
}
.btn-primary-custom::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f59e0b, #ffd700, #f59e0b);
    opacity: 0; z-index: -1;
    transition: opacity 0.4s;
}
.btn-primary-custom:hover::after { opacity: 1; }
.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,215,0,0.6);
    color: #000000 !important;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, #312e81, #dc2626, #312e81);
    background-size: 200% auto;
    border: none; color: #fff !important; font-weight: 800;
    font-family: var(--font-head);
    border-radius: 50px; padding: 10px 28px;
    transition: var(--t);
    box-shadow: 0 4px 24px rgba(220,38,38,0.4);
}
.btn-secondary-custom:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(220,38,38,0.7);
    color: #fff !important;
    background-position: right center;
}

.btn-light {
    background: rgba(255,255,255,0.92) !important;
    color: #220050 !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(255,255,255,0.3) !important;
    transition: var(--t) !important;
}
.btn-light:hover {
    background: #fff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(255,255,255,0.5) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #ffd700, #ff9e00) !important;
    border: none !important; color: #1a0000 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(255,215,0,0.45) !important;
    transition: var(--t) !important;
}
.btn-warning:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255,215,0,0.65) !important;
}

.btn-success {
    background: linear-gradient(135deg, #39ff14, #00e676) !important;
    border: none !important; color: #001a00 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(57,255,20,0.4) !important;
    transition: var(--t) !important;
}
.btn-success:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(57,255,20,0.6) !important;
}

/* ═══════════════════════════════════════════════════════════════
   GLASS CARDS
   ═══════════════════════════════════════════════════════════════ */
.glass-card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.07) 0%,
        rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: var(--t);
}
.glass-card:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 22px 60px rgba(220,38,38,0.22), 0 0 30px rgba(255,215,0,0.12), inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(255,215,0,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY CARDS — Alternating Gold & Magenta Glass Gradients
   ═══════════════════════════════════════════════════════════════ */
.category-card {
    text-align: center; padding: 18px 12px;
    border-radius: 18px; cursor: pointer;
    height: auto; min-height: 130px; position: relative; overflow: hidden;
    transition: var(--t);
}
/* Alternating theme per card */
.cat-color-0 { background: linear-gradient(145deg, rgba(255,215,0,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(255,215,0,0.16) !important; }
.cat-color-1 { background: linear-gradient(145deg, rgba(220,38,38,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(220,38,38,0.16) !important; }
.cat-color-2 { background: linear-gradient(145deg, rgba(255,215,0,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(255,215,0,0.16) !important; }
.cat-color-3 { background: linear-gradient(145deg, rgba(220,38,38,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(220,38,38,0.16) !important; }
.cat-color-4 { background: linear-gradient(145deg, rgba(255,215,0,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(255,215,0,0.16) !important; }
.cat-color-5 { background: linear-gradient(145deg, rgba(220,38,38,0.12), rgba(15,23,42,0.85)); border: 1.5px solid rgba(220,38,38,0.16) !important; }

.category-card::before {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.35s;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
    transform: translateY(-10px) scale(1.08) rotate(1deg);
    box-shadow: 0 24px 55px rgba(220,38,38,0.3), 0 0 20px rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.45) !important;
}

.category-icon {
    font-size: 2rem; margin-bottom: 8px;
    display: inline-block; transition: transform 0.4s var(--ease);
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}
.category-card:hover .category-icon {
    transform: scale(1.3) rotate(12deg);
    filter: drop-shadow(0 0 20px rgba(255,0,85,1));
}
.category-card h6 {
    font-family: var(--font-head);
    font-weight: 700; color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   STATS & COUNTDOWN PANEL — vivid multi-stop gradient
   ═══════════════════════════════════════════════════════════════ */
.stats-countdown-card {
    background: linear-gradient(125deg,
        rgba(220, 38, 38, 0.15) 0%,
        rgba(15, 23, 42, 0.85) 50%,
        rgba(255, 215, 0, 0.12) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 20px !important;
    box-shadow:
        0 12px 50px rgba(255,0,85,0.25),
        0 2px 0 rgba(255,255,255,0.10),
        inset 0 1px 0 rgba(255,255,255,0.12) !important;
    animation: panelPulse 5s ease-in-out infinite alternate;
}
@keyframes panelPulse {
    from { box-shadow: 0 12px 50px rgba(255,0,85,0.25), inset 0 1px 0 rgba(255,255,255,0.12); }
    to   { box-shadow: 0 16px 60px rgba(245,158,11,0.32), inset 0 1px 0 rgba(255,255,255,0.18); }
}

/* KPI numbers */
.kpi-red  { font-family: var(--font-head); font-size: 1.75rem !important; font-weight: 900 !important; color: #818cf8 !important; text-shadow: 0 0 15px rgba(255,0,85,0.85), 0 0 30px rgba(255,0,85,0.35) !important; }
.kpi-gold { font-family: var(--font-head); font-size: 1.75rem !important; font-weight: 900 !important; color: #ffd700 !important; text-shadow: 0 0 15px rgba(255,215,0,0.85), 0 0 30px rgba(255,215,0,0.35) !important; }
.kpi-cyan { font-family: var(--font-head); font-size: 1.75rem !important; font-weight: 900 !important; color: #00ffff !important; text-shadow: 0 0 15px rgba(0,255,255,0.85), 0 0 30px rgba(0,255,255,0.35) !important; }

/* ── Countdown Boxes ── */
.countdown-container { display: flex; gap: 8px; flex-wrap: wrap; }

.countdown-box {
    padding: 8px 12px; border-radius: 12px;
    text-align: center; min-width: 58px;
    transition: transform 0.3s;
    position: relative; overflow: hidden;
}
.countdown-box:nth-child(1) {
    background: linear-gradient(145deg, rgba(255,0,85,0.55), rgba(255,107,0,0.30));
    border: 1px solid rgba(255,0,85,0.5);
    box-shadow: 0 0 20px rgba(255,0,85,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.countdown-box:nth-child(2) {
    background: linear-gradient(145deg, rgba(245,158,11,0.55), rgba(0,200,255,0.30));
    border: 1px solid rgba(245,158,11,0.5);
    box-shadow: 0 0 20px rgba(245,158,11,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.countdown-box:nth-child(3) {
    background: linear-gradient(145deg, rgba(0,255,255,0.50), rgba(57,255,20,0.25));
    border: 1px solid rgba(0,255,255,0.4);
    box-shadow: 0 0 20px rgba(0,255,255,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
}
.countdown-box:nth-child(4) {
    background: linear-gradient(145deg, rgba(255,215,0,0.55), rgba(255,107,0,0.30));
    border: 1px solid rgba(255,215,0,0.5);
    box-shadow: 0 0 20px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.countdown-box:hover { transform: scale(1.1) translateY(-3px); }

.countdown-num {
    font-family: var(--font-head);
    font-size: 1.45rem; font-weight: 900; line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px currentColor;
}
.countdown-box:nth-child(1) .countdown-num { text-shadow: 0 0 10px rgba(255,0,85,1); }
.countdown-box:nth-child(2) .countdown-num { text-shadow: 0 0 10px rgba(245,158,11,1); }
.countdown-box:nth-child(3) .countdown-num { text-shadow: 0 0 10px rgba(0,255,255,1); }
.countdown-box:nth-child(4) .countdown-num { text-shadow: 0 0 10px rgba(255,215,0,1); }

.countdown-label {
    font-size: 0.58rem; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.75); margin-top: 2px;
    font-weight: 600;
}

/* ── Section heading gradient text ── */
.section-heading {
    font-family: var(--font-head);
    font-weight: 900; font-size: 2rem;
    background: linear-gradient(90deg, #fbbf24, #ffd700, #00ffff, #f59e0b, #fbbf24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 250% auto;
    animation: textShine 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255,0,85,0.4));
}

/* ═══════════════════════════════════════════════════════════════
   COMBO CARDS
   ═══════════════════════════════════════════════════════════════ */
.combo-card {
    border-radius: 24px; overflow: hidden;
    background: linear-gradient(145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    transition: var(--t);
}
.combo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(255,0,85,0.22);
}
.combo-card-header {
    padding: 28px 28px 24px;
    position: relative; overflow: hidden;
}
/* Background icons removed per request */
.combo-card-header h3 {
    font-family: var(--font-head);
    font-weight: 800; color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.combo-card-body-inner {
    background: linear-gradient(145deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.01) 100%);
    padding: 22px 28px;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING STICKY BAR — animated multi-color sweep
   ═══════════════════════════════════════════════════════════════ */
.booking-sticky-bar {
    position: sticky; top: 72px; z-index: 990;
    background: #0e0104 !important; /* Rich deep obsidian black */
    border-radius: 18px 18px 0 0;
    border: 2px solid #ffd700; /* gold border for framing */
    box-shadow:
        0 -6px 22px rgba(220, 38, 38, 0.4),
        0 8px 30px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
}
html[data-theme="light"] .booking-sticky-bar {
    background: #ffffff !important;
    border-color: #dc2626 !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05);
}

.booking-min-order-value {
    text-align: center;
    padding: 10px;
    font-family: var(--font-head);
    font-size: 1.05rem; font-weight: 800;
    color: #fff !important;
    background: linear-gradient(90deg, #7f1d1d, #dc2626, #7f1d1d); /* Rich Magenta gradient top */
    border-bottom: 2px solid #ffd700; /* gold divider line */
    letter-spacing: 0.8px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
html[data-theme="light"] .booking-min-order-value {
    background: linear-gradient(90deg, #7f1d1d, #dc2626, #7f1d1d);
    border-bottom-color: #ffd700;
}

.booking-stats-bar {
    display: flex; justify-content: space-around;
    align-items: center; padding: 12px 16px;
    flex-wrap: wrap; gap: 10px;
    background: #0f0104; /* dark obsidian base */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
html[data-theme="light"] .booking-stats-bar {
    background: #f1f5f9;
    border-top-color: rgba(0,0,0,0.06);
}

.booking-stat-item {
    display: flex; align-items: center; gap: 8px;
    font-weight: 850; font-size: 0.95rem; 
    color: #ffffff !important; /* Pure white for high contrast */
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
html[data-theme="light"] .booking-stat-item {
    color: #1e293b !important;
    text-shadow: none;
}

.booking-stat-pill {
    background: #000000 !important; /* Pitch black background for pill */
    color: #ffd700 !important; /* gold text */
    padding: 6px 18px;
    border-radius: 30px; font-weight: 900;
    min-width: 90px; text-align: center;
    border: 1.5px solid #ffd700 !important; /* gold outline */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 0 8px rgba(255,215,0,0.3);
    font-family: var(--font-head);
}
html[data-theme="light"] .booking-stat-pill {
    background: #ffffff !important;
    color: #dc2626 !important;
    border: 1.5px solid #dc2626 !important;
    box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING TABLE CARD
   ═══════════════════════════════════════════════════════════════ */
.booking-table-card {
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    background: linear-gradient(160deg,
        rgba(220, 38, 38, 0.05) 0%,
        rgba(6, 11, 19, 0.95) 50%,
        rgba(255, 215, 0, 0.04) 100%);
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.booking-table { margin-bottom: 0; width: 100%; }

.booking-table thead tr {
    background: linear-gradient(90deg,
        rgba(220, 38, 38, 0.22) 0%,
        rgba(6, 11, 19, 0.95) 50%,
        rgba(212, 175, 55, 0.18) 100%) !important;
    backdrop-filter: blur(12px);
}
.booking-table th {
    color: #ffd700 !important;
    font-family: var(--font-head);
    font-weight: 800; text-transform: uppercase;
    font-size: 0.82rem; letter-spacing: 1.2px;
    padding: 14px 10px; text-align: center;
    border: 1px solid rgba(255,255,255,0.08) !important;
    text-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.booking-table td {
    padding: 12px 10px; vertical-align: middle;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.92);
    background: transparent;
    transition: background 0.2s;
}
.booking-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.01);
}
.booking-table tr:hover td {
    background: rgba(220, 38, 38, 0.08) !important;
}

/* Category separator rows */
.booking-table tr.category-row td {
    background: linear-gradient(90deg,
        #dc2626 0%, #ffd700 50%, #dc2626 100%) !important;
    color: #fff !important;
    font-family: var(--font-head);
    font-weight: 900; font-size: 1rem;
    letter-spacing: 2px; padding: 13px 16px;
    text-align: center; border: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: categoryRowShimmer 5s linear infinite;
    background-size: 200% 100% !important;
}
@keyframes categoryRowShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Product image */
.booking-product-img {
    width: 52px; height: 52px; object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

/* Product name */
.booking-product-name {
    text-align: left !important;
    font-weight: 700; color: rgba(255,255,255,0.95);
}

/* Price columns */
.booking-price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4); font-size: 0.88rem; font-weight: 500;
}
.booking-price-discount {
    font-weight: 900; font-family: var(--font-head);
    color: #ffd700; font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* Qty input */
.booking-qty-input {
    width: 82px; text-align: center;
    font-weight: 700; font-family: var(--font-head);
    border-radius: 10px;
    border: 1.5px solid rgba(255,215,0,0.25);
    padding: 7px;
    color: #fff;
    background: rgba(0,0,0,0.25);
    transition: var(--t);
}
.booking-qty-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 18px rgba(255,215,0,0.45);
    background: rgba(220, 38, 38, 0.12);
    color: #fff;
}

/* Total output */
.booking-total-output {
    width: 115px; text-align: center;
    font-weight: 900; font-family: var(--font-head);
    border: 1.5px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px; padding: 7px;
    background: rgba(220, 38, 38, 0.08);
    color: #818cf8; display: inline-block;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FORM CONTROLS
   ═══════════════════════════════════════════════════════════════ */
.form-control, .form-select {
    background: rgba(255,255,255,0.07) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 12px !important;
    font-family: var(--font-body);
}
.form-control::placeholder { color: rgba(255,255,255,0.38) !important; }
.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border-color: var(--red) !important;
    box-shadow: 0 0 18px rgba(255,0,85,0.45) !important;
}
.form-label { color: rgba(255,255,255,0.85) !important; font-weight: 600; }
.input-group-text {
    background: rgba(255,255,255,0.07) !important;
    color: rgba(255,255,255,0.6) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
}

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════ */
.toast-container {
    position: fixed; top: 90px; right: 28px;
    z-index: 1300; display: flex; flex-direction: column; gap: 10px;
}
.custom-toast {
    background: rgba(12, 15, 22, 0.95) !important;
    border: 1.5px solid #dc2626 !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3), 0 0 15px rgba(255, 215, 0, 0.15) !important;
    padding: 14px 20px; border-radius: 14px;
    color: #fff; font-weight: 600;
    display: flex; align-items: center; gap: 12px;
    animation: toastIn 0.4s var(--ease) forwards;
    backdrop-filter: blur(16px);
    min-width: 260px;
}
@keyframes toastIn {
    from { transform: translateX(100%) scale(0.9); opacity: 0; }
    to   { transform: translateX(0) scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER — deep space gradient
   ═══════════════════════════════════════════════════════════════ */
.cart-drawer {
    position: fixed; top: 0; right: -480px;
    width: 420px; max-width: 100vw;
    height: 100vh; z-index: 1200;
    display: flex; flex-direction: column;
    transition: right 0.25s var(--ease);
    background: linear-gradient(160deg,
        rgba(6, 11, 19, 0.98) 0%,
        rgba(12, 15, 22, 0.99) 60%,
        rgba(220, 38, 38, 0.1) 100%) !important;
    backdrop-filter: blur(24px) !important;
    border-left: 2.5px solid rgba(255, 215, 0, 0.22) !important;
    color: #fff !important;
    box-shadow: -12px 0 60px rgba(220, 38, 38, 0.35) !important;
}
.cart-drawer.open { right: 0; }

.cart-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(5px);
    display: none;
}
.cart-overlay.open { display: block; }

/* Cart header gradient strip */
.cart-drawer .cart-header-inner {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #00ffff);
    background-size: 200% auto;
    animation: textShine 4s linear infinite;
    padding: 3px 0;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.floating-widgets-left {
    position: fixed; bottom: 30px; left: 28px;
    display: flex; flex-direction: column; gap: 14px;
    z-index: 1050;
}
.floating-widgets-right {
    position: fixed; bottom: 30px; right: 28px;
    display: flex; flex-direction: column; gap: 14px;
    z-index: 1050;
    align-items: center;
}
.btn-mobile-jump {
    background: linear-gradient(135deg, #ffd700, #dc2626) !important;
    background-size: 200% auto !important;
    animation: textShine 3s linear infinite, mobileJump 1.8s ease-in-out infinite !important;
    box-shadow: 0 6px 22px rgba(255,215,0,0.45) !important;
    text-decoration: none !important;
}
.btn-mobile-jump:hover {
    color: #000000 !important;
}

@keyframes mobileJump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
        box-shadow: 0 18px 30px rgba(255,215,0,0.65) !important;
    }
}

.floating-btn {
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; border: none;
    transition: var(--t);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.floating-btn:hover { transform: scale(1.18) translateY(-4px); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0 6px 22px rgba(37,211,102,0.5) !important;
    animation: whatsappJump 1.8s ease-in-out infinite !important;
    animation-delay: -0.9s !important; /* Offset animation cycle by 50% relative to the Call button */
    text-decoration: none !important;
}
.btn-whatsapp:hover {
    color: #fff !important;
}

@keyframes whatsappJump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
        box-shadow: 0 18px 30px rgba(37,211,102,0.7) !important;
    }
}

.btn-pdf {
    background: linear-gradient(135deg, #e11d48, #fb7185) !important;
    background-size: 200% auto !important;
    box-shadow: 0 6px 22px rgba(225, 29, 72, 0.6) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.btn-pdf:hover {
    color: #fff !important;
    transform: scale(1.18) translateY(-4px);
}

.btn-cart {
    background: linear-gradient(135deg, #dc2626, #ffd700);
    background-size: 200% auto;
    animation: textShine 3s linear infinite;
    box-shadow: 0 6px 22px rgba(220,38,38,0.55);
    position: relative;
}
.cart-badge {
    position: absolute; top: -5px; right: -5px;
    background: linear-gradient(135deg, #dc2626, #ffd700);
    color: #fff; border-radius: 50%;
    width: 22px; height: 22px;
    font-size: 0.72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #060010;
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Vibrant multi-color gradient (NOT plain dark)
   ═══════════════════════════════════════════════════════════════ */
footer.site-footer {
    background: linear-gradient(135deg,
        rgba(220,38,38,0.08) 0%,
        rgba(15,23,42,0.98) 50%,
        rgba(255,215,0,0.05) 100%),
        #0e0104 !important;
    border-top: 1.5px solid rgba(255, 215, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}
@media (max-width: 768px) {
    footer.site-footer {
        padding-bottom: 90px !important;
    }
    /* Push floating action widgets up on mobile so they don't overlap the bottom sticky order bar and cover the PDF button */
    .floating-widgets-left, .floating-widgets-right {
        bottom: 165px !important;
        transition: bottom 0.3s ease;
    }
}
footer.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #dc2626, #ffd700);
    background-size: 200% auto;
    animation: textShine 4s linear infinite;
}

.footer-brand { font-family: var(--font-head); font-weight: 900; font-size: 1.35rem; }
.footer-brand span {
    background: linear-gradient(90deg, #ffd700, #dc2626);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.footer-link {
    color: rgba(255,255,255,0.60) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: var(--t);
    display: inline-block;
}
.footer-link:hover {
    color: #ffd700 !important;
    transform: translateX(5px);
    text-shadow: 0 0 12px rgba(255,215,0,0.6);
}

.footer-contact-icon {
    background: linear-gradient(135deg, #ffd700, #dc2626);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(255,215,0,0.35), rgba(220,38,38,0.35), transparent);
    margin: 28px 0;
}

.footer-copyright {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   BOOTSTRAP OVERRIDES — kill all white/light backgrounds
   ═══════════════════════════════════════════════════════════════ */
.card {
    background: linear-gradient(145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #fff !important;
    backdrop-filter: blur(12px);
}
.bg-light  { background: rgba(255,255,255,0.05) !important; }
.bg-white  { background: rgba(255,255,255,0.05) !important; }
.bg-dark   { background: rgba(0,0,0,0.25) !important; }

/* text utilities */
.text-muted    { color: rgba(255,255,255,0.52) !important; }
.text-dark     { color: rgba(255,255,255,0.90) !important; }
.text-danger   { color: #818cf8 !important; }
.text-warning  { color: #ffd700 !important; }
.text-success  { color: #39ff14 !important; }
.text-info     { color: #00ffff !important; }
.text-white    { color: #fff !important; }
.text-white-50 { color: rgba(255,255,255,0.55) !important; }

/* table */
.table { color: rgba(255,255,255,0.90); }
.table > :not(caption) > * > * { background-color: transparent !important; }
.table thead th {
    background: rgba(255,0,85,0.15) !important;
    color: #ffd700 !important;
    border-color: rgba(255,255,255,0.08) !important;
}
.table td, .table th { border-color: rgba(255,255,255,0.08) !important; }
.table-hover tbody tr:hover td { background: rgba(255,0,85,0.07) !important; }

/* modal */
.modal-content {
    background: linear-gradient(145deg, #0d0025, #180040) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(24px); color: #fff !important;
}

/* borders */
.border-end    { border-right-color: rgba(255,255,255,0.12) !important; }
.border-top    { border-top-color:   rgba(255,255,255,0.12) !important; }
.border-bottom { border-bottom-color:rgba(255,255,255,0.12) !important; }

/* badge override */
.badge.bg-light { background: rgba(255,255,255,0.18) !important; color: #fff !important; }

/* ── Category filter pills & active state ── */
.category-filter-btn {
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: var(--t) !important;
}
.category-filter-btn:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

#favFilterBtn.category-filter-btn {
    border: 2px solid rgba(220, 38, 38, 0.45) !important;
    background: rgba(220, 38, 38, 0.08) !important;
    color: #818cf8 !important;
}
#favFilterBtn.category-filter-btn:hover {
    background: rgba(220, 38, 38, 0.18) !important;
    border-color: #dc2626 !important;
}

.active-category-btn {
    background: linear-gradient(135deg, #dc2626, #ffd700) !important;
    color: #fff !important; border: 2px solid transparent !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 18px rgba(220,38,38,0.45) !important;
}
.active-category-btn:hover {
    box-shadow: 0 6px 22px rgba(220, 38, 38, 0.6) !important;
}

/* ── Category Scroll Container ── */
.category-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.category-scroll-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #060010, #140105);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626, #ffd700);
    border-radius: 10px;
}

/* ── Micro animations ── */
@keyframes pulse-highlight {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); box-shadow: 0 0 18px rgba(255,215,0,0.6); }
    100% { transform: scale(1); }
}
.pulse-animate { animation: pulse-highlight 0.35s var(--ease); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .glass-nav {
        background-size: 200% 100% !important;
        animation: navbarColorShift 6s linear infinite !important;
    }
    @keyframes navbarColorShift {
        0%   { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
    }
    .cart-drawer { width: 95vw; }
    .countdown-container { gap: 6px; }
    .countdown-box { min-width: 50px; padding: 6px 8px; border-radius: 8px; }
    .countdown-num { font-size: 1.15rem; }
    .section-heading { font-size: 1.5rem; }
    .kpi-red, .kpi-gold, .kpi-cyan { font-size: 1.35rem !important; }
    .booking-stats-bar { flex-direction: column; align-items: flex-start; }
    .stats-countdown-card .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PROFESSIONAL ADDITIONS — CART OVERLAY, ALERTS, TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */

/* Cart overlay backdrop */
.cart-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none; opacity: 0;
    transition: opacity 0.35s ease;
}
.cart-overlay.open {
    display: block; opacity: 1;
    animation: overlayFadeIn 0.35s ease forwards;
}
@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Smooth page entrance */
main { animation: pageEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes pageEntrance {
    from { opacity: 0; filter: blur(8px) brightness(1.15); transform: scale(0.985) translateY(12px); }
    to   { opacity: 1; filter: blur(0) brightness(1); transform: scale(1) translateY(0); }
}

/* Bootstrap Alert overrides */
.alert {
    border-radius: 14px !important;
    backdrop-filter: blur(10px);
}
.alert-danger {
    background: rgba(255,0,85,0.15) !important;
    border: 1px solid rgba(255,0,85,0.35) !important;
    color: #ff8fa3 !important;
}
.alert-success {
    background: rgba(57,255,20,0.12) !important;
    border: 1px solid rgba(57,255,20,0.30) !important;
    color: #39ff14 !important;
}
.alert-warning {
    background: rgba(255,215,0,0.12) !important;
    border: 1px solid rgba(255,215,0,0.30) !important;
    color: #ffd700 !important;
}
.alert-info {
    background: rgba(0,255,255,0.10) !important;
    border: 1px solid rgba(0,255,255,0.25) !important;
    color: #00ffff !important;
}

/* Booking banner – override inline bg colors */
#bookingMinOrderBanner {
    border-radius: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .5px !important;
    transition: background .5s ease, color .5s ease !important;
}

/* Input group borders fix */
.input-group > .form-control:not(:last-child) { border-right: none; }
.input-group > .input-group-text { border-right: none; }

/* Select arrow override for dark */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

/* Number input arrow hide */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Link default */
a { color: inherit; }

/* Horizontal rule gradient everywhere */
hr {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent) !important;
    opacity: 1 !important;
}

/* Utility: neon text shadows */
.neon-red  { text-shadow: 0 0 12px rgba(255,0,85,0.9),  0 0 30px rgba(255,0,85,0.4); }
.neon-gold { text-shadow: 0 0 12px rgba(255,215,0,0.9), 0 0 30px rgba(255,215,0,0.4); }
.neon-cyan { text-shadow: 0 0 12px rgba(0,255,255,0.9), 0 0 30px rgba(0,255,255,0.4); }

/* Utility: gradient text */
.grad-text-fire {
    background: linear-gradient(90deg, #fbbf24, #ffd700);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.grad-text-cool {
    background: linear-gradient(90deg, #f59e0b, #00ffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.grad-text-green {
    background: linear-gradient(90deg, #39ff14, #00e676);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Demo Showcase Cards ── */
.demo-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.demo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15), 0 0 25px rgba(245, 158, 11, 0.1);
    border-color: rgba(255, 255, 255, 0.22) !important;
}
.demo-canvas-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pulsing Play Button Overlay Animation */
@keyframes playPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Responsive Product Modal Media container */
.modal-media-container {
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
    .modal-media-container {
        height: 240px;
    }
}

/* ── Bottom-sheet modal media container (smaller to keep bottom details visible) ── */
.modal-media-container-bottom {
    height: 190px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1) !important;
}
@media (max-width: 768px) {
    .modal-media-container-bottom {
        height: 140px;
    }
}

/* ── Bottom-sheet modal: force modal to slide up from the bottom ── */
#productMediaModal.show {
    display: flex !important;
    align-items: flex-end !important;
}
#productMediaModal .modal-dialog {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    margin-bottom: 0;
}
#productMediaModal.show .modal-dialog {
    animation: slideUpModal 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUpModal {
    from { transform: translateY(60px); opacity: 0.5; }
    to   { transform: translateY(0);    opacity: 1;   }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME STYLES (data-theme="light")
   ═══════════════════════════════════════════════════════════════ */
html[data-theme="light"] {
    background: #ffffff !important;
    background-attachment: fixed;
    color: #27030c;
}
html[data-theme="light"] body {
    background: transparent !important;
    color: #27030c;
}

/* Typography & Contrast Override */
html[data-theme="light"] .text-dark { color: #27030c !important; }
html[data-theme="light"] .text-muted { color: rgba(26, 11, 46, 0.6) !important; }
html[data-theme="light"] .text-white-50 { color: rgba(26, 11, 46, 0.55) !important; }
html[data-theme="light"] .text-white { color: #27030c !important; }
html[data-theme="light"] .form-label { color: #27030c !important; }
html[data-theme="light"] .pro-label { color: rgba(26, 11, 46, 0.7) !important; }
html[data-theme="light"] .form-section-label { color: rgba(26, 11, 46, 0.45) !important; }

/* Cards Styling */
html[data-theme="light"] .glass-card,
html[data-theme="light"] .card,
html[data-theme="light"] .table-card,
html[data-theme="light"] .combo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7) !important;
    color: #27030c !important;
}

html[data-theme="light"] .glass-card:hover,
html[data-theme="light"] .combo-card:hover {
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.22) !important;
}

html[data-theme="light"] .combo-card-body-inner {
    background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%) !important;
}

/* Booking Catalog Specific Styling */
html[data-theme="light"] .booking-table-card {
    background: linear-gradient(160deg,
        rgba(255,0,85,0.02) 0%,
        rgba(245,158,11,0.02) 30%,
        rgba(0,255,255,0.01) 60%,
        rgba(255,215,0,0.02) 100%) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-top: none !important;
}

html[data-theme="light"] .booking-table thead tr {
    background: linear-gradient(90deg,
        rgba(99, 102, 241, 0.06) 0%,
        rgba(245, 158, 11, 0.06) 50%,
        rgba(0, 255, 255, 0.05) 100%) !important;
}
html[data-theme="light"] .booking-table th {
    color: #27030c !important;
    text-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
html[data-theme="light"] .booking-table td {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #27030c !important;
}

html[data-theme="light"] .booking-table tr:nth-child(even) td {
    background: rgba(0,0,0,0.01) !important;
}

html[data-theme="light"] .booking-table tr:hover td {
    background: rgba(99, 102, 241, 0.04) !important;
}

html[data-theme="light"] .booking-table tr.category-row td {
    background: linear-gradient(90deg,
        #fbbf24 0%, #ff6a00 35%, #ffc400 50%,
        #ff6a00 65%, #fbbf24 100%) !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25) !important;
}

/* Light mode category filter pills overrides */
html[data-theme="light"] .category-filter-btn {
    border: 2px solid rgba(0, 0, 0, 0.12) !important;
    background: rgba(0, 0, 0, 0.03) !important;
    color: #27030c !important;
}
html[data-theme="light"] .category-filter-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: #27030c !important;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05) !important;
}
html[data-theme="light"] #favFilterBtn.category-filter-btn {
    border: 2px solid rgba(99, 102, 241, 0.25) !important;
    background: rgba(99, 102, 241, 0.04) !important;
    color: #b3003b !important;
}
html[data-theme="light"] #favFilterBtn.category-filter-btn:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: #fbbf24 !important;
}
/* replaced duplicate definition */

html[data-theme="light"] .booking-product-name {
    color: #27030c !important;
}

html[data-theme="light"] .booking-qty-input {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    color: #27030c !important;
}

html[data-theme="light"] .booking-qty-input:focus {
    background: #fff !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 0 12px rgba(255,0,85,0.2) !important;
}

html[data-theme="light"] .booking-total-output {
    background: rgba(0, 200, 150, 0.04) !important;
    border: 1px solid rgba(0, 200, 150, 0.22) !important;
    color: #008a65 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .booking-price-discount {
    color: #00a07e !important;
    text-shadow: none !important;
}

html[data-theme="light"] .booking-price-original {
    color: #d63351 !important;
}

html[data-theme="light"] .booking-product-img {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: rgba(0,0,0,0.02) !important;
}

html[data-theme="light"] .booking-stats-bar {
    background: rgba(255, 255, 255, 0.25) !important;
}

html[data-theme="light"] .booking-stat-pill {
    background: rgba(255, 255, 255, 0.6) !important;
    color: #27030c !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
}

html[data-theme="light"] .booking-stat-item {
    color: #27030c !important;
    text-shadow: none !important;
}

html[data-theme="light"] #bookingMinOrderBanner {
    text-shadow: none !important;
}

/* Modals styling */
html[data-theme="light"] .modal-content {
    background: linear-gradient(145deg, #ffffff, #faf7ff) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    color: #27030c !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important;
}

html[data-theme="light"] .modal-header .btn-close {
    filter: invert(1) !important;
}

html[data-theme="light"] #modalProductName {
    color: #27030c !important;
    text-shadow: none !important;
}

html[data-theme="light"] #modalProductCode {
    background-color: #fbbf24 !important;
}

html[data-theme="light"] #modalProductUnit,
html[data-theme="light"] #modalProductSize {
    color: #27030c !important;
}

html[data-theme="light"] #modalProductQty {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #27030c !important;
}

html[data-theme="light"] #modalProductQty:focus {
    background: #fff !important;
    border-color: #fbbf24 !important;
}

/* Form inputs & fields */
html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select,
html[data-theme="light"] .pro-input,
html[data-theme="light"] .pro-select,
html[data-theme="light"] .pro-textarea {
    background: rgba(0,0,0,0.03) !important;
    color: #27030c !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
}

html[data-theme="light"] .form-control:focus,
html[data-theme="light"] .form-select:focus,
html[data-theme="light"] .pro-input:focus,
html[data-theme="light"] .pro-select:focus,
html[data-theme="light"] .pro-textarea:focus {
    background: #fff !important;
    color: #27030c !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 0 10px rgba(255,0,85,0.15) !important;
}

html[data-theme="light"] .pro-select option {
    background: #fff;
    color: #27030c;
}

html[data-theme="light"] .form-control::placeholder,
html[data-theme="light"] .pro-input::placeholder,
html[data-theme="light"] .pro-textarea::placeholder {
    color: rgba(26, 11, 46, 0.38) !important;
}

html[data-theme="light"] .input-group-text {
    background: rgba(0,0,0,0.04) !important;
    color: rgba(26, 11, 46, 0.6) !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
}

html[data-theme="light"] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(26,11,46,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

/* Cart drawer styling */
html[data-theme="light"] .cart-drawer {
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(247, 243, 252, 0.96) 50%,
        rgba(235, 245, 255, 0.98) 100%) !important;
    border-left: 2px solid rgba(0, 0, 0, 0.08) !important;
    color: #27030c !important;
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .cart-drawer h5 {
    color: #27030c !important;
}

html[data-theme="light"] .cart-drawer .btn-close-white {
    filter: invert(1) !important;
}

html[data-theme="light"] .cart-drawer #cartItemsContainer p {
    color: rgba(26, 11, 46, 0.5) !important;
}

html[data-theme="light"] .cart-item-card {
    background: rgba(0,0,0,0.02) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

html[data-theme="light"] .cart-item-card::before {
    background: linear-gradient(180deg, #fbbf24, #ffd700);
}

html[data-theme="light"] .cart-item-name {
    color: #27030c !important;
}

html[data-theme="light"] .cart-item-meta span {
    background: rgba(0,0,0,0.04) !important;
    color: rgba(26, 11, 46, 0.6) !important;
}

html[data-theme="light"] .cart-item-img {
    background: rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

html[data-theme="light"] .qty-stepper {
    border: 1px solid rgba(0,0,0,0.12) !important;
    background: rgba(0,0,0,0.03) !important;
}

html[data-theme="light"] .qty-stepper button {
    background: rgba(0, 0, 0, 0.04) !important;
    color: #27030c !important;
}

html[data-theme="light"] .qty-stepper button:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #fbbf24 !important;
}

html[data-theme="light"] .qty-stepper input {
    color: #27030c !important;
}

html[data-theme="light"] .cart-item-price .total {
    color: #009977 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .cart-remove-btn {
    color: rgba(0,0,0,0.2) !important;
}

html[data-theme="light"] .cart-remove-btn:hover {
    color: #fbbf24 !important;
}

/* Other layouts / elements */
html[data-theme="light"] .pro-breadcrumb {
    background: rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: rgba(26, 11, 46, 0.5) !important;
}

html[data-theme="light"] .pro-breadcrumb span.active {
    color: #d67a00 !important;
}

html[data-theme="light"] .price-details-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(245, 158, 11, 0.04)) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .price-details-box .summary-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

html[data-theme="light"] .site-footer {
    background: linear-gradient(125deg,
        rgba(255,0,85,0.06) 0%,
        rgba(245,158,11,0.05) 20%,
        rgba(0,100,180,0.04) 40%,
        rgba(0,200,200,0.04) 55%,
        rgba(57,255,20,0.03) 70%,
        rgba(255,215,0,0.05) 85%,
        rgba(255,0,85,0.05) 100%),
        linear-gradient(180deg, #faf7f8 0%, #f1eef3 100%) !important;
    color: #27030c !important;
}

html[data-theme="light"] .site-footer .footer-brand span {
    background: linear-gradient(90deg, #fbbf24, #d68900, #f59e0b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .site-footer p {
    color: rgba(26, 11, 46, 0.65) !important;
}

html[data-theme="light"] .footer-link {
    color: rgba(26, 11, 46, 0.6) !important;
}

html[data-theme="light"] .footer-link:hover {
    color: #fbbf24 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .footer-copyright {
    color: rgba(26, 11, 46, 0.45) !important;
}

html[data-theme="light"] .site-footer p span[style*="background"] {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Table light overrides */
html[data-theme="light"] .table > :not(caption) > * > * {
    color: #27030c !important;
}

html[data-theme="light"] .table-light {
    --bs-table-bg: rgba(0,0,0,0.03) !important;
    --bs-table-color: #27030c !important;
}

html[data-theme="light"] .table-bordered {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Demo showcase card override */
html[data-theme="light"] .demo-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .demo-card-body h4 {
    color: #27030c !important;
}

html[data-theme="light"] .demo-card-body p {
    color: rgba(26, 11, 46, 0.6) !important;
}

/* Float particles in light mode */
html[data-theme="light"] .login-float {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES (MOBILE -> TABLET -> LAPTOP -> TV -> PROJECTOR)
   ═══════════════════════════════════════════════════════════════ */

/* 1. Mobile Displays (max-width: 480px) */
@media (max-width: 480px) {
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    /* .cracker-slide height is now controlled by aspect-ratio in home.php */
    .slide-title {
        font-size: 1.8rem !important;
    }
    .slide-sub {
        font-size: 0.85rem !important;
    }
    .stats-countdown-card .row > div {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px !important;
    }
    .stats-countdown-card .row > div:last-child {
        border-bottom: none !important;
    }
    .booking-sticky-bar {
        bottom: 0px !important;
        border-radius: 0 !important;
    }
    .booking-stat-item {
        font-size: 0.75rem !important;
    }
    .booking-stat-pill {
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }
}

/* 2. Tablet / Portable Displays (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    /* .cracker-slide height is now controlled by aspect-ratio in home.php */
    .slide-title {
        font-size: 2.2rem !important;
    }
    .slide-sub {
        font-size: 0.95rem !important;
    }
}

/* 3. Laptops / Standard Desktop Displays (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .container-fluid {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    /* .cracker-slide height is now controlled by aspect-ratio in home.php */
}

/* 4. Large TV & High-Res Desktop Screens (1201px to 2560px) */
@media (min-width: 1201px) and (max-width: 2560px) {
    .container-fluid {
        padding-left: 48px !important;
        padding-right: 48px !important;
        max-width: 100% !important;
    }
    /* .cracker-slide height is now controlled by aspect-ratio in home.php */
    .slide-title {
        font-size: 3.6rem !important;
    }
    .slide-sub {
        font-size: 1.25rem !important;
        max-width: 720px !important;
    }
}

/* 5. Projector / Ultra-wide / 4K Displays (2561px and above) */
@media (min-width: 2561px) {
    .container-fluid {
        padding-left: 80px !important;
        padding-right: 80px !important;
        max-width: 2400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* .cracker-slide height is now controlled by aspect-ratio in home.php */
    .slide-title {
        font-size: 4.8rem !important;
    }
    .slide-sub {
        font-size: 1.6rem !important;
        max-width: 960px !important;
    }
    body {
        font-size: 1.15rem !important;
    }
}

/* Wishlist Favorites Button */
.fav-btn {
    color: rgba(255, 255, 255, 0.25) !important;
    font-size: 1.15rem !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    transition: transform 0.2s, color 0.2s !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}
.fav-btn:hover {
    color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.15) !important;
}
.fav-btn.active {
    color: #fbbf24 !important;
    transform: scale(1.25) !important;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.45) !important;
}

html[data-theme="light"] .fav-btn {
    color: rgba(26, 11, 46, 0.25) !important;
}
html[data-theme="light"] .fav-btn:hover {
    color: rgba(26, 11, 46, 0.5) !important;
}
html[data-theme="light"] .fav-btn.active {
    color: #fbbf24 !important;
    text-shadow: none !important;
}

/* Booking Product Code */
.booking-product-code {
    color: #ffd700;
}
html[data-theme="light"] .booking-product-code {
    color: #b85c00 !important;
}

/* Booking Milestone Wrap */
.booking-milestone-wrap {
    background: #0f172a !important; /* dark slate background */
    border-color: rgba(255, 255, 255, 0.06) !important;
    padding: 12px 18px !important;
}
html[data-theme="light"] .booking-milestone-wrap {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* Milestone Label Text "Wholesale Discount Milestone:" */
.booking-milestone-wrap span.text-white-50 {
    color: #ffffff !important; /* white for high contrast */
    font-weight: 700;
}
html[data-theme="light"] .booking-milestone-wrap span.text-white-50 {
    color: #475569 !important; /* dark slate in light theme */
}

/* Milestone Progress Labels (Min, Bronze, Silver, Gold) */
.booking-milestone-wrap .d-flex.text-white-50 {
    color: #ffffff !important; /* white for contrast */
    font-weight: 700 !important;
    opacity: 0.95;
}
html[data-theme="light"] .booking-milestone-wrap .d-flex.text-white-50 {
    color: #64748b !important;
    font-weight: 700 !important;
}

/* Milestone Status Text */
#milestoneStatusText {
    color: #ffd700;
    font-weight: 800 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
html[data-theme="light"] #milestoneStatusText {
    color: #9b003c !important;
    font-weight: 800 !important;
    text-shadow: none;
}

/* --- Cursor-Tracking Radial Glow Cards --- */
.glass-card, .card, .combo-card, .demo-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before, .card::before, .combo-card::before, .demo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(255, 255, 255, 0.08),
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before, .card:hover::before, .combo-card:hover::before, .demo-card:hover::before {
    opacity: 1;
}

html[data-theme="light"] .glass-card::before,
html[data-theme="light"] .card::before,
html[data-theme="light"] .combo-card::before,
html[data-theme="light"] .demo-card::before {
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(99, 102, 241, 0.05),
        transparent 80%
    ) !important;
}





