/* ═══════ FOOD ADDA — PREMIUM MENU CARDS v24.0 ═══════ */

/* ── GLOBAL MOBILE SAFETY ── */
html, body {
    overflow-x: clip !important;
    max-width: 100vw !important;
}

/* Bottom nav clearance — so content isn't hidden behind the fixed nav bar */
#app-content {
    padding-bottom: 80px;
}

/* ── NAVBAR: Premium Glassmorphism ── */
.navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 6% !important;
    height: auto !important;
    min-height: 80px !important;
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid transparent !important;
    z-index: 2000 !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

@media (min-width: 1280px) {
    .navbar {
        padding-left: calc((100vw - 1200px) / 2 + 20px) !important;
        padding-right: calc((100vw - 1200px) / 2 + 20px) !important;
    }
}

.navbar.scrolled {
    padding: 12px 6% !important;
    min-height: 65px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* Modern Logo Styles */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    transition: transform 0.3s ease !important;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon-box {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #E86A00, #FF8C2A) !important;
    border-radius: 14px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    box-shadow: 0 8px 20px rgba(232, 106, 0, 0.2) !important;
}

.logo-icon-box i {
    animation: flameFlicker 3s ease-in-out infinite;
}

@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    25% { transform: scale(1.1) rotate(-5deg); opacity: 0.9; }
    50% { transform: scale(1.05) rotate(5deg); opacity: 1; }
    75% { transform: scale(1.15) rotate(-3deg); opacity: 0.85; }
}

.logo-text {
    font-family: 'Baloo Bhai 2', cursive !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
}

.logo-accent {
    color: #E86A00 !important;
}

.logo-status-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-dot.open {
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulseDot 2s infinite;
}

.status-dot.closed {
    background: #ef4444;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.logo-tagline {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9 !important;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
}

.nav-links a {
    text-decoration: none !important;
    color: #475569 !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.nav-links a:hover, .nav-links a.active {
    color: #E86A00 !important;
    background: rgba(232, 106, 0, 0.08) !important;
}

.nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.cart-icon {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 14px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: #1a1a1a !important;
}

.navbar.scrolled .cart-icon {
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.05) !important;
    color: #E86A00 !important;
    border-color: rgba(232, 106, 0, 0.2) !important;
}

.cart-badge {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    background: #E86A00 !important;
    color: white !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 4px !important;
    border-radius: 11px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: 2.5px solid white !important;
    box-shadow: 0 4px 10px rgba(232, 106, 0, 0.4) !important;
}

.menu-toggle {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 12px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}

.hamburger {
    width: 22px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2.2px;
    width: 100%;
    background: #E86A00 !important; /* Matches brand orange */
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
    .navbar { height: 60px !important; padding: 0 4% !important; }
    .opening-hours { display: none; }
    .nav-status-group { margin: 0 8px; }
    .cart-icon { width: 38px !important; height: 38px !important; }
    .cart-nav-info { top: -6px; right: -8px; }
    .cart-total { font-size: 0.6rem; padding: 1px 4px; }
}

/* ── SECTION HEADINGS: Premium Card Style ── */
.mh-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 0 1.5rem 0 !important;
    margin-bottom: 2.5rem !important;
    border-bottom: 2px solid rgba(232, 106, 0, 0.08) !important;
    position: relative !important;
}

.mh-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #E86A00;
}

.header-text-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.header-text-content h2 {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: #1C1C1E !important;
    letter-spacing: -0.5px !important;
}

.heading-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: #FFF4E8 !important;
    border-radius: 14px !important;
    font-size: 1.4rem !important;
    box-shadow: 0 4px 12px rgba(232, 106, 0, 0.1) !important;
}

