/* ============================================================
   JAY SHREE CHAMUNDA GRUH UDYOG — DESIGN SYSTEM
   ============================================================ */
:root {
    --bg-gradient: linear-gradient(135deg, #0b1329, #155263, #afc5ff);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.14);
    --cream-panel: rgba(253, 246, 226, 0.12);
    --neon-cyan: #00f5ff;
    --card-hover: rgba(0, 245, 255, 0.16);
    /* --text-main: #f8fafc; */
    --text-main: #ff847c;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-card-heading: #ffffff;
}

[data-theme="light"] {
    --bg-gradient: linear-gradient(135deg, #fdf6e2, #e0f2fe, #bae6fd);
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(15, 23, 42, 0.15);
    --cream-panel: rgba(253, 246, 226, 0.85);
    --neon-cyan: #1d4ed8;
    --card-hover: rgba(29, 78, 216, 0.08);
    --text-main: #1e293b;
    --text-muted: #475569;
    --text-card-heading: #0f172a;
}

* { box-sizing: border-box; }

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    transition: background 0.4s ease, color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.text-main { color: var(--text-main) !important; }
.text-heading { color: var(--text-card-heading) !important; }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-main) !important;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-link {
    color: var(--text-main) !important;
    opacity: 0.85;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.nav-link:hover { color: var(--neon-cyan) !important; opacity: 1; }
.nav-links-container { display: flex !important; gap: 24px !important; align-items: center !important; }

.poster-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* ============================================================
   PRODUCT CARD — Mobile-first compact design
   ============================================================ */
.catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)) !important;
    gap: 72px 14px !important;
    padding-top: 68px !important;
    padding-bottom: 30px !important;
    width: 100%;
}

@media (min-width: 480px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)) !important;
        gap: 76px 18px !important;
    }
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
        gap: 80px 22px !important;
    }
}

.product-card {
    width: 100% !important;
    max-width: 240px !important;
    height: 230px !important;
    position: relative !important;
    padding-top: 80px !important;
    border-radius: 18px !important;
    margin: 0 auto !important;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: visible;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 18px var(--card-hover);
}

.image-box {
    background: rgba(30, 58, 138, 0.25);
    border-radius: 14px;
    position: absolute !important;
    left: 50% !important;
    top: -48px !important;
    transform: translateX(-50%) !important;
    width: 130px !important;
    height: 90px !important;
    z-index: 10 !important;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@media (min-width: 480px) {
    .image-box {
        width: 150px !important;
        height: 100px !important;
        top: -50px !important;
    }
    .product-card {
        height: 240px !important;
        padding-top: 84px !important;
    }
}

@media (min-width: 768px) {
    .image-box {
        width: 180px !important;
        height: 115px !important;
        top: -58px !important;
    }
    .product-card {
        max-width: 260px !important;
        height: 255px !important;
        padding-top: 96px !important;
    }
    .catalog-grid {
        gap: 82px 24px !important;
    }
}

.image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .image-box img { transform: scale(1.08); }

.card-content { padding: 10px 14px 8px; display: flex; flex-direction: column; gap: 6px; height: 100%; }
.card-content-2 {
    padding: 7px 10px;
    background-color: var(--cream-panel);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    flex: 1;
}

.line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    margin-bottom: 6px;
}

.product-card h2 {
    color: var(--text-card-heading) !important;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .product-card h2 { font-size: 15px; }
}

.details p { color: var(--text-muted) !important; font-size: 11px; }
.details .price-text { color: var(--text-main) !important; font-size: 12px; font-weight: bold; margin-top: 2px; }

/* ============================================================
   CARD ACTION BUTTONS
   ============================================================ */
