/* =========================================================================
   BENAAM KITCHEN - PROTOCOL OMEGA (ULTRA-PREMIUM HOLI REDESIGN)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ====== DESIGN TOKENS ====== */
:root {
    /* Color System */
    --bg-base: #050505;
    --bg-elevated: #111111;
    --bg-glass: rgba(20, 20, 22, 0.4);
    --bg-sheet: rgba(15, 15, 18, 0.95);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --text-primary: #ffffff;
    --text-secondary: #9999a1;
    --text-muted: #66666e;

    /* Neon Holi Palette */
    --h-pink: #FF1A5A;
    --h-magenta: #E20074;
    --h-yellow: #FFD200;
    --h-green: #00E676;
    --h-blue: #0A84FF;
    --h-purple: #9D00FF;
    --h-orange: #FF6A00;

    /* Brand */
    --zomato-red: #E23744;
    --whatsapp-green: #25D366;

    /* Typography */
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Radii */
    --rad-sm: 8px;
    --rad-md: 16px;
    --rad-lg: 24px;
    --rad-xl: 32px;
    --rad-circle: 999px;

    /* Motion */
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    --spring-soft: cubic-bezier(0.16, 1, 0.3, 1);
    --trans-fast: 200ms var(--spring-soft);
    --trans-med: 400ms var(--spring-soft);
    --trans-slow: 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ====== RESET & BASE ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}


a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    font-family: inherit;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--h-pink);
    color: #fff;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: -0.5px;
}

.fw-bold {
    font-weight: 700;
}

.text-green {
    color: var(--h-green);
}

.text-red {
    color: var(--h-pink);
}

.text-muted {
    color: var(--text-muted);
}

.text-xs {
    font-size: 0.75rem;
}

.mt-sm {
    margin-top: 0.5rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ====== CUSTOM CURSOR ====== */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--h-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s, background 0.15s;
    will-change: transform, width, height;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s, border-color 0.15s;
    will-change: transform, width, height;
}

/* Hover states are handled in JS globally for 'a' and 'button' */
.cursor-hover .cursor-dot {
    width: 40px;
    height: 40px;
    background: var(--border-hover);
    mix-blend-mode: exclusion;
    transition: width 0.15s, height 0.15s, background 0.15s;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: transparent;
    transition: width 0.15s, height 0.15s, border-color 0.15s;
}

/* ====== BACKGROUND FX ====== */
#festivalCanvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    background-color: var(--bg-base);
    z-index: 0;
    overflow: hidden;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 2;
}

.ambient-glow {
    position: absolute;
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    animation: amFloat 20s infinite alternate ease-in-out;
    mix-blend-mode: screen;
    pointer-events: none;
}

.color-pink {
    width: 50vw;
    height: 50vh;
    background: var(--h-pink);
    top: -20%;
    left: -10%;
}

.color-yellow {
    width: 40vw;
    height: 40vh;
    background: var(--h-yellow);
    bottom: 10%;
    right: -10%;
    animation-delay: -5s;
}

.color-green {
    width: 30vw;
    height: 30vh;
    background: var(--h-green);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

.color-blue {
    width: 60vw;
    height: 60vh;
    background: var(--h-blue);
    bottom: -20%;
    left: -20%;
    opacity: 0.1;
}

@keyframes amFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Main Layout */
main {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ====== STATUS BANNER ====== */
.status-banner {
    background: var(--border-hover);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem 0;
    width: 100%;
    position: relative;
    z-index: 110;
    text-align: center;
}

.status-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--h-pink);
    border-radius: 50%;
    animation: pulseRed 1.5s infinite;
}

.text-highlight {
    color: var(--h-yellow);
    font-weight: 700;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 26, 90, 0.6);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(255, 26, 90, 0);
    }
}

/* ====== FLOATING NAVIGATION ====== */
.glass-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 900px;
    z-index: 100;
    transition: top 0.4s var(--spring-soft), width 0.4s;
}