.header-text-content p {
    font-size: 0.95rem !important;
    color: #6E6E73 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}
@media (max-width: 768px) {
    .mh-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.8rem 0 !important;
        margin-bottom: 1.2rem !important;
        gap: 12px !important;
    }

    /* Sticky Category Bar for Menu Section */
    .category-tabs-wrapper {
        position: sticky !important;
        top: 60px !important; /* Below the main navbar */
        z-index: 900 !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 0.8rem 1rem !important;
        margin: 0 -1rem !important; /* Bleed to edges */
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    .header-text-content {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .header-text-content h2 { 
        font-size: 1.1rem !important; 
        gap: 8px !important; 
        margin-bottom: 2px !important;
        white-space: normal !important; /* Allow wrapping if needed */
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .header-text-content p { 
        font-size: 0.72rem !important; 
        opacity: 0.8 !important; 
        line-height: 1.3 !important; 
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-view-action {
        width: auto !important;
        padding: 6px 16px !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        border-radius: 50px !important;
        flex-shrink: 0 !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #1a1a1a !important;
        color: #fff !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-view-action i {
        font-size: 0.7rem !important;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }
}

    /* Prevent Layout Shifts & Skeleton Support */
    #homeOffersGrid, #menuHighlightsGrid, #memoriesGrid, #menuGrid, #recentWinnersList {
        min-height: 300px;
        position: relative;
    }
}

/* ── SKELETON LOADERS ── */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.skeleton-card {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    border-radius: 18px;
    height: 220px;
    width: 100%;
    margin-bottom: 15px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 10px;
    width: 100%;
}

@media (min-width: 769px) {
    .skeleton-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    .skeleton-card { height: 350px; }
}

.btn-view-action {
    background: #1C1C1E !important;
    color: white !important;
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-view-action:hover {
    background: #E86A00 !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(232,106,0,0.3) !important;
}

/* ── VIEW ALL / UPLOAD: Floating Action Button Style ── */
.mh-header a, 
.mh-header button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: #1C1C1E !important;
    color: white !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    padding: 12px 26px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

/* Specific prominence for the Upload button */
.mh-header button {
    background: linear-gradient(135deg, #E86A00, #FF8C2A) !important;
    box-shadow: 0 8px 24px rgba(232, 106, 0, 0.25) !important;
    animation: buttonPulse 2s infinite !important;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 106, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(232, 106, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 106, 0, 0); }
}

.mh-header a i, 
.mh-header button i {
    transition: transform 0.3s ease !important;
}

.mh-header a:hover, 
.mh-header button:hover {
    transform: translateY(-5px) scale(1.02) !important;
}

.mh-header a:hover {
    background: #E86A00 !important;
    color: white !important;
    box-shadow: 0 12px 28px rgba(232,106,0,0.3) !important;
}

.mh-header button:hover {
    background: linear-gradient(135deg, #1C1C1E, #333) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2) !important;
}

.mh-header a:hover i, 
.mh-header button:hover i {
    transform: translateY(-2px) rotate(-10deg) !important;
}

/* ── MENU HIGHLIGHTS SECTION ── */
.menu-highlights-section {
    background: linear-gradient(180deg, #FDF8F2 0%, #FFF4E8 100%) !important;
    padding: 4rem 6% !important;
    border-top: 1px solid rgba(232,106,0,0.10) !important;
    border-bottom: 1px solid rgba(232,106,0,0.10) !important;
}

/* ── PREMIUM HIGHLIGHT CARDS (v19.0) ── */
.highlight-card {
    background: #ffffff !important;
    border-radius: 32px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    width: 290px !important;
    min-width: 290px !important;
    margin-right: 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.02) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative !important;
}

.highlight-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 40px 80px rgba(232, 106, 0, 0.12), 0 15px 30px rgba(0,0,0,0.06) !important;
    border-color: rgba(232, 106, 0, 0.15) !important;
}

.highlight-card-img-wrapper {
    width: 100% !important;
    height: 190px !important;
    position: relative !important;
    overflow: hidden !important;
}

.highlight-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.highlight-card:hover .highlight-img { transform: scale(1.12) !important; }

.highlight-top-badges {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 5 !important;
}

.highlight-bestseller {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    background: #E86A00 !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(232, 106, 0, 0.3) !important;
    z-index: 5 !important;
}

.highlight-card-content {
    padding: 20px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.highlight-meta-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.highlight-cat-tag {
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.highlight-rating-pill {
    background: #FFF4E8 !important;
    color: #E86A00 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.highlight-item-name {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.highlight-item-desc {
    font-size: 0.9rem !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex: 1 !important;
}

.highlight-meta-row {
    margin-bottom: 20px !important;
}

.highlight-meta-tag {
    background: #f1f5f9 !important;
    color: #475569 !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.highlight-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 18px !important;
}

.highlight-price-wrap {
    display: flex !important;
    align-items: baseline !important;
    gap: 2px !important;
}

.highlight-currency {
    color: #E86A00 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

.highlight-price {
    font-size: 1.8rem !important;
    font-weight: 950 !important;
    color: #1a1a1a !important;
    letter-spacing: -1px !important;
}

.highlight-add-btn {
    background: #1C1C1E !important;
    color: white !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 16px !important;
    font-size: 0.85rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.highlight-add-btn:hover {
    background: #E86A00 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 10px 20px rgba(232,106,0,0.3) !important;
}

.carousel-dots {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    margin-top: 2rem !important;
}

.dot {
    width: 8px !important;
    height: 8px !important;
    background: #e2e8f0 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.dot.active {
    width: 24px !important;
    background: #E86A00 !important;
    border-radius: 10px !important;
}

@media (min-width: 769px) {
    .menu-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .menu-card-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .menu-card-footer {
        margin-top: auto !important;
    }
}

/* ── FEATURES RIBBON ── */
.feature-item {
    background: white !important;
    border-radius: 20px !important;
    padding: 1rem 0.8rem !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07) !important;
    border: 1px solid rgba(232,106,0,0.10) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    overflow: hidden !important;
}
.feature-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 22px 44px rgba(232,106,0,0.16) !important;
    border-color: #FF8C2A !important;
}
.f-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    flex-shrink: 0 !important;
    border-radius: 14px !important;
    font-size: 1.4rem !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
}
.f-text { width: 100% !important; }
.f-text h4 {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    margin: 0 0 2px !important;
}
.f-text p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    color: #6E6E73 !important;
    word-break: break-word !important;
    margin: 0 !important;
}

/* ── OFFER CARDS ── */
.kfc-coupon-card, .premium-voucher-card {
    border-radius: 22px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.11) !important;
    border: none !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.kfc-coupon-card:hover, .premium-voucher-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
}
.kfc-discount-badge, .voucher-value {
    font-size: 1.7rem !important;
    font-weight: 900 !important;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25) !important;
}
.offer-status-badge {
    background: rgba(255,255,255,0.25) !important;
    color: white !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    letter-spacing: 1px !important;
    animation: pulseBadgeV3 1.5s ease-in-out infinite !important;
}
@keyframes pulseBadgeV3 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; transform: scale(1.06); }
}
.coupon-code-pill {
    background: #FFF4E8 !important;
    border: 1.5px dashed #E86A00 !important;
    color: #E86A00 !important;
    border-radius: 10px !important;
    padding: 5px 14px !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
}
.live-timer { color: #E74C3C !important; font-weight: 900 !important; }
.kfc-coupon-right h3, .voucher-right h3 {
    font-size: 1.1rem !important; font-weight: 800 !important;
    color: #1C1C1E !important; margin-bottom: 6px !important;
}
.kfc-coupon-right p, .voucher-right p {
    font-size: 0.84rem !important; line-height: 1.55 !important;
}

/* ── MEMORIES SECTION ── */
.memories-section {
    background: linear-gradient(180deg, #fff 0%, #FDF8F2 100%) !important;
    padding: 4rem 5% !important;
}
.memory-card {
    border-radius: 18px !important;
    box-shadow: 0 6px 22px rgba(0,0,0,0.09) !important;
    overflow: hidden !important;
    position: relative !important;
    cursor: pointer !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.memory-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 26px 52px rgba(0,0,0,0.16) !important;
}
.memory-card:hover .memory-overlay { opacity: 1 !important; }
.memory-overlay {
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; width: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.35) 55%, transparent 100%) !important;
    color: white !important;
    padding: 32px 14px 14px !important;
    opacity: 0 !important;
    transition: opacity 0.35s ease !important;
}