.card-action-btns {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.card-btn-buy {
    flex: 1;
    background: var(--neon-cyan);
    color: #fecea8 !important;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.card-btn-buy:hover { opacity: 0.85; transform: scale(1.03); }

.card-btn-cart {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--neon-cyan) !important;
    font-size: 12px;
    padding: 5px 9px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.card-btn-cart:hover { border-color: var(--neon-cyan); }

/* ============================================================
   ORBIT FLAVOR BUBBLES — Better spacing
   ============================================================ */
.orbit-flavor-bubble {
    position: absolute !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 9px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    padding: 5px !important;
    text-transform: capitalize;
    border: 1.5px solid var(--glass-border);
    color: var(--text-main);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    user-select: none;
}

.orbit-flavor-bubble.active-bubble {
    border-color: var(--neon-cyan) !important;
    background: var(--neon-cyan) !important;
    color: #0b1329 !important;
    box-shadow: 0 0 14px var(--neon-cyan) !important;
    transform: scale(1.12) !important;
}

.orbit-flavor-bubble:hover:not(.active-bubble) {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 8px var(--card-hover) !important;
}

/* ============================================================
   ORBIT RING CONTAINER — Larger to prevent overlap
   ============================================================ */
#orbit-ring-container {
    position: absolute;
    inset: -40px;
    z-index: 10;
}

/* ============================================================
   QUANTITY CONTROLS
   ============================================================ */
.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 8px;
}
[data-theme="light"] .quantity { background: rgba(0, 0, 0, 0.06); }
.quantity button { border: none; background: none; font-size: 16px; color: var(--text-main) !important; cursor: pointer; font-weight: bold; }
.quantity span { font-weight: bold; color: var(--text-main) !important; font-size: 14px; min-width: 12px; text-align: center; }

/* ============================================================
   INPUTS
   ============================================================ */
.glass-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-main) !important;
}
[data-theme="light"] .glass-input { background: rgba(255, 255, 255, 0.75); }
.glass-input:focus { border-color: var(--neon-cyan); outline: none; }

/* select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
} */
select.glass-input{
    font-family: inherit;
    font-size:14px;
    line-height:1.4;
    height:42px;
    min-width:170px;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
    transform:none;
}
[data-theme="light"] select.glass-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}
[data-theme="light"] select option { background-color: #fdf6e2 !important; color: #0f172a !important; }

/* ============================================================
   NEON ELEMENTS
   ============================================================ */
.neon-text { color: var(--neon-cyan) !important; }
.neon-btn { background: var(--neon-cyan) !important; color: #0f172a !important; box-shadow: 0 0 14px var(--neon-cyan); cursor: pointer; }
[data-theme="light"] .neon-btn { color: #ffffff !important; }

/* ============================================================
   ALL ITEMS EXPANDABLE SECTION
   ============================================================ */
#all-items-toggle-btn {
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}
#all-items-toggle-btn:hover { border-color: var(--neon-cyan) !important; }

#all-items-arrow {
    transition: transform 0.35s ease;
    display: inline-block;
    font-size: 12px;
}

#all-items-section {
    display: none;
    overflow: hidden;
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SHOWCASE SECTIONS (Most Sold, Most Viewed, Household)
   ============================================================ */
.showcase-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)) !important;
    gap: 72px 14px !important;
    padding-top: 64px !important;
    padding-bottom: 24px !important;
}

@media (min-width: 480px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)) !important;
        gap: 76px 18px !important;
    }
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 80px 22px !important;
    }
}

/* Section header badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0,245,255,0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0,245,255,0.2);
    margin-bottom: 6px;
}

/* ============================================================
   REVIEWS GRID
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-tab-active {
    background: var(--neon-cyan) !important;
    color: #0f172a !important;
    font-weight: 800 !important;
}

.filter-btn-active {
    background: var(--neon-cyan) !important;
    color: #0f172a !important;
    border-color: var(--neon-cyan) !important;
    font-weight: 800 !important;
    box-shadow: 0 0 12px var(--neon-cyan) !important;
}

#admin-table-body input[type="number"] {
    border-bottom: 1px dashed var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 11px;
    padding: 0 2px;
    transition: border-color 0.2s;
}
#admin-table-body input[type="number"]:focus { outline: none; border-bottom-color: var(--text-main); }
#admin-table-body input[type="number"]::-webkit-outer-spin-button,
#admin-table-body input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ============================================================
   SEARCH HIGHLIGHT
   ============================================================ */
#catalog-search:not(:placeholder-shown) {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.15);
}

/* ============================================================
   SCROLLBAR HIDE
   ============================================================ */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   TABLE
   ============================================================ */
table th, table td { padding: 10px 6px; vertical-align: middle; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* ============================================================
   TOAST
   ============================================================ */
#site-toast { font-family: inherit; }

/* ============================================================
   LOGO IN NAV
   ============================================================ */
.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .nav-logo { width: 40px; height: 40px; }
}

/* ============================================================
   ABOUT LOGO
   ============================================================ */
.about-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    padding: 8px;
}

/* ============================================================
   CATEGORY FILTER ROW
   ============================================================ */
#category-filter-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none;
}
#category-filter-row::-webkit-scrollbar { display: none; }

/* ============================================================
   HERO SECTION ENHANCEMENTS
   ============================================================ */
.hero-wrapper { position: relative; }