.glass-nav.scrolled {
    top: 1rem;
    width: 100%;
    max-width: 1000px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1rem;
    border-radius: var(--rad-circle);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.logo-image-wrap {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.logo-image-wrap img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 2;
    object-fit: cover;
}

.logo-spin-border {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--h-pink), var(--h-yellow), var(--h-green), var(--h-blue), var(--h-pink));
    z-index: 1;
    animation: sSpin 4s linear infinite;
}

@keyframes sSpin {
    to {
        transform: rotate(360deg);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-benaam {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.brand-kitchen {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--rad-circle);
    transition: var(--trans-fast);
}

.nav-item:hover {
    color: var(--text-primary);
    background: var(--border-hover);
}

.cart-trigger {
    background: var(--text-primary);
    color: var(--bg-base);
    border: none;
    border-radius: var(--rad-circle);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-fast);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cart-trigger:hover {
    background: var(--h-yellow);
    box-shadow: 0 8px 25px rgba(255, 210, 0, 0.3);
    transform: scale(1.05);
}

.cart-badge {
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .glass-nav {
        width: calc(100% - 2rem);
        top: 1rem;
    }
}

/* ====== BENTO BOX HERO ====== */
.hero-bento {
    padding: 8rem 0 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1rem;
    width: 100%;
}

.bento-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--trans-med), transform var(--trans-med);
}

.bento-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

/* Main Intro Box */
.bento-main {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(20, 20, 22, 1) 0%, rgba(10, 10, 12, 1) 100%);
}

.badge-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.holi-fest-badge {
    display: inline-flex;
    background: rgba(255, 26, 90, 0.1);
    border: 1px solid rgba(255, 26, 90, 0.3);
    color: var(--h-pink);
    padding: 0.4rem 1rem;
    border-radius: var(--rad-circle);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timing-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-base);
    padding: 0.4rem 1rem;
    border-radius: var(--rad-circle);
    border: 1px solid var(--border-subtle);
    font-size: 0.75rem;
}

.timing-chip .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.timing-chip .dot.open {
    background: var(--h-green);
    box-shadow: 0 0 10px var(--h-green);
}

.timing-chip .dot.closed {
    background: var(--h-pink);
    box-shadow: 0 0 10px var(--h-pink);
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-gradient-holi {
    background: linear-gradient(100deg, var(--h-pink), var(--h-yellow), var(--h-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    animation: gradientFlow 5s ease infinite alternate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 80%;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
}

.action-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-base);
    padding: 1rem 2rem;
    border-radius: var(--rad-circle);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    font-family: var(--font-body);
    border: none;
}

.btn-primary .btn-text {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
    color: #fff;
}

/* Creates dynamic contrast over hover */
.btn-hover-fx {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--h-pink), var(--h-yellow));
    transform: translateY(100%);
    transition: transform 0.4s var(--spring);
    border-radius: inherit;
}

.btn-primary:hover .btn-hover-fx {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: var(--rad-circle);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-med);
}

.btn-secondary:hover {
    background: var(--border-hover);
    border-color: var(--border-hover);
}

/* Discount Box */
.bento-discount {
    grid-column: span 1;
    grid-row: span 1;
    background: var(--h-pink);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    overflow: hidden;
}

.discount-blob {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--h-yellow) 0%, transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0.4;
    mix-blend-mode: overlay;
    animation: spinGradient 10s linear infinite;
}

@keyframes spinGradient {
    to {
        transform: rotate(360deg);
    }
}

.content-z {
    position: relative;
    z-index: 2;
}

.discount-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.discount-desc {
    font-size: 0.8rem;
    opacity: 0.9;
}

.floating-items {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    animation: floatBounce 2s ease-in-out infinite alternate;
}

@keyframes floatBounce {
    to {
        transform: translateY(-8px);
    }
}

/* Stat Boxes */
.bento-stat {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--h-yellow);
}

.stat-val .plus,
.stat-val .percent {
    font-size: 1.5rem;
    color: var(--h-yellow);
}

.stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Channels Box */
.bento-channels {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

.bento-channels h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.channel-links {
    display: flex;
    gap: 1rem;
    height: 100%;
}

.channel-card {
    flex: 1;
    border-radius: var(--rad-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--trans-med);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.channel-card .arrow {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.5;
    transition: transform 0.3s;
}

.channel-card:hover .arrow {
    transform: translate(5px, -5px);
    opacity: 1;
}

.channel-card.zomato {
    background: rgba(226, 55, 68, 0.05);
    color: var(--text-primary);
}

.channel-card.zomato:hover {
    background: var(--zomato-red);
    border-color: var(--zomato-red);
}

.channel-card.whatsapp {
    background: rgba(37, 211, 102, 0.05);
    color: var(--text-primary);
}

.channel-card.whatsapp:hover {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

/* Bento Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-main {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-discount {
        grid-column: span 2;
    }

    .bento-channels {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-discount,
    .bento-stat,
    .bento-channels {
        grid-column: span 1;
    }

    .headline {
        font-size: 2.8rem;
    }

    .subtitle {
        max-width: 100%;
    }

    .channel-links {
        flex-direction: column;
    }
}

/* ====== SECTIONS COMMON ====== */
.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 500px;
    margin-inline: auto;
    font-size: 1.1rem;
}

.text-holi {
    background: var(--h-yellow);
    color: #000;
    padding: 0 0.2rem;
    border-radius: 4px;
    font-weight: 700;
}

.menu-section,
.exclusives-section,
.connect-section {
    padding: 6rem 0;
    width: 100%;
}

/* ====== MENU CONTROLS ====== */
.menu-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.search-bar-modern {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-bar-modern input {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    border-radius: var(--rad-circle);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--trans-med);
}

.search-bar-modern input:focus {
    outline: none;
    border-color: var(--h-yellow);
    background: rgba(255, 210, 0, 0.05);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    color: var(--text-muted);
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border-hover);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.category-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-slider {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    /* Manual scrollbar on desktop, native on mobile */
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.category-slider:active {
    cursor: grabbing;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--rad-circle);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--trans-med);
}

.cat-pill.active {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
}

.cat-count {
    opacity: 0.5;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.menu-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

/* ====== MENU BENTO GRID ====== */
.menu-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--spring-soft);
    position: relative;
    overflow: hidden;
}

/* Kite Design Diamond Overlay */
.menu-item-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--h-pink) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    /* Diamond Kite Shape */
    opacity: 0.05;
    z-index: 0;
    transform: rotate(15deg);
    transition: all 0.5s var(--spring);
    pointer-events: none;
}

/* Hover Glow Effect */
.menu-item-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.menu-item-card:hover {
    border-color: var(--h-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 210, 0, 0.05);
}

.menu-item-card:hover::before {
    opacity: 0.2;
    transform: rotate(0deg) scale(1.3);
    background: linear-gradient(135deg, var(--h-pink) 0%, var(--h-yellow) 100%);
}

.menu-item-card:hover::after {
    opacity: 1;
}

.mic-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mic-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.mic-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--h-yellow);
    font-weight: 700;
    background: rgba(255, 210, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.mic-variant {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-glass);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

.mic-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.mic-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mic-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.mic-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mic-price-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.mic-price-old {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.mic-discount-badge {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff1a5a, #ff712b);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: var(--rad-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 26, 90, 0.4);
    overflow: hidden;
    border: none;
}

.mic-discount-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badge-shimmer 2.5s infinite;
}

@keyframes badge-shimmer {
    100% {
        left: 200%;
    }
}

.mic-price-new {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--h-green);
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0, 255, 106, 0.15);
    letter-spacing: -0.5px;
}

.add-btn {
    background: var(--border-subtle);
    color: var(--text-primary);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--rad-circle);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--trans-fast);
}

.add-btn:hover {
    background: var(--text-primary);
    color: var(--bg-base);
}