/* ── TRENDING SECTION ── */
.trending-preview {
    background: linear-gradient(135deg, #FFF9F3 0%, #FFF0DC 100%) !important;
    border-radius: 28px !important;
    box-shadow: 0 8px 32px rgba(232,106,0,0.09) !important;
    border: 1px solid rgba(232,106,0,0.13) !important;
    padding: 3rem 6% !important;
    margin: 2rem 4% !important;
}

/* ── CATEGORY BUTTONS STICKY WRAPPER ── */
.category-tabs-wrapper {
    position: sticky !important;
    top: 65px !important; 
    z-index: 990 !important; /* Sitting precisely below navbar (1000) */
    background: #FDF8F2 !important; 
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 12px 0 !important;
    margin-bottom: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(232, 106, 0, 0.1) !important;
}

.category-tabs-container, #categoryTabsContainer {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding: 5px 5% !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
}
.category-tabs-container::-webkit-scrollbar, 
#categoryTabsContainer::-webkit-scrollbar {
    display: none !important;
}

.cat-btn {
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
    border: 2px solid transparent !important;
    min-height: 40px !important;
    white-space: nowrap !important;
    padding: 8px 20px !important;
    background: #f1f5f9 !important;
    color: #4a5568 !important;
}
.cat-btn.active, .cat-btn:hover {
    background: linear-gradient(135deg, #E86A00, #C85A00) !important;
    color: white !important;
    box-shadow: 0 6px 18px rgba(232,106,0,0.32) !important;
    transform: translateY(-2px) !important;
}

/* ── BACK TO TOP ── */
.back-to-top {
    background: linear-gradient(135deg, #E86A00, #C85A00) !important;
    box-shadow: 0 8px 24px rgba(232,106,0,0.42) !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 1.1rem !important;
    min-height: 52px !important;
}
.back-to-top:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 38px rgba(232,106,0,0.58) !important;
}

/* ── WORLD-CLASS MENU CARDS (v24.0) ── */
.menu-card {
    background: white !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.menu-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12) !important;
    border-color: rgba(232, 106, 0, 0.15) !important;
}

.menu-card-img-wrapper {
    position: relative !important;
    height: 160px !important;
    width: 100% !important;
}