.hero-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-image-container { height: 280px; }
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-wrapper:hover .hero-bg-img { transform: scale(1.04); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,19,41,0.3) 0%, rgba(11,19,41,0.65) 100%);
}

/* Floating Badges */
.hero-badge {
    position: absolute;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}
.badge-top-left    { top: 14px; left: 14px; animation-delay: 0s; }
.badge-top-right   { top: 14px; right: 14px; animation-delay: 0.7s; }
.badge-bottom-left { bottom: 14px; left: 14px; animation-delay: 1.4s; }
.badge-bottom-right{ bottom: 14px; right: 14px; animation-delay: 2.1s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-5px); }
}

/* Trust bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.trust-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0,245,255,0.08);
    color: var(--neon-cyan);
    border: 1px solid rgba(0,245,255,0.2);
    white-space: nowrap;
}

/* ============================================================
   TRUST BADGE SECTION
   ============================================================ */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 90px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    transition: border-color 0.2s, transform 0.2s;
}
.trust-badge:hover { border-color: var(--neon-cyan); transform: translateY(-3px); }

/* ============================================================
   PRODUCT CARD — RIBBONS & BADGES
   ============================================================ */
.product-badge {
    position: absolute;
    bottom: 65%;
    left: 30%;
    font-size: 9px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 12px;
    z-index: 20;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.badge-bestseller { background: #f59e0b; color: #0f172a; }
.badge-new        { background: #10b981; color: #fff; }
.badge-limited    { background: #ef4444; color: #fff; }

/* Card hover zoom enhancement */
.product-card:hover .image-box img { transform: scale(1.12); }

/* ============================================================
   CART FLY ANIMATION
   ============================================================ */
.fly-to-cart {
    position: fixed;
    z-index: 9999;
    width: 34px;
    height: 34px;
    background: var(--neon-cyan);
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    pointer-events: none;
    transition: none;
}
.fly-to-cart.flying {
    animation: flyToCart 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes flyToCart {
    0%   { opacity: 1; transform: scale(1); }
    60%  { opacity: 1; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(0.3); }
}

/* ============================================================
   CONFETTI
   ============================================================ */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall 1s ease-out forwards;
    pointer-events: none;
}
@keyframes confettiFall {
    0%   { opacity: 1; transform: translateY(0) rotate(0deg); }
    100% { opacity: 0; transform: translateY(120px) rotate(540deg); }
}

/* ============================================================
   CART ADD CELEBRATION TOAST
   ============================================================ */
.cart-success-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}
.cart-success-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 8888;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 32px rgba(37,211,102,0.7);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.8); }
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.video-placeholder { transition: background 0.2s, border-color 0.2s; }
.video-play-btn {
    width: 64px;
    height: 64px;
    background: var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px var(--neon-cyan);
    animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 24px var(--neon-cyan); transform: scale(1); }
    50%       { box-shadow: 0 0 40px var(--neon-cyan); transform: scale(1.06); }
}

/* ============================================================
   REVIEWS — OVERALL RATING BAR
   ============================================================ */
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: width 1s ease;
}
[data-theme="light"] .rating-bar-track { background: rgba(0,0,0,0.08); }

/* ============================================================
   STICKY CATEGORY PILLS
   ============================================================ */
.sticky-pills {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0 10px;
    margin: 0 -4px 16px;
    border-bottom: 1px solid var(--glass-border);
}

/* ============================================================
   THEME TOGGLE TRANSITION (smooth + icon rotation)
   ============================================================ */
html {
    transition: background 0.4s ease;
}
#theme-icon {
    transition: transform 0.4s ease, color 0.3s ease;
}
.theme-rotating #theme-icon {
    transform: rotate(360deg);
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--glass-bg) 25%, rgba(255,255,255,0.12) 50%, var(--glass-bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton-card {
    width: 100%;
    max-width: 240px;
    height: 230px;
    border-radius: 18px;
    margin: 0 auto;
}

/* ============================================================
   CHECKOUT SUMMARY (Cart page)
   ============================================================ */
.order-summary-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}
.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.order-summary-row:last-child { border-bottom: none; font-weight: 800; font-size: 15px; }

/* ============================================================
   PRODUCT DETAIL POPUP
   ============================================================ */
.spice-dot, .sweet-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
}
.spice-dot.active { background: #ef4444; border-color: #ef4444; }
.sweet-dot.active  { background: #f59e0b; border-color: #f59e0b; }

/* ============================================================
   WHATSAPP BTN HOVER in hero
   ============================================================ */
.whatsapp-btn:hover { border-color: #25d366 !important; }