/* Qty Control inside card */
.qty-control {
    display: flex;
    align-items: center;
    background: var(--bg-base);
    border: 1px solid var(--border-hover);
    border-radius: var(--rad-circle);
    padding: 0.2rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--text-primary);
    transition: var(--trans-fast);
}

.qty-btn:hover {
    background: var(--border-hover);
}

.qty-btn.minus {
    color: var(--h-pink);
}

.qty-btn.plus {
    color: var(--h-green);
}

.qty-val {
    width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: var(--rad-circle);
    transition: var(--trans-med);
}

.btn-outline:hover {
    background: var(--border-hover);
}

/* ====== EXCLUSIVES ====== */
.offer-container {
    max-width: 600px;
    margin: 0 auto;
}

.premium-coupon-card {
    background: var(--bg-elevated);
    border-radius: var(--rad-xl);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.coupon-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.art-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.art-circle.c1 {
    width: 300px;
    height: 300px;
    background: var(--h-yellow);
    top: -100px;
    right: -100px;
}

.art-circle.c2 {
    width: 200px;
    height: 200px;
    background: var(--h-pink);
    bottom: -50px;
    left: -50px;
}

.coupon-body {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
}

.coupon-header .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.coupon-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.code-interactive {
    margin-bottom: 2rem;
}

.code-box {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 210, 0, 0.1);
    border: 2px dashed var(--h-yellow);
    border-radius: var(--rad-md);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--h-yellow);
    letter-spacing: 2px;
    transition: var(--trans-spring);
    position: relative;
}

.code-box:hover {
    transform: scale(1.05);
    background: rgba(255, 210, 0, 0.2);
}

.code-box::after {
    content: 'CLICK TO COPY';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--h-yellow);
    font-family: var(--font-body);
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.code-box:hover::after {
    opacity: 1;
}

.timer-row {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timer-clock {
    color: var(--h-pink);
    font-weight: 700;
    font-size: 1rem;
    margin-left: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 26, 90, 0.1);
    border-radius: 4px;
}

.offer-rules {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--rad-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rule-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.rule-bullet.gold {
    background: var(--h-yellow);
    box-shadow: 0 0 10px var(--h-yellow);
}

.rule-bullet.pink {
    background: var(--h-pink);
    box-shadow: 0 0 10px var(--h-pink);
}

.rule-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.rule-item strong {
    color: var(--text-primary);
}

.code-expired {
    padding: 2rem;
    background: rgba(255, 26, 90, 0.05);
    border-radius: var(--rad-md);
    border: 1px dashed var(--h-pink);
    margin-bottom: 2rem;
}

.btn-refresh {
    margin-top: 1rem;
    background: var(--border-hover);
    border: none;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: var(--rad-circle);
    font-size: 0.8rem;
}

/* ====== CONNECT & FOOTER ====== */
.contact-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.c-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.c-box .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.c-box h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.c-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.loc-box {
    grid-column: span 2;
}

.time-box {
    grid-column: span 2;
}

.action-box {
    grid-column: span 2;
    transition: var(--trans-med);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.action-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.action-box:hover::before {
    opacity: 1;
}

.action-box.phone {
    background: linear-gradient(145deg, rgba(30, 30, 35, 1), rgba(10, 10, 15, 1));
    border-color: var(--border-hover);
}

.action-box.phone:hover {
    border-color: var(--text-primary);
    transform: translateY(-5px);
}

.action-box.wa {
    background: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
}

.action-box.wa p,
.action-box.wa h4 {
    color: #fff;
}

.action-box.wa:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

@media(max-width: 768px) {

    .loc-box,
    .time-box,
    .action-box {
        grid-column: span 4;
    }
}

.modern-footer {
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    filter: grayscale(1);
}

.footer-brand span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crafting-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ====== SHEET MODALS ====== */
.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.sheet-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Sheet (Right slide on desktop, bottom slide on mobile) */
.cart-sheet {
    position: fixed;
    top: 1rem;
    bottom: 1rem;
    right: -100%;
    width: 440px;
    max-width: calc(100% - 2rem);
    background: var(--bg-sheet);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-lg);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: right 0.5s var(--spring);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}

.cart-sheet.open {
    right: 1rem;
}

@media(max-width: 640px) {
    .cart-sheet {
        top: auto;
        bottom: -100%;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 85vh;
        border-radius: var(--rad-xl) var(--rad-xl) 0 0;
        transition: bottom 0.5s var(--spring);
        border-bottom: none;
    }

    .cart-sheet.open {
        bottom: 0;
        right: 0;
    }
}

.sheet-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sheet-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.sheet-close {
    background: var(--border-hover);
    border: none;
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.sheet-close:hover {
    background: var(--h-pink);
    transform: rotate(90deg);
}

.sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty-state {
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
}

.cart-empty-state span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.ci-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.ci-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ci-name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.ci-var {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--border-subtle);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
}

.ci-total {
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--h-green);
}