.menu-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Authentic Veg/Non-Veg Badges */
.veg-badge-wrap, .nonveg-badge-wrap {
    display: inline-flex !important;
    margin-right: 8px !important;
}

.v-badge-square, .nv-badge-square {
    width: 14px !important;
    height: 14px !important;
    border: 1.5px solid #27AE60 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px !important;
    border-radius: 2px !important;
}

.v-badge-dot { width: 6px !important; height: 6px !important; background: #27AE60 !important; border-radius: 50% !important; }

.nv-badge-square { border-color: #E74C3C !important; }
.nv-badge-dot { width: 6px !important; height: 6px !important; background: #E74C3C !important; border-radius: 50% !important; }

/* Premium Rating Badge */
.item-rating-badge {
    background: #FFF9F2 !important;
    color: #E86A00 !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.item-rating-badge i { color: #FFB800 !important; }
.rv-count { color: #94a3b8 !important; font-weight: 500 !important; margin-left: 2px !important; }

/* Card Content Hierarchy */
.menu-card-content {
    padding: 16px 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.card-meta-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.item-category-label {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.menu-item-name {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

.menu-item-desc {
    font-size: 0.82rem !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.item-details-row {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
    flex-wrap: wrap !important;
}

.detail-pill {
    background: #f8fafc !important;
    color: #64748b !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

/* Footer & Actions */
.menu-card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    padding-top: 12px !important;
}

.price-box-premium {
    display: flex !important;
    align-items: baseline !important;
    gap: 1px !important;
}

.currency-sym {
    color: #E86A00 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

.price-val {
    font-size: 1.7rem !important;
    font-weight: 950 !important;
    color: #1a1a1a !important;
}

.add-to-cart-pill {
    background: #1C1C1E !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 14px !important;
    font-size: 0.8rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.add-to-cart-pill:hover {
    background: #E86A00 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 8px 20px rgba(232,106,0,0.3) !important;
}

.premium-bestseller-tag {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: linear-gradient(135deg, #FF9500 0%, #FF5E00 100%) !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 10px 0 10px 0 !important; /* Elegant asymmetrical shape */
    font-size: 0.62rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    animation: bestsellerPulse 2s ease-in-out infinite !important;
}

.premium-bestseller-tag i {
    font-size: 0.7rem !important;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)) !important;
}

@keyframes bestsellerPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(255, 94, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4); }
}

/* ── SPIN NAV BUTTON ── */
.spin-nav-center {
    box-shadow: 0 8px 24px rgba(232,106,0,0.50) !important;
    animation: spinGlowV3 2.5s ease-in-out infinite !important;
}
@keyframes spinGlowV3 {
    0%, 100% { box-shadow: 0 8px 24px rgba(232,106,0,0.50); }
    50% { box-shadow: 0 14px 38px rgba(232,106,0,0.72); transform: scale(1.07); }
}

/* ── SECTION DIVIDER ── */
.section-divider {
    height: 2px !important;
    background: linear-gradient(to right, transparent, rgba(232,106,0,0.18), transparent) !important;
    margin: 0 6% !important;
}

/* ── FOOTER ── */
footer, .footer, .site-footer {
    background: linear-gradient(180deg, #1C1C1E 0%, #111 100%) !important;
    color: rgba(255,255,255,0.80) !important;
    padding: 3rem 6% 2rem !important;
    border-top: 3px solid #E86A00 !important;
}
footer h4, footer h3, .footer h4, .footer h3 {
    color: white !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    letter-spacing: 0.3px !important;
}
footer p, footer a, .footer p, .footer a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
footer a:hover, .footer a:hover {
    color: #FF8C2A !important;
}
footer .footer-brand, .footer .footer-logo {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 900 !important;
}
footer .footer-tagline {
    color: rgba(255,255,255,0.50) !important;
    font-size: 0.82rem !important;
}
footer hr, .footer hr {
    border-color: rgba(255,255,255,0.10) !important;
    margin: 1.5rem 0 !important;
}
footer .footer-bottom, .footer .footer-bottom {
    color: rgba(255,255,255,0.40) !important;
    font-size: 0.78rem !important;
    text-align: center !important;
    padding-top: 1rem !important;
}
/* Social icons in footer */
footer .social-link, .footer .social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.10) !important;
    color: white !important;
    font-size: 1rem !important;
    transition: all 0.25s ease !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}
footer .social-link:hover, .footer .social-link:hover {
    background: #E86A00 !important;
    border-color: #E86A00 !important;
    transform: translateY(-3px) !important;
}

/* ── MOBILE OPTIMIZATION ── */
@media (max-width: 768px) {
    /* All primary buttons: 48px minimum tap target */
    .btn, button[type="submit"], .add-pill-btn,
    .cat-btn, .back-to-top, .hsc-cart-btn {
        min-height: 48px !important;
    }
    
    /* Premium Grid Layout for Menu on Mobile */
    .menu-grid, #menuGrid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 10px !important;
    }
    
    .menu-grid-sub {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
        position: relative;
    }

    .menu-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        background: #fff !important;
        border-radius: 20px !important;
        padding: 8px !important;
        gap: 8px !important;
        border: 1px solid rgba(0,0,0,0.04) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
        position: relative;
    }

    .menu-card-img-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        min-width: unset !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .menu-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.4s ease !important;
    }

    .menu-card:active .menu-img {
        transform: scale(1.08) !important;
    }

    .menu-card-content {
        padding: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .menu-item-name {
        font-size: 1.05rem !important;
        margin-top: 2px !important;
        margin-bottom: 4px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-weight: 800 !important;
    }
    
    .menu-item-desc {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: #64748b !important;
        margin-bottom: 8px !important;
    }

    .menu-card-footer {
        padding-top: 5px !important;
        border-top: 1px dashed #eee !important;
    }

    .add-to-cart-pill {
        padding: 6px 16px !important;
        font-size: 0.75rem !important;
        height: 32px !important;
    }
    
    /* Button Success Animation */
    .add-to-cart-pill.added {
        background: #16a34a !important;
        color: white !important;
        border-color: #16a34a !important;
    }

    .menu-item-desc {
        font-size: 0.8rem !important;
        color: #7a7a7a !important;
        margin-bottom: 8px !important;
        -webkit-line-clamp: 2 !important;
        line-height: 1.4 !important;
    }

    .food-badge-row {
        margin-bottom: 6px !important;
        gap: 6px !important;
    }

    .menu-card-footer {
        border-top: none !important;
        padding-top: 0 !important;
        margin-top: auto !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .menu-item-price {
        font-size: 1.4rem !important;
        color: #1a1a1a !important;
    }

    .menu-item-price::before {
        content: '₹';
        font-size: 0.9rem !important;
        margin-right: 2px !important;
    }

    .add-pill-btn {
        padding: 6px 20px !important;
        border-radius: 14px !important;
        font-size: 0.9rem !important;
        box-shadow: 0 4px 12px rgba(232,106,0,0.2) !important;
    }

    .highlight-card {
        width: 285px !important;
        min-width: 285px !important;
        margin-right: 18px !important;
    }
    
    .highlight-item-name {
        font-size: 1.25rem !important;
    }

    .highlight-price {
        font-size: 1.6rem !important;
    }
}
@media (max-width: 480px) {
    .menu-card {
        padding: 10px !important;
        gap: 12px !important;
    }
    .menu-card-img-wrapper {
        width: 95px !important;
        height: 95px !important;
        min-width: 95px !important;
    }
    .menu-item-name {
        font-size: 1.05rem !important;
    }
    .menu-item-price {
        font-size: 1.25rem !important;
    }
}

/* ════════════════════════════════════════════
   ADMIN PANEL OVERHAUL
   ════════════════════════════════════════════ */

.admin-sidebar, .sidebar {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f1323 100%) !important;
    box-shadow: 4px 0 24px rgba(0,0,0,0.25) !important;
    border-right: none !important;
}
.admin-sidebar .logo-text, .sidebar-title, .sidebar-brand {
    color: white !important;
    background: linear-gradient(135deg, #fff 0%, #FF8C2A 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.admin-nav-item, .sidebar-link, .nav-item a {
    color: rgba(255,255,255,0.70) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.2rem !important;
    margin: 3px 10px !important;
    transition: all 0.25s ease !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    border: 1px solid transparent !important;
}
.admin-nav-item:hover, .sidebar-link:hover {
    background: rgba(255,255,255,0.10) !important;
    color: white !important;
    border-color: rgba(255,255,255,0.12) !important;
    transform: translateX(4px) !important;
}
.admin-nav-item.active, .sidebar-link.active {
    background: linear-gradient(135deg, #E86A00, #C85A00) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(232,106,0,0.40) !important;
    border-color: transparent !important;
}

.admin-content, .admin-main { background: #f5f5f7 !important; }

.admin-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 1.8rem !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    transition: box-shadow 0.25s ease !important;
    margin-bottom: 1.5rem !important;
}
.admin-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important; }

.admin-section-title, .admin-tab h2, .tab-section > h2 {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #1C1C1E !important;
    padding-bottom: 0.8rem !important;
    border-bottom: 3px solid #E86A00 !important;
    margin-bottom: 1.8rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.admin-table, table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
.admin-table thead tr th, table thead tr th {
    background: linear-gradient(135deg, #1C1C1E 0%, #2D2D30 100%) !important;
    color: white !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 14px 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}
.admin-table tbody tr, table tbody tr {
    transition: background 0.2s ease !important;
    border-bottom: 1px solid #f0f0f2 !important;
}
.admin-table tbody tr:nth-child(even), table tbody tr:nth-child(even) {
    background: #fafaf8 !important;
}
.admin-table tbody tr:hover, table tbody tr:hover {
    background: #fff7f0 !important;
}
.admin-table tbody td, table tbody td {
    padding: 14px 16px !important;
    font-size: 0.9rem !important;
    color: #1C1C1E !important;
    vertical-align: middle !important;
}

.btn, button[type="submit"] {
    border-radius: 14px !important;
    font-weight: 800 !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.2px !important;
}
.btn-primary, button[type="submit"]:not(.btn-outline):not([style*="red"]):not([style*="ef4444"]) {
    background: linear-gradient(135deg, #E86A00, #C85A00) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(232,106,0,0.32) !important;
    padding: 0.9rem 2rem !important;
}
.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(232,106,0,0.44) !important;
}
.btn-outline {
    border: 2px solid #E86A00 !important;
    color: #E86A00 !important;
    background: transparent !important;
}
.btn-outline:hover {
    background: #E86A00 !important;
    color: white !important;
}

.status-badge {
    padding: 5px 14px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
}

.form-group label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #1C1C1E !important;
    margin-bottom: 6px !important;
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
}
.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
    background: #fafaf8 !important;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #E86A00 !important;
    box-shadow: 0 0 0 4px rgba(232,106,0,0.12) !important;
    background: white !important;
    outline: none !important;
}


/* ── CAROUSEL WRAPPER LAYOUT (Sibling Structure) ── */
/* ── MENU HIGHLIGHTS GRID (Replacing Carousel) ── */
.menu-highlights-grid-container {
    padding: 5px 0 !important;
}

.menu-highlights-2col-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
}

@media (max-width: 768px) {
    .menu-highlights-2col-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 3% 40px !important; /* Center the card with side padding */
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .menu-highlights-2col-grid::-webkit-scrollbar {
        display: none !important;
    }
    .highlight-card {
        flex: 0 0 94% !important;
        min-width: 94% !important;
        width: 94% !important;
        scroll-snap-align: center !important;
        margin-right: 0 !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
        border: 1px solid rgba(232, 106, 0, 0.1) !important;
    }
}

.highlight-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(232, 106, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
}

.highlight-card:active {
    transform: scale(0.96) !important;
}

.highlight-card-img-wrapper {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1.1 / 1 !important; /* Perfect balance for 2-col */
    overflow: hidden !important;
    background: #f8f9fa !important;
}

.highlight-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.highlight-card-content {
    padding: 14px 12px 16px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.highlight-meta-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.highlight-cat-tag {
    font-size: 0.6rem !important;
    font-weight: 800 !important;
    color: #E86A00 !important;
    background: rgba(232, 106, 0, 0.08) !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.highlight-rating-pill {
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    color: #f59e0b !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
}

.highlight-item-name {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    line-height: 1.2 !important;
    margin: 2px 0 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.highlight-item-desc {
    display: none !important; /* Hide on small grid to keep it clean */
}

.highlight-card-footer {
    margin-top: auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 8px !important;
}

.highlight-price-wrap {
    display: flex !important;
    align-items: baseline !important;
    gap: 1px !important;
}

.highlight-currency {
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    color: #E86A00 !important;
}

.highlight-price {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
}

.highlight-add-btn {
    background: #1a1a1a !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important; /* Slightly more padding */
    border-radius: 10px !important;
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
    cursor: pointer !important;
}

.highlight-add-btn:active {
    background: #E86A00 !important;
}

/* Specific adjustment for even better 2-col visual balance */
@media (min-width: 481px) {
    .highlight-card-img-wrapper { aspect-ratio: 1.2 / 1 !important; }
    .highlight-item-name { font-size: 1.15rem !important; }
    .highlight-card-content { padding: 18px !important; }
}

/* Admin Table Mobile Stacking */
@media (max-width: 768px) {
    .admin-table thead { display: none; }
    .admin-table tr { display: block; margin-bottom: 1rem; border: 1px solid #eee; border-radius: 12px; background: white; padding: 10px; }
    .admin-table td { display: flex; justify-content: space-between; align-items: center; padding: 8px 5px !important; border: none !important; border-bottom: 1px solid #f8f9fa !important; font-size: 0.85rem !important; }
    .admin-table td:last-child { border-bottom: none !important; }
    .admin-table td::before { content: attr(data-label); font-weight: 800; color: #64748b; font-size: 0.75rem; text-transform: uppercase; }
    .admin-table td img { width: 40px !important; height: 40px !important; }
}

/* ── SPIN COOLDOWN TIMER ── */
.cooldown-box {
    background: #fff !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(232, 106, 0, 0.1) !important;
    margin-bottom: 1.5rem !important;
}

.next-spin-timer {
    margin-top: 1.5rem !important;
    padding: 1.2rem !important;
    background: #FFF4E8 !important;
    border-radius: 16px !important;
    border: 1px dashed #E86A00 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.next-spin-timer span {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #6E6E73 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

#nextSpinCountdown {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #E86A00 !important;
    font-family: 'Outfit', 'Hind Siliguri', sans-serif !important;
    letter-spacing: 2px !important;
    display: block !important;
}

.lock-icon {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}


.hidden-wheel { display: none !important; }

/* ════════════════════════════════════════════
   CRITICAL MOBILE RESPONSIVENESS FIXES
   ════════════════════════════════════════════ */

/* 1. Prevent global horizontal scrolling caused by negative margins or fixed widths */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* 2. Fix 2-Column Grid Overflow (Override legacy carousel min-widths) */
.menu-highlights-2col-grid .highlight-card {
    width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
}

/* 3. Hero Slider mobile overflow protection */
@media (max-width: 768px) {
    .hero-slider-outer {
        padding: 0 16px !important;
    }
    .hero-slider-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    .nav-arrow-outer.prev { left: -2px !important; }
    .nav-arrow-outer.next { right: -2px !important; }
}

/* ════════════════════════════════════════════
   MOBILE NAV ENHANCEMENTS & ANIMATIONS
   ════════════════════════════════════════════ */

.cart-special {
    position: relative;
    top: -22px;
    z-index: 100;
}
.cart-circle {
    background: linear-gradient(135deg, #E86A00, #FF8C2A);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(232, 106, 0, 0.4);
    border: 5px solid #ffffff;
    color: white;
    font-size: 1.4rem;
    margin: 0 auto 4px;
    position: relative;
    animation: floatingCart 3s ease-in-out infinite;
}
@keyframes floatingCart {
    0%, 100% { transform: translateY(0); box-shadow: 0 8px 24px rgba(232, 106, 0, 0.4); }
    50% { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(232, 106, 0, 0.6); }
}
.cart-special span {
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin-top: 2px; /* Prevent text overlap with circle */
    display: block;
}

.pulse-icon-anim {
    animation: iconPulse 2s infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15) rotate(-10deg); }
    30% { transform: scale(1) rotate(5deg); }
    45% { transform: scale(1); }
}

.cart-circle .cart-badge {
    position: absolute;
    background: #1C1C1E !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Restored bottom cart badge visibility */
#cartBadgeBottom {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
}

.spin-animated {
    color: #E86A00 !important;
    font-weight: 800 !important;
}
.spin-animated i {
    animation: spinRotate 5s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(232,106,0,0.4));
    font-size: 1.35rem !important;
}
@keyframes spinRotate {
    100% { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════
   COMBO CARD REDESIGN (HERO SLIDER)
   ════════════════════════════════════════════ */

.premium-combo-card {
    border: 2px solid #FF8C2A !important;
    box-shadow: 0 15px 35px rgba(232, 106, 0, 0.15) !important;
    height: 500px !important; /* Force fixed height to accommodate all elements */
    display: flex !important;
    flex-direction: column !important;
}

.premium-combo-card .hsc-dark-top {
    flex: 0 0 230px !important;
    padding: 0 !important; /* Make image full width inside card */
    position: relative !important;
}

.premium-combo-card .hsc-top-row {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    z-index: 10 !important;
}

.premium-combo-card .hsc-bottom {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding-bottom: 24px !important;
}

.combo-img-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1C1C1E, #2D2D30) !important;
    height: 100% !important;
    width: 100% !important;
}

.premium-combo-card .hsc-food-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.combo-glow-fx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,140,42,0.4) 0%, transparent 60%);
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.combo-img-anim {
    position: relative;
    z-index: 2;
}

.combo-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FF3D00, #E86A00);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(232,106,0,0.4);
    letter-spacing: 1px;
}

.combo-includes-title {
    font-size: 0.7rem;
    font-weight: 900;
    color: #E86A00;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 1px;
}

.combo-strip {
    background: #FFF4E8 !important;
    border: 1.5px dashed #FFB800 !important;
    border-radius: 12px !important;
    justify-content: center !important;
    padding: 8px 10px !important;
}

.combo-items-list {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    text-align: center;
}

.combo-old-price {
    text-decoration: line-through; 
    text-decoration-color: #ff4757; 
    text-decoration-thickness: 2px; 
    color: #888; 
    font-size: 1.4rem; 
    font-weight: 600; 
}

.combo-new-price {
    font-size: 2.2rem !important;
    color: #E86A00 !important;
    text-shadow: 0 2px 4px rgba(232,106,0,0.1);
}

.combo-savings-ticket {
    background: linear-gradient(135deg, #1C1C1E, #333) !important;
    color: #FFB800 !important;
    padding: 4px 12px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    display: inline-block !important;
    margin-bottom: 8px !important;
    border-left: 3px dashed #FFB800;
    border-right: 3px dashed #FFB800;
    text-transform: uppercase;
}

.combo-cart-btn {
    background: linear-gradient(135deg, #E86A00, #FF3D00) !important;
    font-size: 1.05rem !important;
    gap: 8px !important;
    animation: buttonBeat 2s infinite !important;
}

.menu-sync-indicator {
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    color: #888;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

@keyframes buttonBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 10px 20px rgba(232,106,0,0.4); }
}

/* ════════════════════════════════════════════
   ADVANCED PROMO BANNER (SPIN & WIN)
   ════════════════════════════════════════════ */

.promo-banner-advanced {
    margin: 0 16px 25px;
    background: linear-gradient(135deg, #FF6B00, #E83E00);
    border-radius: 20px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(232, 62, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: promoFloat 4s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
}

.promo-banner-advanced:active {
    transform: scale(0.96);
}

.promo-content-left {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.promo-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.promo-icon-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: white;
    filter: blur(10px);
    opacity: 0.3;
    animation: promoIconPulse 2s infinite;
}

.promo-wheel-svg {
    animation: promoWheelSpin 6s linear infinite;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
}

.promo-text {
    display: flex;
    flex-direction: column;
}

.promo-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 2px 0 0;
    font-weight: 700;
}

.promo-arrow {
    background: white;
    color: #E83E00;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: promoArrowPulse 2s infinite;
}

/* Shimmering Light Sweep */
.promo-shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-20deg);
    animation: promoShimmer 3.5s infinite;
    z-index: 1;
}

@keyframes promoShimmer {
    0% { left: -150%; }
    30%, 100% { left: 150%; }
}

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

@keyframes promoWheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes promoIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

@keyframes promoArrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
/* ════════════════════════════════════════════
   GOURMET GLASS HERO SECTION (MODERN+)
   ════════════════════════════════════════════ */

.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FDF8F2;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Mesh Background Blobs */
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(232, 106, 0, 0.2);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 140, 42, 0.15);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(232, 106, 0, 0.1);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.2); }
}

.hero-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.hero-text-v2 {
    flex: 1;
    max-width: 600px;
}

/* Sequential Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(25px);
    animation: itemReveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.reveal-item:nth-child(1) { animation-delay: 0.2s; }
.reveal-item:nth-child(2) { animation-delay: 0.4s; }
.reveal-item:nth-child(3) { animation-delay: 0.6s; }
.reveal-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes itemReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #E86A00;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hero-main-title-premium {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-main-title-premium .text-gradient {
    background: linear-gradient(135deg, #E86A00, #FF8C2A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-elegant {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 10px 0;
    border-radius: 12px;
}

.hero-actions-v2 {
    display: flex;
    gap: 15px;
}

.btn-premium {
    padding: 16px 36px;
    background: linear-gradient(135deg, #E86A00, #C85A00);
    color: white;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(232, 106, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(232, 106, 0, 0.35);
}

.hero-visual-v2 {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (max-width: 1024px) {
    .hero-container-v2 {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
    .hero-text-v2 {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-main-title-premium {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    .hero-subtitle-elegant {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ════════════════════════════════════════════
   GOURMET MENU BANNER (PERFECT DESIGN)
   ════════════════════════════════════════════ */

.gourmet-banner {
    background: linear-gradient(135deg, #FFF9F2 0%, #FFFFFF 100%) !important;
    padding: 6rem 8% 4rem !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: left !important;
}

.banner-blob-1, .banner-blob-2 {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(60px) !important;
    z-index: 1 !important;
    opacity: 0.3 !important;
}

.banner-blob-1 {
    width: 200px; height: 200px;
    background: #FF6A00 !important;
    top: -50px; right: -50px;
}

.banner-blob-2 {
    width: 150px; height: 150px;
    background: #FFD2A8 !important;
    bottom: -20px; left: 10%;
}

.banner-content {
    position: relative !important;
    z-index: 10 !important;
}

.menu-stats-row {
    display: flex !important;
    gap: 15px !important;
    margin: 1.2rem 0 2rem !important;
    flex-wrap: wrap !important;
}

.m-stat {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: white !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    color: #475569 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.m-stat span {
    font-size: 1rem !important;
}

.search-container-v3 {
    max-width: 600px !important;
}

.quick-tags-row {
    display: flex !important;
    gap: 10px !important;
    margin-top: 12px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

.quick-tags-row::-webkit-scrollbar { display: none !important; }

.q-tag {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #64748b !important;
    background: rgba(0,0,0,0.03) !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

.q-tag:hover {
    background: #E86A00 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .gourmet-banner {
        padding: 3.8rem 6% 1rem !important; /* Tightened top/bottom padding */
    }
    .hero-main-title-premium {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    .menu-stats-row {
        gap: 6px !important;
        margin: 0.6rem 0 1rem !important; /* Compacted margins */
    }
    .m-stat {
        padding: 4px 8px !important;
        font-size: 0.68rem !important;
    }
}