.ci-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ci-delete {
    background: rgba(255, 26, 90, 0.1);
    color: var(--h-pink);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: var(--trans-fast);
}

.ci-delete:hover {
    background: var(--h-pink);
    color: #fff;
}

.sheet-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-base);
    border-radius: 0 0 var(--rad-lg) var(--rad-lg);
}

.cf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cf-savings {
    color: var(--h-pink);
    font-weight: 600;
    font-size: 0.85rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-subtle);
    margin-bottom: 0.8rem;
}

.cf-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.btn-checkout {
    width: 100%;
    background: var(--text-primary);
    color: var(--bg-base);
    padding: 1.2rem;
    border: none;
    border-radius: var(--rad-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--trans-med);
}

.btn-checkout:hover {
    background: var(--h-yellow);
}

/* Delivery/Map Modal (Center Pop) */
.delivery-modal-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-sheet);
    border: 1px solid var(--border-hover);
    border-radius: var(--rad-xl);
    z-index: 202;
    padding: 2.5rem 1.5rem;
    pointer-events: none;
    transition: all 0.4s var(--spring);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    display: none;
}

.delivery-modal-center.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--border-hover);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: var(--trans-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--text-primary);
    color: var(--bg-base);
}

.del-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.method-toggle {
    display: flex;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-md);
    padding: 0.3rem;
    margin-bottom: 1.5rem;
}

.method-btn {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: var(--rad-sm);
    font-weight: 600;
    transition: var(--trans-med);
}

.method-btn.active {
    background: var(--border-hover);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-container {
    position: relative;
    height: 200px;
    border-radius: var(--rad-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
}

#leafletMap {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
}

/* Removed old map and calc styles */

.minimal-input {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border-hover);
    border-radius: var(--rad-md);
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    resize: none;
    margin-bottom: 0;
    transition: var(--trans-med);
}

.minimal-input:focus {
    outline: none;
    border-color: var(--text-primary);
    background: var(--bg-elevated);
}

/* Removed old autocomplete styles */

.btn-action-primary {
    margin-top: 1.5rem;
    width: 100%;
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: var(--rad-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--trans-med);
}

.btn-action-primary:disabled {
    opacity: 0.5;
    filter: grayscale(1);
}

.btn-action-primary:not(:disabled):hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Pickup view styles */
.pickup-address-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-md);
    align-items: center;
    margin-bottom: 1.5rem;
}

.pin-icon {
    font-size: 2rem;
}

.address-details h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.address-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.pickup-perks {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.pickup-perks li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pickup-perks .check {
    color: var(--h-green);
    font-weight: 800;
}

/* ====== LEAFLET DARK OVERRIDES ====== */
.leaflet-popup-content-wrapper {
    background: var(--bg-sheet);
    color: var(--text-primary);
    border-radius: var(--rad-md);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(10px);
    font-family: var(--font-body);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.leaflet-popup-tip {
    background: var(--bg-sheet);
    border-top: 1px solid var(--border-hover);
    border-left: 1px solid var(--border-hover);
}

.map-dark-filter {
    filter: invert(95%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

/* ====== UTILITIES & ANIMATIONS ====== */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: all 0.8s var(--spring);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast */
.toast-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: var(--text-primary);
    color: var(--bg-base);
    padding: 0.8rem 1.5rem;
    border-radius: var(--rad-circle);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: tIn 0.4s var(--spring), tOut 0.4s 2.5s forwards;
}

@keyframes tIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tOut {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

/* ====== VARIANT SELECTION MODAL ====== */
.variant-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.variant-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.variant-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 92%;
    max-width: 460px;
    transform: translate(-50%, -45%) scale(0.95);
    background: var(--bg-sheet);
    border: 1px solid var(--border-hover);
    border-radius: var(--rad-xl);
    z-index: 1001;
    padding: 2.5rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--spring);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.variant-modal-box.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.var-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.var-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.var-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.var-list::-webkit-scrollbar {
    width: 4px;
}

.var-list::-webkit-scrollbar-thumb {
    background: var(--h-pink);
    border-radius: 4px;
}

.var-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-md);
    transition: var(--trans-fast);
}

@media (max-width: 480px) {
    .var-prices {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.2rem;
    }

    .var-prices .mic-price-new {
        font-size: 1.1rem;
    }

    .var-title {
        font-size: 1.6rem;
    }

    .var-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .var-info {
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 0.8rem;
        padding-right: 0;
    }

    .qty-control {
        width: 100%;
        justify-content: space-between;
    }

    .add-btn {
        width: 100%;
    }
}

.var-item:hover {
    border-color: var(--h-yellow);
    background: rgba(255, 210, 0, 0.03);
}

.var-info {
    flex: 1;
    padding-right: 1rem;
}

.var-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.var-prices {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.var-prices .mic-price-new {
    font-size: 1.6rem;
}

/* ====== STORY & REVIEWS ====== */
.story-reviews-section {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-story {
    background: linear-gradient(145deg, var(--bg-elevated) 0%, rgba(20, 20, 22, 0.4) 100%);
    border-color: var(--border-hover);
}

.bento-story h3 {
    font-size: 2rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.bento-story p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.about-badges .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1rem;
    border-radius: var(--rad-circle);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bento-rating {
    background: linear-gradient(135deg, var(--zomato-red), #b92a36);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-color: var(--zomato-red);
}

.rating-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.zomato-tag {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: var(--rad-circle);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: var(--h-yellow);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rating-huge {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Reviews Slider */
.reviews-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.review-card {
    min-width: 320px;
    max-width: 380px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--rad-lg);
    padding: 1.5rem;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--trans-med);
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.rc-avatar.color-1 {
    background: var(--h-pink);
}

.rc-avatar.color-2 {
    background: var(--h-blue);
}

.rc-avatar.color-3 {
    background: var(--h-green);
}

.rc-avatar.color-4 {
    background: var(--h-orange);
}

.rc-meta {
    flex: 1;
}

.rc-meta h4 {
    font-size: 1rem;
    color: #fff;
    line-height: 1.2;
}

.rc-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rc-stars {
    background: #0d4d29;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.rc-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* ====== BLOG SECTION ====== */
.blog-section {
    padding-bottom: 60px;
}
.blog-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}
.blog-scroll-wrapper::before,
.blog-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.blog-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep), transparent);
}
.blog-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}
.blog-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.blog-scroll-track::-webkit-scrollbar { display: none; }

.blog-card {
    flex: 0 0 320px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--rad-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--h-yellow), var(--h-pink), var(--h-green));
    opacity: 0;
    transition: opacity 0.3s;
}
.blog-card:hover {
    border-color: rgba(255,215,0,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    text-decoration: none;
}
.blog-card:hover::before { opacity: 1; }

.blog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}
.blog-card-tags {
    display: flex;
    gap: 6px;
}
.blog-card-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255,215,0,0.1);
    color: var(--h-yellow);
    font-weight: 500;
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.blog-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--h-yellow);
    letter-spacing: 0.3px;
    transition: 0.3s;
}
.blog-card:hover .blog-card-cta {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 280px;
        padding: 22px;
    }
}
