/* Google Fonts loaded via non-blocking <link> in index.html for performance */

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto !important; /* Allow natural scroll height */
}

:root {
    --primary: #E86A00;
    --primary-light: #FF8C2A;
    --primary-dark: #C85A00;
    --secondary: #1C1C1E;
    --secondary-green: #1B5E3B;
    --accent: #F5A623;
    --accent-gold: #D4A017;
    --accent-green: #27AE60;
    --accent-red: #E74C3C;
    --background: #FDF8F2;
    --surface: #FFFFFF;
    --text-main: #2C2C2E;
    --text-muted: #6E6E73;
    --text-light: #98989D;
    --white: #FFFFFF;
    --cream: #FDF8F2;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.09);
    --shadow-lg: 0 20px 48px rgba(232,106,0,0.14);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.07);
    --gradient-primary: linear-gradient(135deg, #E86A00, #C85A00);
    --gradient-warm: linear-gradient(135deg, #FDF8F2 0%, #FFF0E0 100%);
    
    /* 8px Grid Spacing */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-5: 40px;
    --sp-6: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip !important;
    overflow-y: visible !important;
}

body {
    overflow-x: clip !important;
    overflow-y: visible !important;
    position: relative !important;
    width: 100%;
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Scroll-Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== Page Load Fade In ===== */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#home-section { animation: pageEnter 0.8s cubic-bezier(0.23, 1, 0.32, 1) both; }

/* ===== Section Spacing System ===== */
.section-gap { padding: 4rem 0; }
.section-gap-lg { padding: 6rem 0; }

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #1a1a1a; /* Darker for better contrast (WCAG AA) */
    line-height: 1.25;
    letter-spacing: -0.3px;
}

p {
    line-height: 1.6;
    color: #475569; /* Darker for better contrast */
}

/* Responsive Typography Scaling */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.4rem !important; }
    body { font-size: 14px; }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-hero {
    background: linear-gradient(135deg, #E86A00 0%, #FF8C2A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* ===== Full-Screen Promo Modal ===== */
.promo-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInModal 0.5s ease forwards;
}

.promo-modal-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.8) translateY(20px);
    animation: popInModal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
    opacity: 0;
}

@media (max-width: 480px) {
    .promo-modal-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .promo-modal-box h2 {
        font-size: 1.8rem;
    }
}

.promo-close {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #E86A00;
    font-size: 1.1rem;
    width: 36px; height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.promo-close:hover {
    background: #fff;
    color: #E86A00;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.promo-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.promo-modal-box h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.promo-modal-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.promo-btn {
    width: 100%;
}

@keyframes fadeInModal {
    to { opacity: 1; }
}
@keyframes popInModal {
    to { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadeOutModal {
    to { opacity: 0; }
}

/* Premium Navbar */
.navbar {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    padding: 1rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar.nav-hidden {
    transform: translateY(-100%) !important;
    box-shadow: none !important;
}

@media (min-width: 1025px) {
    .navbar {
        left: 50%;
        transform: translateX(-50%);
        max-width: 1200px;
    }
}

.navbar.scrolled {
    padding: 0.8rem 6%;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    width: 100%;
}

@media (min-width: 1025px) {
    .navbar {
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: 1200px !important;
        width: 1200px !important;
        padding: 1rem 2rem !important;
    }
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links,
.navbar.scrolled .nav-actions {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Floating Cart Button for Desktop/Mobile */
.floating-cart-fab {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(255, 123, 0, 0.4);
    z-index: 1100;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
}

.floating-cart-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 123, 0, 0.5);
}

.fab-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 50px;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .floating-cart-fab {
        bottom: 85px; /* Above the bottom nav */
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* Removed redundant shadow rule */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 0;
}

.logo-icon-box {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: none;
}

.logo-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.logo-text {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-accent {
    color: var(--primary);
}

.logo-tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .logo-icon-box { width: 38px; height: 38px; font-size: 1.2rem; }
    .logo-text { font-size: 1.4rem; }
    .logo-tagline { font-size: 0.65rem; }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        gap: 0.5rem;
        display: flex; /* Ensure it's flex when active */
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* M-01 FIX: Hide redundant desktop nav links on mobile */
    .navbar .nav-links, 
    .navbar .opening-hours { 
        display: none !important; 
    }
}

@media (min-width: 1025px) {
    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    .menu-toggle {
        display: none !important;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: #fff5f0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cart-icon {
    position: relative;
    width: 48px; height: 48px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-download-app {
    background: white;
    color: #FF7B00;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-download-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #1a1a1a;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.menu-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -20px;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}


/* Hero Section Refinement */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 6% 2rem;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.hero::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,115,0,0.08);
    filter: blur(10px);
    top: 20%;
    right: 10%;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    gap: 3rem;
}

.hero-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-tagline {
    background: rgba(255,123,0,0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,123,0,0.2);
    box-shadow: none;
    display: inline-block;
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-main-title {
    font-size: clamp(2.5rem, 8vw, 5.2rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: -1px;
    background: linear-gradient(120deg, var(--secondary) 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.7;
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s backwards;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 24px;
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s backwards;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}

.hero-actions .btn {
    padding: 1rem 2.4rem;
    font-size: 1.05rem;
    border: none;
    min-height: 52px;
}

.hero-actions .btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.hero-actions .btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hero-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 14px 30px rgba(200,90,0,0.30);
    font-size: 1.1rem;
    padding: 1rem 2.8rem;
    letter-spacing: 0.3px;
}
.hero-actions .btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200,90,0,0.40);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    margin-top: -8px;
    animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: #eee;
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-top: -30px;
    animation: slideInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-promo-box {
    position: relative;
    max-width: 540px;
    width: 100%;
}

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

/* ══════════════════════════════════════════
   HERO SLIDER CARD — REFERENCE MATCH v4.0
   ══════════════════════════════════════════ */

.hero-slider-card {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    overflow: hidden;
    border: 3px solid #E86A00;
    box-shadow: 0 0 0 2px rgba(232,106,0,0.25), 0 24px 48px rgba(0,0,0,0.15);
    animation: floatCard 4s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 2px rgba(232,106,0,0.35), 0 32px 64px rgba(0,0,0,0.20);
}

/* ── TOP SECTION (badges + image) ── */
.hsc-dark-top {
    background: transparent;
    padding: 14px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

/* Badges Row */
.hsc-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Best Seller — Gold filled pill */
.hsc-bestseller-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid white;
    animation: bsBadgePulse 2.2s ease-in-out infinite;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 5;
}
.hsc-bs-icon { 
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
@keyframes bsBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
    50%       { transform: scale(1.1); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
}

/* Category Pill — White bg, orange text */
.hsc-category-pill {
    display: block;
    text-align: center;
    background: white;
    color: #000;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
    min-width: 0;
}

/* Food Image — full width, fills dark section */
.hsc-img-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    line-height: 0;
}
.hsc-food-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.hero-slider-card:hover .hsc-food-img {
    transform: scale(1.05);
}
.hsc-img-glow { display: none; } /* hidden in this layout */

/* ── BOTTOM WHITE SECTION ── */
.hsc-bottom {
    background: white;
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Info Strip */
.hsc-info-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0;
}
.hsc-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    color: #333;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.07);
    white-space: nowrap;
}

/* Price Row */
.hsc-price-block { padding: 0; }
.hsc-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.hsc-price {
    font-size: 3rem;
    font-weight: 900;
    color: #E86A00;
    line-height: 1;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}
.hsc-price-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}
.hsc-price-label::before { content: '✓'; font-weight: 900; }

/* Description */
.hsc-desc {
    font-size: 7px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Add to Cart Button */
.hsc-cart-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E86A00, #C85A00);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    height: 52px;
    width: 100%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(232,106,0,0.40);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    font-family: 'Outfit', sans-serif;
}
.hsc-cart-btn i { font-size: 1.1rem; }
.hsc-cart-btn:hover {
    background: linear-gradient(135deg, #C85A00, #A84A00);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(232,106,0,0.55);
}
.hsc-cart-btn:active { transform: scale(0.97); }

/* Slide animation */
.slide-swipe {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mobile sizing */
@media (max-width: 900px) {
    .hero-slider-card { max-width: 100%; }
    .hsc-food-img { height: 200px; }
    .hsc-price { font-size: 2.6rem; }
}
@media (max-width: 480px) {
    .hsc-food-img { height: 175px; }
    .hsc-price { font-size: 2.2rem; }
    .hsc-category-pill { 
        font-size: 0.75rem; 
        max-width: 100%; 
    }
    .hsc-wa-btn { font-size: 0.9rem; height: 48px; }
}




@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 75px;
        padding-bottom: 10px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 0px;
        gap: 0;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }
    .stat-divider {
        width: 2px;
        height: 40px;
    }
    
    .hero-visual {
        margin-top: 0px;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 24px;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
}


/* Base Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 81, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 3px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Pulsating CTA */
.btn-pulse {
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 123, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

/* Energetic Image Area */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.blob-main {
    position: absolute;
    width: 550px; height: 550px;
    background: var(--primary);
    filter: blur(60px);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 1;
    animation: float 10s infinite alternate;
}

@keyframes float {
    from { transform: translate(-20px, -20px) rotate(0deg); }
    to { transform: translate(20px, 20px) rotate(10deg); }
}

.premium-slider-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    border: 15px solid var(--white);
    box-shadow: var(--shadow-lg), 0 0 100px rgba(255, 123, 0, 0.1);
    position: relative;
    z-index: 5;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Badges Refinement */
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 800;
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    z-index: 20;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    transform: translateY(-6px);
}

.floating-badge:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-left {
    top: 15%;
    left: -5%;
    animation: float-badge 3s ease-in-out infinite;
}

.badge-right {
    top: 12px;
    right: 12px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    animation: float-badge 3.5s ease-in-out infinite 0.5s;
}

.price-badge {
    text-align: center;
    line-height: 1.2;
}

.price-badge small {
    font-size: 0.7em;
    color: var(--text-muted);
}

.price-badge span {
    font-size: 1.4rem;
    color: var(--primary);
    display: block;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Dynamic Background Shapes */
.shape {
    position: absolute;
    z-index: 1;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: float-badge 4s infinite 1s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 45%;
    background: var(--primary);
    animation: jelly 5s infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 35%;
    background: transparent;
    border: 6px solid var(--primary-light);
    animation: morph 6s infinite reverse;
}

.blob-main {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,161,74,0.15) 0%, rgba(255,255,255,0) 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .blob-main {
        width: 300px;
        height: 300px;
        right: -5%;
    }
}

/* Premium Features Ribbon - Perfectly Fit One Line */
.features-ribbon {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 4%;
    margin-top: 1rem;
    position: relative;
    z-index: 25;
    flex-wrap: wrap; /* Allow wrapping on small phones */
}

@media (max-width: 400px) {
    .features-ribbon {
        gap: 0.5rem;
        padding: 1rem 2%;
    }
}

.feature-item {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 0; /* Allow shrinking */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item:nth-child(2) {
    transform: translateY(-12px);
}

.feature-item:nth-child(2):hover {
    transform: translateY(-17px);
}

.f-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white);
}

.f-text h4 {
    font-size: 0.75rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
}

.f-text p {
    display: none; /* Hide subtitle on mobile for space */
}

@media (min-width: 769px) {
    .feature-item {
        flex-direction: row;
        padding: 0.8rem 1.5rem;
        gap: 1rem;
        text-align: left;
    }
    .f-text p { display: block; }
    .f-text h4 { font-size: 1rem; }
    .f-icon { width: 48px; height: 48px; font-size: 1.4rem; }
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.f-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--white);
}

.feature-item:nth-child(1) .f-icon { background: linear-gradient(135deg, #FF6B00, #FF0000); }
.feature-item:nth-child(2) .f-icon { background: linear-gradient(135deg, #00C853, #64DD17); }
.feature-item:nth-child(3) .f-icon { background: linear-gradient(135deg, #FFEE00, #FF9900); }

.f-text h4 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 2px; }
.f-text p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* Exclusive Offers Section */
.trending-preview {
    padding: 2rem 8%;
    background: linear-gradient(135deg, #FFF9F2 0%, #FFF3E0 100%);
    margin: 1rem 5%;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.trending-preview::before {
    content: 'FOOD';
    position: absolute;
    top: -30px; right: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 123, 0, 0.04);
    z-index: 1;
    pointer-events: none;
}

.trending-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
}

.trending-header h2 {
    color: var(--secondary);
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.trending-header a {
    color: white;
    background: var(--primary);
    padding: 0.6rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(255,123,0,0.25);
}

.trending-header a:hover {
    transform: scale(1.05) translateY(-3px);
    background: var(--primary-dark);
}

@keyframes glowText {
    from { text-shadow: 0 0 10px rgba(255,123,0,0.4); }
    to { text-shadow: 0 0 30px rgba(255,123,0,0.8), 0 0 50px rgba(255,123,0,0.4); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Grid Setup */
.offers-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 5%;
}

.kfc-coupon-card {
    width: 100%;
    background: white;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

/* On very small phones, adjust card height */
@media (max-width: 400px) {
    .offers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .kfc-coupon-card { flex-direction: column; }
    .kfc-coupon-left { width: 100%; padding: 1.5rem; clip-path: none; }
    .kfc-coupon-right { padding: 1.2rem; text-align: center; }
}

.kfc-coupon-card:hover { 
    transform: scale(1.05) translateY(-5px); 
}

.kfc-coupon-left {
    width: 35%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: white;
    clip-path: polygon(0% 0%, 100% 0%, 85% 50%, 100% 100%, 0% 100%);
}

.kfc-food-img {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.kfc-discount-badge {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

.kfc-coupon-right {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kfc-coupon-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-weight: 900;
}

.kfc-coupon-right p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.offer-status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4500;
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(1); box-shadow: 0 0 0 rgba(255, 69, 0, 0.4); }
    to { transform: scale(1.1); box-shadow: 0 0 15px rgba(255, 69, 0, 0.7); }
}

.validity-text {
    display: block;
    font-size: 0.75rem;
    color: #e65c00;
    font-weight: 700;
    margin-top: 4px;
    font-style: italic;
}

.timer-container {
    background: #fff5f0;
    border: 1px dashed var(--primary-light);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.live-timer {
    font-weight: 900;
    color: #d62300;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.kfc-coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 10px;
}

.coupon-code-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #475569;
}

.coupon-code-pill strong {
    color: var(--secondary);
}

.kfc-order-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.kfc-order-btn:hover {
    background: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
} 

/* Handle mobile stacked cards */
@media (max-width: 520px) {
    .kfc-coupon-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .coupon-code-pill {
        text-align: center;
    }
    .kfc-order-btn {
        text-align: center;
    }
}

/* ============ Menu Highlights ============ */
/* ============ Menu Highlights ============ */
/* Menu Highlights Enhancement */
.menu-highlights-section {
    padding: 2rem 8%;
    background: var(--background);
}

.section-header-improved {
    margin-bottom: 4rem;
    text-align: left;
}

.header-text-content h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.header-text-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary);
}

.menu-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.hc-img-box {
    width: 70px; height: 70px;
    border-radius: 15px;
    background: #FFF5F0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hc-name { font-size: 1.1rem; color: var(--secondary); margin-bottom: 4px; }
.hc-price { font-size: 1.2rem; color: var(--primary); font-weight: 800; }

.hc-add-btn {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    box-shadow: 0 5px 15px rgba(255, 81, 0, 0.2);
    transition: all 0.3s ease;
}

.hc-add-btn:hover { transform: scale(1.1) rotate(90deg); }

/* Premium Reviews Section */
.reviews-section {
    padding: 6rem 8%;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.reviews-title {
    font-size: 2.6rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.8rem;
    color: white;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.09);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.reviewer strong {
    color: white;
}

.reviewer span {
    color: var(--primary);
}

/* ============ Location Strip ============ */
.location-strip {
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 2rem 5%;
}

.ls-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 1rem 2.5rem;
}

.ls-item i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.ls-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.ls-item p, .ls-item a {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

.ls-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* ============ Contact Page ============ */
.contact-hero {
    background: #1a1a1a;
    text-align: center;
    padding: 5rem 5% 3rem;
}

.contact-hero h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.contact-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.contact-body {
    padding: 3rem 5% 5rem;
    background: var(--background);
}

/* WhatsApp Premium Connect Card */
/* ============ REDESIGNED CONTACT SECTION ============ */
.contact-hero-premium {
    position: relative;
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E8 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255,123,0,0.1);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,123,0,0.1);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-hero-premium h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--secondary);
    font-family: 'Baloo Bhai 2', cursive;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.contact-hero-premium p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Decorative Blobs */
.hero-decorative-blobs .blob-p {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
}
.b1 { width: 300px; height: 300px; background: #FF7B00; top: -150px; left: -100px; }
.b2 { width: 400px; height: 400px; background: #FFD5B3; bottom: -200px; right: -100px; }

/* Grid & Cards */
.contact-container {
    padding: 3rem 5% 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.primary-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: -6rem; /* Overlap hero */
    position: relative;
    z-index: 20;
}

.p-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2.5rem;
    background: white;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
}

.p-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255,123,0,0.12);
    border-color: var(--primary-light);
}

.wa-card .p-card-icon {
    width: 70px; height: 70px;
    background: #25D366;
    color: white;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.call-card .p-card-icon {
    width: 70px; height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
}

.p-card-info h3 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 6px; }
.p-card-info p { color: #64748b; font-size: 0.95rem; margin-bottom: 15px; }

.p-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}
.p-card-btn:hover { gap: 12px; color: var(--primary-dark); }

/* Secondary Info Grid */
.secondary-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.info-card-premium {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.info-card-premium:hover {
    background: #fffcf9;
    border-color: var(--primary-light);
}

.info-card-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.loc { background: #f0fdf4; color: #16a34a; }
.time { background: #fffbeb; color: #d97706; }
.mail { background: #fdf2f8; color: #db2777; }

.info-card-premium h4 { font-size: 1.2rem; color: var(--secondary); margin-bottom: 10px; }
.info-card-premium p { color: #64748b; line-height: 1.6; }

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: #16a34a;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
}

.hours-list { margin: 15px 0; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 6px; color: #475569; }
.hours-row strong { color: var(--secondary); }

.hours-status {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}
.hours-status.open { background: #dcfce7; color: #15803d; }

.social-pills { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.s-pill {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    transition: 0.3s;
}
.s-pill:hover { transform: translateY(-5px) rotate(8deg); }
.fb { background: #1877F2; }
.ig { background: #E1306C; }
.gl { background: #DB4437; }

/* Map Wrapper */
.map-wrapper-premium {
    background: white;
    padding: 1rem;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.map-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--secondary);
    border-bottom: 1px solid #f1f5f9;
}

.map-header i { color: var(--primary); font-size: 1.2rem; }

.map-wrapper-premium iframe {
    border-radius: 20px;
    display: block;
}

@media (max-width: 768px) {
    .primary-contact-grid { margin-top: -3rem; }
    .p-contact-card { padding: 1.5rem; }
    .contact-hero-premium { padding: 6rem 5% 4rem; }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp { background: #25D366; }
.call { background: var(--primary); }

/* Menu Grid */
.menu-container {
    padding: 100px 5% 60px 5%;
}

/* Food Category Filters */
.category-tabs-wrapper {
    position: sticky;
    top: 80px; /* Aligned with fixed navbar height */
    z-index: 998;
    width: 100%;
    background: transparent;
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0.8rem 5%;
    scrollbar-width: none;
    background: rgba(253, 248, 242, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid rgba(232, 106, 0, 0.12);
}
.category-tabs::-webkit-scrollbar { display: none; }

.cat-btn {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.cat-btn:hover {
    background: #fff4e8;
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.cat-btn.active {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(232, 106, 0, 0.3);
    transform: translateY(-2px);
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-category-section {
    width: 100%;
}

.menu-category-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
    position: relative;
    font-family: 'Baloo Bhai 2', cursive;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-dark);
}

.menu-grid-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .menu-grid-sub {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .menu-grid-sub {
        grid-template-columns: 1fr;
    }
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.menu-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

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

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-family: 'Baloo Bhai 2', cursive;
    line-height: 1.2;
}

/* Cart Badge Styling (Global) */
.cart-count, .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary); /* Vibrant Orange */
    color: white !important;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255, 123, 0, 0.4);
    border: 2px solid var(--white);
    animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

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

.currency-sym {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.price-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

.add-to-cart-pill {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(232, 106, 0, 0.3);
}

.add-to-cart-pill:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(232, 106, 0, 0.4);
}

.add-to-cart-pill i {
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .menu-grid-sub {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .menu-categories {
        position: relative !important;
        top: 0 !important;
        padding: 0.5rem 5% 1.2rem 5%;
        margin: 0 -5% 1rem -5%;
        background    .menu-card {
        border-radius: 16px;
    }
    .menu-card-img-wrapper {
        height: 110px;
    }
    .menu-card-content {
        padding: 10px;
    }
    .menu-item-name {
        font-size: 0.95rem;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .menu-item-desc {
        display: none; /* Hide description on mobile for a cleaner 'app-like' grid */
    }
    .menu-card-footer {
        flex-direction: row; /* Elegant side-by-side layout */
        justify-content: space-between;
        align-items: center;
    }
 .menu-card-footer {
        margin-top: auto !important;
        flex-direction: row; /* Elegant side-by-side layout */
        justify-content: space-between;
        align-items: center;
        gap: 4px;
    }
    .menu-item-price {
        font-size: 1.05rem;
    }
    .nav-actions .cart-icon {
        display: none !important; /* Hide redundant navbar cart on mobile */
    }
    .add-pill-btn {
        width: auto;
        padding: 6px 10px;
        font-size: 0.7rem;
        gap: 4px;
        border-radius: 10px;
    }
}

.add-pill-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 123, 0, 0.25);
}

/* Offers Section - KFC Style */
/* High-Energy Premium Offers Banner */
.offers-top-banner {
    background: radial-gradient(circle at 80% 20%, #4a0808 0%, #171717 80%);
    color: white;
    padding: 8.5rem 5% 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Subtle rotating background glow */
.offers-top-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.12) 10%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.offers-top-tag {
    display: inline-block;
    background: linear-gradient(90deg, #FF6B00, #D62300);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.5rem 1.6rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(214, 35, 0, 0.4);
    animation: scalePulse 2s infinite alternate;
}

@keyframes scalePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.offers-top-banner h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.premium-gradient-text {
    background: linear-gradient(to right, #FFC300, #FF7B00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 3.2rem;
    letter-spacing: -1px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(255, 123, 0, 0.3));
}

.offers-sub-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-top: 1.2rem;
    font-weight: 600;
}

/* Floating Sparkles */
.deal-sparkle {
    position: absolute;
    z-index: 2;
    opacity: 0;
    animation: floatUp 4s infinite ease-in;
    pointer-events: none;
}

.sp-1 { top: 60%; left: 15%; font-size: 2.5rem; animation-duration: 5s; }
.sp-2 { top: 75%; right: 18%; font-size: 1.8rem; animation-duration: 4.5s; animation-delay: 1s; }
.sp-3 { top: 40%; left: 25%; font-size: 1.5rem; animation-duration: 6s; animation-delay: 2s; }

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
    20% { opacity: 0.8; transform: translateY(-20px) rotate(10deg) scale(1.1); }
    80% { opacity: 0.8; transform: translateY(-70px) rotate(30deg) scale(0.9); }
    100% { transform: translateY(-100px) rotate(45deg) scale(1); opacity: 0; }
}

@media (max-width: 600px) {
    .offers-top-banner { padding: 7.5rem 5% 4rem 5%; }
    .offers-top-banner h1 { font-size: 2.2rem; }
    .premium-gradient-text { font-size: 2.5rem; }
    .offers-sub-text { font-size: 0.95rem; margin-top: 1rem; }
}

.offers-list {
    background: #f5f5f5;
    padding: 2rem 5% 6rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kfc-coupon-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease forwards;
}

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

.kfc-coupon-card:nth-child(1) { animation-delay: 0.1s; }
.kfc-coupon-card:nth-child(2) { animation-delay: 0.2s; }
.kfc-coupon-card:nth-child(3) { animation-delay: 0.3s; }
.kfc-coupon-card:nth-child(4) { animation-delay: 0.4s; }
.kfc-coupon-card:nth-child(5) { animation-delay: 0.5s; }

/* Coupon Card */
.kfc-coupon-card {
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    /* overflow: hidden removed to allow tear effect circles to show */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 140px;
    border: 1px solid rgba(0,0,0,0.03);
}

.kfc-coupon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.kfc-coupon-left {
    background: var(--accent, #D62300);
    width: 140px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0.8rem;
    position: relative;
}

/* Tear effect circles */
.kfc-coupon-card::before,
.kfc-coupon-card::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--background);
    border-radius: 50%;
    z-index: 10;
}
.kfc-coupon-card::before { top: -13px; left: 127px; }
.kfc-coupon-card::after  { bottom: -13px; left: 127px; }

/* Dashed divider */
.kfc-coupon-left::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 10%;
    height: 80%;
    width: 2px;
    border-right: 3px dashed rgba(255,255,255,0.3);
}

.kfc-food-img {
    font-size: 3.5rem;
    line-height: 1;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    animation: float-badge 3s ease-in-out infinite;
}

.kfc-discount-badge {
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.kfc-coupon-right {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 0.4rem;
}

.kfc-coupon-right h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.kfc-coupon-right p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.kfc-order-btn {
    margin-top: 0.8rem;
    align-self: flex-start;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.kfc-order-btn:hover {
    background: var(--accent);
    transform: scale(1.05) translateX(5px);
    box-shadow: 0 8px 25px rgba(214, 35, 0, 0.3);
}

.kfc-order-btn::after {
    content: ' →';
    opacity: 0;
    transition: 0.3s;
}

.kfc-order-btn:hover::after {
    opacity: 1;
}

@media (max-width: 520px) {
    .kfc-coupon-left {
        width: 100px;
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    .kfc-coupon-card::before,
    .kfc-coupon-card::after {
        left: 88px;
        width: 20px;
        height: 20px;
    }
    .kfc-food-img { font-size: 2rem; }
    .kfc-discount-badge { font-size: 0.9rem; }
    .kfc-coupon-right { padding: 0.8rem 1rem; }
    .kfc-coupon-right h3 { font-size: 1rem; }
    .kfc-coupon-right p { font-size: 0.85rem; }
    .kfc-order-btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
    .offers-top-banner h1 { font-size: 1.5rem; }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2);
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: var(--primary-light);
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: flex !important; }
    .nav-links { display: flex; }
    
    body { padding-bottom: 75px; }
    .floating-actions { display: none; }

    .hero {
        flex-direction: column-reverse; /* Put image ON TOP of text */
        text-align: center;
        padding-top: 20px;
        margin-top: 0;
        min-height: auto;
        justify-content: center;
    }

    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 2rem auto; font-size: 1rem; }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        margin-bottom: 1.5rem; 
        margin-top: 0;
        padding: 15px 0 0 0; /* Clear out the 50px padding from desktop view */
    }
    
    .menu-container { padding: 100px 5% 60px 5%; }
    #spin-section .menu-container { padding-top: 70px !important; }
    
    .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
    #spin-section .section-title { margin-bottom: 1rem !important; font-size: 1.8rem !important; }
    
    .offer-banner { padding: 2rem 1rem; }
    .offer-banner h2 { font-size: 2rem; }
    
    /* Make grids stack completely on mobile */
    .menu-grid[style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Features Ribbon in one line and animated */
    .features-ribbon {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 1rem 3%;
        margin-top: 1rem;
    }
    
    .feature-item {
        flex: 1;
        flex-direction: column;
        padding: 1rem 0.2rem;
        gap: 0.4rem;
        border-radius: 12px;
        min-width: 0;
        animation: premiumBounce 3.5s infinite ease-in-out;
    }

    .feature-item:nth-child(1) { animation-delay: 0s; }
    .feature-item:nth-child(2) { animation-delay: 1.1s; }
    .feature-item:nth-child(3) { animation-delay: 2.2s; }

    @keyframes premiumBounce {
        0%, 100% { transform: translateY(0); box-shadow: 0 5px 10px rgba(0,0,0,0.05); }
        50% { transform: translateY(-8px); box-shadow: 0 15px 20px rgba(255,123,0,0.15); }
    }

    .feature-item .f-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .feature-item .f-text h4 {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.2;
    }

    .feature-item .f-text p {
        display: none; /* Hide subtitles on mobile to save vertical & horizontal space */
    }

    /* ── SPIN SECTION: fits single screen, no trembling ── */
    #spin-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 5px;          /* Further reduced to remove blank area */
        padding-bottom: 100px;      /* Clear fixed bottom nav */
        overflow-x: hidden;
    }
    
    #spin-section .menu-container {
        padding: 0 4%;
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    #spin-section .section-title {
        font-family: 'Baloo Bhai 2', cursive !important;
        font-size: 1.9rem !important;
        font-weight: 800 !important;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        margin-top: 0;
        text-align: center;
        background: linear-gradient(45deg, #FF1493, #FF8C00, #FFD700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 300% 300%;
        animation: gradientWordFlow 3s ease-in-out infinite !important;
        filter: drop-shadow(0px 4px 8px rgba(255, 123, 0, 0.2));
    }

    @keyframes gradientWordFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Form card compact on mobile */
    .spin-card {
        padding: 1rem 1rem !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .spin-card h3 { display: none !important; } /* Hide redundant subtitle */
    .spin-card p  { font-size: 0.8rem !important; margin-bottom: 0.6rem; text-align: center; }
    .spin-card .form-group { margin-bottom: 0.5rem !important; }
    .spin-card .form-group label { font-size: 0.85rem !important; margin-bottom: 2px !important; }
    .spin-card .form-group input { padding: 0.6rem 0.8rem !important; font-size: 0.9rem !important; }
    #spinForm button[type="submit"] {
        padding: 0.7rem !important;
        margin-top: 5px !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
    }

    .spin-container {
        margin: 5px auto !important;
        width: 100% !important;
        max-width: 320px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;   /* Keeps spin-marker anchored correctly */
        contain: layout;
    }

    canvas#wheel {
        width: min(76vw, 290px) !important;
        height: min(76vw, 290px) !important;
        max-width: calc(100vw - 48px) !important;
        max-height: calc(100vw - 48px) !important;
        display: block !important;
        margin: 0 auto !important;
        will-change: transform;
        transform: rotate(0deg);
    }

    /* --- SPIN SECTION REDESIGN --- */
    .user-spin-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff5f0;
        padding: 6px 14px;
        border-radius: 50px;
        border: 1px solid rgba(255,123,0,0.2);
        margin-bottom: 15px;
        align-self: center;
    }
    .user-spin-pill .u-avatar {
        width: 28px;
        height: 28px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 0.8rem;
    }
    .user-spin-pill .u-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--secondary);
    }

    .streak-container {
        background: white;
        border-radius: 20px;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        width: 100%;
        box-sizing: border-box;
    }
    .streak-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.2rem;
    }
    .streak-header span { font-weight: 700; font-size: 0.9rem; }
    .streak-bonus { color: #f59e0b; }

    .streak-row {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding: 0 5px;
    }
    .streak-progress-line {
        position: absolute;
        top: 18px;
        left: 10px;
        right: 10px;
        height: 4px;
        background: #f1f5f9;
        z-index: 1;
        border-radius: 10px;
    }
    .streak-day {
        position: relative;
        z-index: 2;
        width: 38px;
        height: 48px;
        background: #f8fafc;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #94a3b8;
        font-size: 0.85rem;
        transition: all 0.3s;
        border: 1px solid transparent;
    }
    .streak-day span { font-size: 0.55rem; font-weight: 600; text-transform: uppercase; margin-top: -2px; }
    .streak-day.completed { background: #fff5f0; color: var(--primary); border-color: rgba(255,123,0,0.2); }
    .streak-day.today { background: white; color: var(--primary); border: 2px solid var(--primary); transform: scale(1.1); box-shadow: 0 5px 15px rgba(255,123,0,0.15); }
    .streak-day.mega { color: #f59e0b; border: 1px dashed #f59e0b; background: #fffbeb; }

    .streak-check, .streak-star {
        position: absolute;
        bottom: -6px;
        background: var(--primary);
        color: white;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        font-size: 0.6rem;
        display: none;
        align-items: center;
        justify-content: center;
    }
    .streak-day.completed .streak-check { display: flex; }
    .streak-day.mega .streak-star { display: flex; background: #f59e0b; }
    /* Prize Grid */
    .prize-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }


    /* Realistic Winners Feed */
    .winners-feed-card {
        background: white;
        border-radius: 20px;
        padding: 1.2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        margin-top: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .winner-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .winner-item:last-child { border-bottom: none; }
    .winner-item .w-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #6366f1;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 0.9rem;
    }
    .winner-item .w-info { display: flex; flex-direction: column; text-align: left; }
    .winner-item .w-info strong { font-size: 0.95rem; color: #1e293b; }
    .winner-item .w-info span { font-size: 0.8rem; color: #64748b; }

    /* Winning Modal Styles */
    .winning-modal-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
        backdrop-filter: blur(8px);
    }
    .winning-modal-box {
        background: white;
        border-radius: 30px;
        width: 100%;
        max-width: 350px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        position: relative;
        animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    @keyframes modalSlideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
    
    .winning-modal-box h2 { font-family: 'Baloo Bhai 2'; color: var(--primary); font-size: 2rem; margin-bottom: 0.5rem; }
    .winning-modal-box p { color: #64748b; font-size: 1rem; margin-bottom: 1.5rem; }
    
    .prize-display-card {
        background: #fffaf5;
        border: 2px dashed var(--primary);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 2rem;
    }
    .prize-display-card .p-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
    .prize-display-card .p-name { font-weight: 800; font-size: 1.3rem; color: #1e293b; text-transform: uppercase; }

    .grab-it-btn {
        width: 100%;
        background: linear-gradient(to right, #FF6B00, #FF8800);
        color: white;
        border: none;
        padding: 18px;
        border-radius: 15px;
        font-family: 'Baloo Bhai 2';
        font-weight: 800;
        font-size: 1.2rem;
        box-shadow: 0 8px 25px rgba(255,107,0,0.3);
        cursor: pointer;
        transition: all 0.2s;
    }
    .grab-it-btn:active { transform: scale(0.95); }

    /* Premium Rectangular Spin Button Below Wheel */
    .spin-action-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        scroll-margin-top: 100px;
    }

    .rect-spin-btn {
        width: 100%;
        max-width: 280px;
        height: 55px;
        background: linear-gradient(to right, #FF6B00, #FF8800);
        border: none;
        border-radius: 15px;
        color: white;
        font-family: 'Baloo Bhai 2', cursive;
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: 1px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.25);
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
    }

    .rect-spin-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
    }

    .rect-spin-btn:active {
        transform: translateY(1px);
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    }

    .rect-spin-btn:disabled {
        background: #cbd5e1;
        box-shadow: none;
        cursor: not-allowed;
    }

    /* Fixed Top Marker - Enhanced Visibility */
    .spin-marker {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 50px;
        z-index: 50;
        filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
        display: flex;
        justify-content: center;
    }
    
    .spin-marker {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
        display: flex;
        justify-content: center;
    }
    
    .spin-marker::before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 22px solid transparent;
        border-right: 22px solid transparent;
        border-top: 35px solid white; /* Outer shell for contrast */
        z-index: 1;
    }

    .spin-marker::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 26px solid #FF6B00; /* Main orange pointer */
        margin-top: 4px;
        z-index: 2;
    }

    /* Remove Wheel Glow & Add Border */
    .spin-container {
        position: relative;
        padding: 20px 10px;
        background-image: radial-gradient(#FF6B0015 1.5px, transparent 1.5px);
        background-size: 30px 30px;
        border-radius: 40px;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: fit-content; /* Ensure container width matches canvas exactly */
        max-width: 100%;
    }

    canvas#wheel {
        box-shadow: 0 30px 70px rgba(232, 106, 0, 0.15), 0 0 0 10px white !important;
        border: 12px solid white !important;
        background: #111;
        border-radius: 50%;
        will-change: transform;
        max-width: 100%;
        height: auto;
        position: relative;
        z-index: 5;
    }

    /* SPIN BUTTON GLOW EFFECTS */
    .spin-action-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .rect-spin-btn {
        background: linear-gradient(135deg, #E86A00, #C85A00);
        color: white;
        border: 5px solid white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        font-weight: 900;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(232, 106, 0, 0.4), 0 0 0 0 rgba(232, 106, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        animation: spin-pulse 2s infinite;
        transition: all 0.3s;
    }

    @keyframes spin-pulse {
        0% { box-shadow: 0 10px 25px rgba(232, 106, 0, 0.4), 0 0 0 0 rgba(232, 106, 0, 0.4); }
        70% { box-shadow: 0 10px 25px rgba(232, 106, 0, 0.4), 0 0 0 20px rgba(232, 106, 0, 0); }
        100% { box-shadow: 0 10px 25px rgba(232, 106, 0, 0.4), 0 0 0 0 rgba(232, 106, 0, 0); }
    }

    @media (max-width: 480px) {
        .rect-spin-btn { max-width: 280px; height: 50px; font-size: 1.1rem; }
        canvas#wheel { border-width: 8px !important; }
        .spin-container { padding: 15px 5px; }
    }

    /* Result card compact on mobile */
    #couponResult {
        padding: 0.4rem !important;
        max-height: none !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    #couponResult > div {
        padding: 1rem !important;
    }
    #couponResult h2 { font-size: 1.3rem !important; margin: 5px 0 !important; }
    #couponResult h3 { font-size: 1.1rem !important; margin: 5px 0 !important; }
    #couponCodeBox { 
        font-size: 1.4rem !important; 
        padding: 0.7rem !important; 
        margin: 0.8rem 0 !important;
        letter-spacing: 2px !important;
    }
    #couponResult .offer-details-box, 
    #couponResult div[style*="background: #fff3cd"] {
        padding: 0.6rem !important;
        margin: 0.6rem 0 !important;
    }
    #minPurchaseText { font-size: 0.9rem !important; margin-top: 4px !important; }
    #whatsappClaimBtn {
        padding: 0.7rem 1.2rem !important;
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .btn { padding: 0.8rem 1.5rem; font-size: 1rem; }
    canvas#wheel { 
        border-width: 7px;
        width:  clamp(230px, 82vw, 280px) !important;
        height: clamp(230px, 82vw, 280px) !important;
    }
    .pizza-backdrop { width: 300px; height: 300px; }
    .badge-left { top: 0; left: -10px; font-size: 0.8rem; padding: 0.5rem 1rem; }
    .badge-right { top: -10px; right: 10px; font-size: 0.8rem; padding: 0.5rem 1rem; }
}

/* ── Spin Wheel — safe defaults (JS overrides when needed) ── */
.hidden-wheel { display: none !important; }
#couponResult    { display: none !important; }

/* Winner result card must scroll on small screens */
#couponResult {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1rem 2rem;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Spin Wheel Canvas */
/* Premium Golden Orange Wheel Redesign */
.wheel-outer-rim {
    position: relative;
    padding: 20px;
    background: radial-gradient(circle, #ff9d4d 0%, #e86a00 100%);
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(232, 106, 0, 0.4), 
                inset 0 0 30px rgba(0,0,0,0.1);
    margin: 20px auto;
    width: fit-content;
    border: 8px solid #ffcc80;
}

/* Glowing dots on the rim */
.rim-light {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px #fff;
    z-index: 10;
    animation: lightPulse 2s infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.l1 { top: 10px; left: 50%; transform: translateX(-50%); }
.l2 { top: 50%; right: 10px; transform: translateY(-50%); }
.l3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.l4 { top: 50%; left: 10px; transform: translateY(-50%); }
.l5 { top: 20%; left: 20%; }
.l6 { top: 20%; right: 20%; }
.l7 { bottom: 20%; left: 20%; }
.l8 { bottom: 20%; right: 20%; }

#wheel {
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    width: clamp(260px, 80vw, 340px) !important;
    height: clamp(260px, 80vw, 340px) !important;
    transition: transform 5s cubic-bezier(0.1, 0.9, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.spin-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C2A, #E86A00);
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 
                inset 0 -4px 8px rgba(0,0,0,0.2),
                inset 0 4px 8px rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.spin-center-btn .btn-inner {
    color: white;
    font-weight: 950;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.spin-center-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.spin-marker {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 45px;
    background: #FFD700;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 150;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-top: 4px solid #fff;
}

/* --- End of Spin Section --- */

.spin-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.coupon-box {
    background: #f9f9f9;
    border: 2px dashed var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        padding: 0 5px max(10px, env(safe-area-inset-bottom));
        background: var(--white, #fff);
        box-shadow: 0 -2px 15px rgba(0,0,0,0.05);
        z-index: 1000;
        border-radius: 20px 20px 0 0;
        overflow: visible;
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        flex: 1;
        transition: color 0.3s;
        font-size: clamp(0.65rem, 2.5vw, 0.75rem);
        gap: 2px;
        padding: 5px 2px;
        outline: none !important;
        -webkit-tap-highlight-color: transparent;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .bottom-nav-item i {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    
    .bottom-nav-item.active {
        color: var(--primary);
        font-weight: 600;
    }
    
    .bottom-nav-item.active i {
        transform: translateY(-2px);
    }
    
    /* Special Spin Button */
    .spin-special {
        position: relative;
    }
    .spin-circle {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-top: -30px;
        box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
        border: 4px solid var(--background);
        transition: transform 0.3s ease;
        animation: pulseOrange 2s infinite;
    }
    .spin-special:hover .spin-circle {
        transform: translateY(-5px);
    }
    .spin-circle i {
        font-size: 1.6rem;
        animation: rotateWheel 4s linear infinite;
    }
    
    .offers-animated i {
        animation: swingIcon 2s infinite ease-in-out;
        transform-origin: top center;
    }

    @keyframes rotateWheel {
        100% { transform: rotate(360deg); }
    }
    
    @keyframes pulseOrange {
        0% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.6); }
        70% { box-shadow: 0 0 0 12px rgba(255, 123, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
    }

    @keyframes swingIcon {
        0% { transform: rotate(0deg); }
        15% { transform: rotate(20deg); }
        30% { transform: rotate(-15deg); }
        45% { transform: rotate(10deg); }
        60% { transform: rotate(-5deg); }
        75% { transform: rotate(0deg); }
        100% { transform: rotate(0deg); }
    }
}

/* ============ Customer Memories Section ============ */
.memories-section {
    padding: 3rem 5%;
    background: var(--white);
    position: relative;
}

.collage-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    margin-top: 1rem;
}

.memory-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background: #eee;
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.memory-card:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.memory-card:hover img {
    transform: scale(1.08);
}

.memory-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 20px 15px 10px;
    transition: bottom 0.3s;
    font-size: 0.85rem;
}

.memory-card:hover .memory-overlay {
    bottom: 0;
}

/* Collage Masonry Setup */
/* Removed as per user request to keep all images the same size */

@media (max-width: 768px) {
    .collage-view {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }
}

/* PREMIUM FLOATING WHATSAPP CAPSULE */
.whatsapp-float {
    background-color: #25d366;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Fix for mobile - keep it compact but nice */
@media screen and (max-width: 480px) {
    .whatsapp-float span {
        display: none; /* Icon only on very small screens */
    }
    .whatsapp-float {
        padding: 15px;
    }
}
/* Mobile Overrides for New Hero Section */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
    }
    .hero-main-title {
        font-size: 3.5rem;
    }
    .hero-promo-box {
        margin: 0 auto;
    }
    .hero-image-side {
        margin-top: 4rem;
    }
    .main-hero-burger {
        max-width: 450px;
    }
}

@media (max-width: 600px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    .hero-promo-box {
        padding: 1rem;
        max-width: 360px;
    }
    .slider-category-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    .slider-price-tag .price {
        font-size: 1.4rem;
    }
}

/* ════════════════════════════════════════
   PREMIUM STORY CARD
   ════════════════════════════════════════ */
.story-card {
    position: relative;
    background: linear-gradient(145deg, #FFF8F0 0%, #FFF3E8 50%, #FFF8F0 100%);
    border-radius: 28px;
    margin: 0 0 1.5rem;
    overflow: hidden;
    border: 1.5px solid rgba(255,123,0,0.15);
    box-shadow: 0 20px 50px rgba(255,123,0,0.10), 0 4px 18px rgba(0,0,0,0.06);
    animation: storyCardFadeIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes storyCardFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Decorative glowing blobs */
.story-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
}
.story-blob-1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,123,0,0.12), transparent 70%);
    top: -80px; right: -80px;
    animation: blobFloat 8s ease-in-out infinite alternate;
}
.story-blob-2 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,200,0,0.08), transparent 70%);
    bottom: -60px; left: -60px;
    animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(20px, 20px) scale(1.12); }
}

/* Inner content */
.story-inner {
    position: relative;
    z-index: 2;
    padding: 2.8rem 2.5rem 2rem;
}

/* Badge pill */
.story-badge {
    display: inline-block;
    background: rgba(255,123,0,0.12);
    border: 1.5px solid rgba(255,123,0,0.35);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}

/* Title */
.story-title {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: none;
}

/* Big quote */
.story-quote-icon {
    font-size: 2.5rem;
    color: rgba(255,123,0,0.25);
    margin-bottom: 1rem;
    line-height: 1;
}

/* Body text */
.story-body {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    font-family: 'Baloo Bhai 2', cursive;
}
.story-body p { margin-bottom: 0.75rem; }
.story-body em { color: var(--primary-dark); font-style: italic; font-weight: 700; }
.story-body strong { color: #1a1a1a; }

/* Highlighted accent box */
.story-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255,123,0,0.12), rgba(255,81,0,0.06));
    border-left: 4px solid #FF7B00;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.6rem;
    color: #3d1f00;
    font-size: 1rem;
    font-family: 'Baloo Bhai 2', cursive;
    line-height: 1.75;
    box-shadow: 0 4px 18px rgba(255,123,0,0.08);
    animation: highlightPulse 3s ease-in-out infinite;
}
@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(255,123,0,0.08); }
    50%       { box-shadow: 0 6px 28px rgba(255,123,0,0.18); }
}
.story-highlight > i {
    font-size: 1.3rem;
    color: #FF7B00;
    margin-top: 3px;
    flex-shrink: 0;
}
.story-highlight span { font-weight: 600; }

/* Closing tagline */
.story-tagline {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.2px;
}

/* Decorative divider */
.story-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: rgba(255,123,0,0.6);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.story-divider span {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255,123,0,0.35), transparent);
}

/* Facebook follow card inside story-card */
.fb-follow-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #FFF3E8;
    border-top: 1px solid rgba(255,123,0,0.15);
    border-radius: 0 0 28px 28px;
    padding: 1.4rem 2.5rem;
}
.fb-icon-wrap {
    background: #1877f2;
    color: white;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(24,119,242,0.4);
}
.fb-follow-text h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.fb-follow-text p {
    color: #555;
    font-size: 0.88rem;
    margin: 0;
}
.fb-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877f2;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24,119,242,0.4);
}
.fb-follow-btn:hover {
    background: #0d5bb8;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .story-inner { padding: 2rem 1.4rem 1.6rem; }
    .story-title { font-size: 1.2rem; }
    .fb-follow-card { padding: 1.2rem 1.4rem; flex-direction: column; align-items: flex-start; }
    .story-highlight { flex-direction: column; gap: 0.6rem; }
}

/* ════════════════════════════════════════
   ADMIN STORY TAB
   ════════════════════════════════════════ */
.story-preview-box {
    background: linear-gradient(145deg, #1a0a00, #2e1000);
    border-radius: 18px;
    padding: 1.8rem;
    color: #ffe0b2;
    font-family: 'Baloo Bhai 2', cursive;
    line-height: 1.75;
    margin-top: 1.5rem;
    font-size: 1rem;
}
.story-preview-box h3 { color: #FFA14A; margin-bottom: 1rem; }
.story-preview-box .preview-highlight {
    background: rgba(255,123,0,0.2);
    border-left: 3px solid #FF7B00;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin: 1rem 0;
    color: #ffe0b2;
}

/* ============ REDESIGNED CART MODAL ============ */
.cart-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Mobile bottom sheet style */
}

.cart-modal-box {
    background: white;
    width: 100%;
    max-width: 500px;
    padding: 1.5rem 1.5rem 2.5rem;
    border-radius: 30px 30px 0 0;
    animation: slideUpSheet 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-drag-handle {
    width: 40px;
    height: 5px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: -5px auto 15px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-main h2 { font-size: 1.5rem; margin: 0; }
.header-item-count { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.close-modal-btn {
    background: #f1f5f9;
    border: none;
    width: 35px; height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
}

.cart-items-container {
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 1rem;
    padding-right: 5px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 10px;
}

.item-main-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Veg/Non-Veg Indicators */
.veg-indicator {
    width: 16px; height: 16px;
    border: 2px solid;
    display: flex; justify-content: center; align-items: center;
    padding: 2px;
}
.veg-indicator.veg { border-color: #00c853; }
.veg-indicator.non-veg { border-color: #d62300; }
.indicator-dot { width: 100%; height: 100%; border-radius: 50%; }
.veg-indicator.veg .indicator-dot { background: #00c853; }
.veg-indicator.non-veg .indicator-dot { background: #d62300; }

.item-name { font-weight: 700; color: var(--secondary); display: block; }
.item-unit-price { font-size: 0.85rem; color: #64748b; font-weight: 600; }

.item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-total-price { 
    font-weight: 800; 
    color: var(--secondary); 
    font-size: 1rem; 
    min-width: 55px; 
    text-align: right; 
    white-space: nowrap;
}

/* Qty Control Pill */
.qty-control-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    height: 38px;
    min-width: 100px;
    color: var(--primary);
    font-weight: 800;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 123, 0, 0.1);
}

.qty-control-pill button {
    background: none; 
    border: none;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    width: 34px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-control-pill button:active {
    background: rgba(255, 123, 0, 0.1);
}

.qty-control-pill span {
    flex: 1;
    text-align: center;
    font-size: 1rem;
}

.trash-btn {
    color: #cbd5e1;
    background: none; 
    border: none;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
}
.trash-btn:hover { 
    color: #f43f5e; 
    background: #fff1f2;
}

/* Promo/Bill Sections */
.promo-code-section {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.bill-details-section h3 { font-size: 0.9rem; text-transform: uppercase; color: #64748b; margin-bottom: 1rem; }
.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}
.bill-row.savings { color: #00c853; }
.free-text { color: #00c853; font-weight: 800; }

.grand-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1.5px solid #f1f5f9;
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 900;
}

.whatsapp-checkout-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box !important;
    background: #25d366;
    color: white;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 18px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
}
.whatsapp-checkout-btn:active { transform: scale(0.96); }

.empty-cart-state { text-align: center; padding: 3rem 1rem; }
.empty-cart-state i { font-size: 4rem; color: #e2e8f0; margin-bottom: 1rem; }
.empty-cart-state p { color: #64748b; font-weight: 600; margin-bottom: 1.5rem; }
.empty-cart-state button {
    background: var(--primary); color: white; border: none;
    padding: 0.8rem 2rem; border-radius: 50px; font-weight: 800; cursor: pointer;
}

@media (min-width: 769px) {
    .cart-modal-overlay { align-items: center; }
    .cart-modal-box { border-radius: 30px; animation: popInModal 0.3s ease forwards; }
}

.final-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    border-top: 1.5px solid #f1f5f9;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--secondary);
}

/* SPIN TODAY - ADVANCED GAMIFICATION STYLES */
.social-proof-pill {
    background: #f0fdf4;
    color: #16a34a;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dcfce7;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(1); }
}

.streak-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.streak-header {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.streak-bonus { color: var(--primary); }

.streak-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.streak-day {
    flex: 1;
    background: #f1f5f9;
    padding: 10px 5px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #94a3b8;
    position: relative;
    transition: all 0.3s ease;
}

.streak-day span {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.streak-day.active {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(214,35,0,0.2);
}

.streak-day.mega {
    background: #fef3c7;
    border: 2px dashed #f59e0b;
    color: #d97706;
}

.spin-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .spin-layout-grid { grid-template-columns: 1fr; }
}

.cooldown-box {
    text-align: center;
    padding: 2rem 1rem;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
}

.next-spin-timer {
    margin-top: 1.5rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 15px;
}

.next-spin-timer span { display: block; font-size: 0.85rem; color: #64748b; margin-bottom: 5px; }
.next-spin-timer strong { font-size: 1.5rem; color: var(--primary); font-family: monospace; }

.winners-feed-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.feed-header {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    animation: slideInLeft 0.5s ease;
}

.w-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.w-info strong { display: block; font-size: 0.95rem; }
.w-info span { font-size: 0.75rem; color: #64748b; }

/* PREMIUM WIN MODAL */
.win-card-premium {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .win-card-premium {
        padding: 2rem 1.2rem;
        border-radius: 24px;
    }
    
    #couponCodeBox {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .confetti-icon {
        font-size: 3rem;
    }
}

.confetti-icon { font-size: 4rem; margin-bottom: 1rem; }

.coupon-box-premium {
    background: #f8fafc;
    border: 2px dashed var(--primary);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.coupon-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
}

#couponCodeBox {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.copy-btn-pill {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}

.expiry-warning {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.win-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apply-now-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(214,35,0,0.2);
}

.share-wa-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}
/* ============ Navigation Active States ============ */
.nav-links a.active, .bottom-nav-item.active {
    color: var(--primary) !important;
}
.bottom-nav-item.active i {
    transform: translateY(-5px);
    color: var(--primary);
}

/* ============ Menu & Offers Premium Banners ============ */
.menu-top-banner, .offers-top-banner {
    padding: 5rem 5% 1.5rem;
    text-align: center;
    background: white; /* Clean white background for better contrast */
    position: relative;
    overflow: hidden;
}

.menu-top-tag, .offers-top-tag {
    background: var(--secondary);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.menu-top-banner h1, .offers-top-banner h1 {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.premium-gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05)); /* Subtle crisp shadow */
}

.menu-sub-text, .offers-sub-text {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem; /* Reduced from 2.5rem */
}

/* Search Bar Premium */
.search-bar-premium {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background: white;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.search-bar-premium i {
    margin-left: 20px;
    color: var(--primary);
}

.search-bar-premium input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-voice-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.search-voice-btn:hover {
    color: var(--primary);
}

/* No Results State */
.no-results-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 32px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results-state h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.no-results-state p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.clear-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(214,35,0,0.15);
}

/* Category Tabs Wrapper - Removed sticky/blur to avoid 'white line' overlap */
.category-tabs-wrapper {
    padding: 0.5rem 5% 1rem;
    background: transparent;
    position: relative; /* Not sticky anymore */
    z-index: 10;
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.cat-btn {
    white-space: nowrap;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid #eee;
    background: white;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.cat-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--sp-2);
    padding: var(--sp-2) 4% var(--sp-6);
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--sp-4);
        padding: var(--sp-4) 5% var(--sp-6);
    }
}

.menu-card {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,123,0,0.1);
    border-color: var(--primary-light);
}

/* Premium Voucher Cards */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 5% 5rem;
}

.premium-voucher-card {
    display: flex;
    background: white;
    border-radius: 20px;
    /* overflow: hidden removed to allow scalloped edges to show */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid #f1f5f9;
    position: relative;
}

.premium-voucher-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255,106,0,0.1);
}

.voucher-left {
    width: 100px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    border-right: 2px dashed rgba(255,255,255,0.3);
}

/* Scalloped edge effect */
.voucher-left::before, .voucher-left::after {
    content: '';
    position: absolute;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--background);
    border-radius: 50%;
}
.voucher-left::before { top: -10px; }
.voucher-left::after { bottom: -10px; }

.voucher-type {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.8;
}

.voucher-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 5px 0;
}

.voucher-social {
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 5px;
}

.voucher-right {
    flex: 1;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voucher-right h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.voucher-right p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.voucher-timer {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 800;
    background: #fef2f2;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.voucher-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voucher-code {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
}

.voucher-code span {
    color: var(--secondary);
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 5px;
}

.voucher-btn {
    font-weight: 900;
    font-size: 0.85rem;
    background: none;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

/* Deal Sparkles */
.deal-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: floatAnim 3s infinite ease-in-out;
}
.sp-1 { top: 20%; left: 10%; }
.sp-2 { top: 15%; right: 12%; animation-delay: 0.5s; }
.sp-3 { bottom: 20%; left: 15%; animation-delay: 1s; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(15deg); }
}

@media (max-width: 768px) {
    .menu-top-banner h1, .offers-top-banner h1 { font-size: 2rem; }
    .menu-top-banner, .offers-top-banner { padding: 4rem 5% 1.5rem; }
    .category-tabs-wrapper { padding: 0.2rem 5%; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 380px) {
    .menu-top-banner h1, .offers-top-banner h1 { font-size: 1.6rem; }
    .cat-btn { padding: 8px 16px; font-size: 0.8rem; }
}
/* ============ Layout Basics ============ */
.view-section {
    min-height: calc(100vh - 80px);
    width: 100%;
}

/* --- Categorized Menu Staggered Reveal --- */
.menu-category-section {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-category-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-category-title {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Baloo Bhai 2', cursive;
    color: var(--secondary);
    margin-bottom: 0.6rem; /* Reduced for tighter look */
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 5px;
}

.menu-grid-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .menu-grid-sub {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .menu-grid-sub {
        grid-template-columns: 1fr;
    }
}
    .admin-main {
        padding: 1.5rem;
    }
}

/* Wide Screen Optimizations */
@media (min-width: 1400px) {
    .container { max-width: 1400px; margin: 0 auto; }
}

/* Cart Bump Animation for Bottom Nav */
.cart-bump-animation {
    animation: cartBump 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-bump-animation i {
    color: var(--primary) !important;
}

.cart-bump-animation .cart-badge {
    transform: scale(1.5) !important;
}

@keyframes cartBump {
    0% { transform: scale(1); }
    30% { transform: scale(1.3) translateY(-10px); }
    50% { transform: scale(0.9) translateY(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner-premium {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 95%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 123, 0, 0.15);
    border-radius: 16px;
    padding: 0.6rem 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    visibility: hidden;
    display: none;
}

.cookie-banner-premium.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.4rem;
}

.cookie-text p {
    font-size: 0.7rem;
    color: #475569;
    line-height: 1.3;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.cookie-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
}

.cookie-btn.settings {
    background: #f1f5f9;
    color: #64748b;
}

@media (max-width: 768px) {
    .cookie-banner-premium {
        bottom: 110px;
        padding: 0.6rem 0.8rem;
        max-width: 90%;
    }
    .cookie-actions {
        gap: 5px;
    }
}

/* ============================================================
   DESIGN ENHANCEMENT BLOCK v2.0 — All 15 Design Improvements
   ============================================================ */

/* ─── 1. Back-to-Top Button ─── */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(232,106,0,0.35);
}
@media (min-width: 769px) {
    .back-to-top { bottom: 30px; right: 30px; }
}

/* ─── 2. Sticky Contact CTA Bar (Mobile) ─── */
.sticky-contact-bar {
    display: none;
    position: fixed;
    bottom: 75px; 
    left: 12px;
    right: 12px;
    z-index: 995;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sticky-contact-bar .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-height: 48px;
}

.sticky-contact-bar .sticky-btn.call {
    background: #1a1a1a;
    color: white;
}

.sticky-contact-bar .sticky-btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
}

@media (max-width: 768px) {
    .sticky-contact-bar {
        display: flex;
        gap: 8px;
        animation: stickySlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}

@keyframes stickySlideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Swipe Hint System */
.swipe-hint-v2 {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.swipe-icon-anim {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
}

.swipe-icon-anim i {
    animation: swipeMove 2s infinite ease-in-out;
}

@keyframes swipeMove {
    0% { transform: translateX(8px); opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateX(-8px); opacity: 0; }
}

@media (max-width: 768px) {
    .swipe-hint-v2 { display: flex; }
}


/* ─── 3. Food Badges System: Veg / Non-Veg / Spice / Bestseller ─── */
.food-badge-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.badge-veg {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1.5px solid #4CAF50;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    letter-spacing: 0.3px;
}
.badge-veg::before {
    content: '';
    width: 8px; height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}
.badge-nonveg {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFEBEE;
    color: #C62828;
    border: 1.5px solid #E74C3C;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    letter-spacing: 0.3px;
}
.badge-nonveg::before {
    content: '';
    width: 8px; height: 8px;
    background: #E74C3C;
    border-radius: 50%;
    display: inline-block;
}
.badge-bestseller {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFF8E1;
    color: #F57F17;
    border: 1.5px solid #F5A623;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
}
.badge-spice {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Absolute bestseller ribbon on card image */
.bestseller-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #F5A623, #D4A017);
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(212,160,23,0.35);
    animation: shimmer 3s infinite;
    letter-spacing: 0.5px;
}
@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 10px rgba(212,160,23,0.35); }
    50% { box-shadow: 0 4px 18px rgba(212,160,23,0.65); }
}

/* ─── 4. Enhanced Menu Cards ─── */
.menu-card {
    position: relative;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease !important;
}
.menu-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 24px 48px rgba(0,0,0,0.11) !important;
}
.menu-card:hover .menu-img {
    transform: scale(1.08) !important;
}
.menu-card-img-wrapper {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
}
.menu-item-name {
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    color: var(--secondary) !important;
}
.menu-item-desc {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}
.menu-item-price {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
}
.menu-item-price::before {
    content: '₹';
    font-size: 0.85em;
    font-weight: 600;
    opacity: 0.8;
}
.add-pill-btn {
    min-height: 36px !important;
    min-width: 36px !important;
    padding: 0.55rem 1.1rem !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(232,106,0,0.25) !important;
    transition: all 0.25s ease !important;
}
.add-pill-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 18px rgba(200,90,0,0.30) !important;
}
.add-pill-btn:active {
    transform: scale(0.95) !important;
}

/* ─── 5. Prep Time Meta Badge on Menu Cards ─── */
.menu-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

/* ─── 6. Improved Section Spacing / Dividers ─── */
.menu-highlights-section {
    padding: 3.5rem 5% !important;
    background: var(--background) !important;
}
.memories-section {
    padding: 4rem 5% !important;
    background: var(--surface) !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}
.trending-preview {
    padding: 3rem 5% !important;
    margin: 2rem 5% !important;
    border-radius: var(--radius-lg) !important;
    overflow: visible !important;
}
.features-ribbon {
    padding: 2rem 5% !important;
    margin-top: 2rem !important;
    gap: 1.2rem !important;
}

/* ─── 7. Section Heading Improvement ─── */
.header-text-content h2 {
    font-size: 2.4rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
    color: var(--secondary) !important;
}
.header-text-content p {
    font-size: 1rem !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
.section-header-improved {
    margin-bottom: 2.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}
.mh-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 480px) {
    .btn-view-action, .btn-viewall, .upload-btn, .promo-btn {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
        min-height: 40px !important;
    }
}

/* ─── 8. Enhanced Memory Cards ─── */
.memory-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    cursor: pointer;
}
.memory-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.16) !important;
    z-index: 5 !important;
}
.memory-card img {
    transition: transform 0.5s ease !important;
}
.memory-card:hover img {
    transform: scale(1.1) !important;
}
.memory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: white;
    padding: 30px 14px 12px;
    opacity: 0;
    transition: opacity 0.35s ease !important;
    font-size: 0.82rem;
    font-weight: 700;
}
.memory-card:hover .memory-overlay {
    opacity: 1 !important;
}
.memory-name {
    display: block;
    font-weight: 800;
    font-size: 0.88rem;
    margin-bottom: 2px;
}
.memory-ordered {
    display: block;
    font-size: 0.72rem;
    opacity: 0.85;
}
.collage-view {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 220px !important;
    gap: 14px !important;
}
@media (max-width: 768px) {
    .collage-view {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 180px !important;
        gap: 10px !important;
    }
}
@media (max-width: 480px) {
    .collage-view {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 150px !important;
        gap: 8px !important;
    }
}

/* ─── 9. Enhanced Offer Cards / Voucher Section ─── */
.premium-voucher-card {
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1.5px solid rgba(0,0,0,0.04) !important;
}
.premium-voucher-card:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1) !important;
}
.voucher-value {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
}
.voucher-left {
    min-width: 110px !important;
}
.voucher-right h3 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
    color: var(--secondary) !important;
}
.voucher-right p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
}
.voucher-timer {
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
}

/* ─── 10. Mobile Typography Improvements ─── */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3.2rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.08 !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    .header-text-content h2 {
        font-size: 1.8rem !important;
    }
    .trending-preview, .menu-highlights-section {
        padding: 2.5rem 5% !important;
        margin: 1rem 3% !important;
        border-radius: 20px !important;
    }
}
@media (max-width: 480px) {
    .hero-main-title { font-size: 2.6rem !important; }
    .header-text-content h2 { 
        font-size: 1.2rem !important; 
        white-space: nowrap !important;
        gap: 6px !important;
    }
    .header-text-content p {
        font-size: 0.8rem !important;
    }
    .menu-item-name { font-size: 0.9rem !important; }
    .menu-item-price { font-size: 1.05rem !important; }
    .hero-actions .btn {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        min-height: 48px !important;
    }
}

/* ─── 11. Skeleton Loading Screens ─── */
.skeleton {
    background: linear-gradient(90deg, #f0ece8 25%, #faf7f4 50%, #f0ece8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 12px;
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.skeleton-img {
    width: 100%;
    height: 140px;
    border-radius: 14px 14px 0 0;
}
.skeleton-line {
    height: 14px;
    margin: 10px 12px 6px;
    border-radius: 6px;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }

/* ─── 12. WhatsApp Button State Improvements ─── */
.btn[onclick*="whatsapp"], .btn[onclick*="wa.me"],
a[href*="whatsapp"], a[href*="wa.me"],
.whatsapp-checkout-btn, .share-wa-btn {
    background: #25D366 !important;
    border-color: #25D366 !important;
}
.whatsapp-checkout-btn {
    gap: 12px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    transition: all 0.25s ease !important;
}
.whatsapp-checkout-btn:hover {
    background: #1DA851 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(37,211,102,0.35) !important;
}

/* ─── 13. Navigation Underline Hover Animation ─── */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: left 0.3s ease, right 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
    left: 12px;
    right: 12px;
}

/* ─── 14. Btn Primary Global Improvements ─── */
.btn {
    min-height: 48px !important;
}
.btn:active {
    transform: scale(0.97) !important;
}

/* ─── 15. Spinner for WhatsApp Submission ─── */
.wa-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── Hero Section Mobile Responsive Fix ─── */
@media (max-width: 900px) {
    .hero {
        min-height: 100svh !important;
        padding-top: 80px !important;
        padding-bottom: 2rem !important;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: unset !important;
        padding-top: 70px !important;
    }
}

/* ─── Features Ribbon Improved Icons ─── */
.feature-item:nth-child(1) .f-icon { background: linear-gradient(135deg, #E86A00, #C85A00); }
.feature-item:nth-child(2) .f-icon { background: linear-gradient(135deg, #27AE60, #1B5E3B); }
.feature-item:nth-child(3) .f-icon { background: linear-gradient(135deg, #F5A623, #C8860A); }

/* ─── Section Background Dividers ─── */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
    margin: 0 5%;
}

/* ─── Offer Countdown Timer Enhancement ─── */
.live-timer {
    font-family: 'Outfit', monospace !important;
    font-weight: 900 !important;
    color: #E74C3C !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
}

/* ─── Form Field Improvements ─── */
.form-group label {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    margin-bottom: 6px !important;
    display: block !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;
    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: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(232,106,0,0.12) !important;
    background: white !important;
    outline: none !important;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

/* M-02 FIX: Prevent iOS auto-zoom on form fields */
@media (max-width: 768px) {
    .form-group input, 
    .form-group select, 
    .form-group textarea,
    #spinForm input {
        font-size: 16px !important;
    }
}

/* ================= MENU HIGHLIGHTS CAROUSEL ================= */
.carousel-outer-wrap {
    position: relative;
    padding: 10px 0 20px;
    margin: 0 -15px; /* Negative margin to bleed on mobile */
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    padding: 10px 15px;
    cursor: grab;
    overflow: hidden;
}

.carousel-container:active {
    cursor: grabbing;
}

.menu-highlights-carousel {
    display: flex;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    min-height: 250px;
}

.menu-highlights-carousel .menu-card {
    flex: 0 0 calc(100% - 30px);
    min-width: calc(100% - 30px);
    max-width: 320px;
    height: auto;
}

@media (min-width: 768px) {
    .menu-highlights-carousel .menu-card {
        flex: 0 0 calc(33.333% - 15px);
    }
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #eee;
    background: white;
    color: var(--secondary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,107,0,0.3);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f8fafc;
}

.carousel-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

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

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

.carousel-counter {
    font-size: 0.85rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
}

.swipe-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

@media (min-width: 900px) {
    .carousel-outer-wrap {
        margin: 0;
    }
}
.hsc-swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hsc-swipe-hint {
        display: flex;
    }
}

/* Design Enhancements */
p { line-height: 1.8 !important; }

/* Cream Sections Texture */
.menu-highlights-section, .memories-section, .features-section {
    background-image: radial-gradient(rgba(255, 123, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Skeleton loader */
.skeleton-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    color: transparent;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Category label */
.memory-category-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* View All button padding */
.btn-view-action {
    padding: 12px 28px !important;
    border-radius: 50px !important;
}

/* Grid transition */
.memories-grid {
    transition: all 0.4s ease-in-out;
}

/* ============ CONTACT SECTION RESPONSIVENESS ============ */
.primary-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}

.secondary-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}

@media (max-width: 768px) {
    .primary-contact-grid, .secondary-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-2);
    }
    
    .p-contact-card, .info-card-premium {
        padding: var(--sp-3);
    }
}

.p-card-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* Tablet & iPad Optimization */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero h1 { font-size: 3.8rem; }
    .hero-container { gap: 2rem; }
    .section-header-improved h2 { font-size: 2.2rem; }
    .btn { min-height: 48px; padding: 12px 24px; }
}

/* Desktop Centering & Horizontal Scroll Fixes */
.navbar, .hero-container, .menu-container, .offers-top-banner, .memories-section, .contact-section {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ultra-Wide Screen Optimizations */
@media (min-width: 1600px) {
    .menu-grid-sub {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Final Mobile Polish to prevent ANY horizontal scroll and fix layout */
@media (max-width: 1024px) {
    html, body {
        max-width: 100vw !important;
        overflow-x: clip !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .navbar {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .view-section {
        padding-top: 72px !important;
    }
    .category-tabs-wrapper {
        display: block !important;
    }

    .category-tabs {
        padding: 10px 5% !important;
    }

    /* Menu Footer Nav */
    .menu-footer-nav {
        margin-top: 3rem;
        padding: 3rem 5% 120px; /* Extra bottom padding for bottom nav clearance */
        background: white;
        text-align: center;
        border-top: 2px dashed rgba(232, 106, 0, 0.15);
        border-radius: 40px 40px 0 0;
    }

    .m-footer-tag {
        font-size: 0.85rem;
        color: var(--primary);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .m-footer-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-family: 'Baloo Bhai 2', cursive;
    }

    .category-footer-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Increased gap */
    }

    .category-footer-tabs .cat-btn {
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 0.85rem;
        background: #f8fafc;
        flex: 0 1 calc(50% - 15px); /* Ensure 2 items per row on mobile */
        min-width: 120px;
    }

    /* Floating Back to Top */
    /* Floating Back to Top: Premium Modern+ Design */
    .back-to-top-btn {
        position: fixed;
        bottom: 110px; /* Positioned safely above the floating bottom nav */
        right: 20px;   /* Standard right-side placement */
        width: 46px;
        height: 46px;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        color: #E86A00 !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        z-index: 10001; /* Ensure it's above bottom-nav (10000) */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

    .back-to-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top-btn:hover {
        background: #E86A00 !important;
        color: white !important;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(232, 106, 0, 0.3);
    }
}


/* ═══════════════════════════════════════════════
   MOBILE FIX PATCH — Applied fixes for all pages
   ═══════════════════════════════════════════════ */

/* ── Hero Carousel Nav Arrows (were unstyled) ── */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.nav-arrow-outer {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #E86A00;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-arrow-outer.prev { left: -18px; }
.nav-arrow-outer.next { right: -18px; }

.nav-arrow-outer:hover {
    background: #E86A00;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 480px) {
    .nav-arrow-outer { width: 34px; height: 34px; font-size: 0.85rem; }
    .nav-arrow-outer.prev { left: -10px; }
    .nav-arrow-outer.next { right: -10px; }
}

/* ── Bottom Nav: OLD PATCH REMOVED (Conflicted with Floating Glass Design) ── */
/* The Floating Glass Nav is now handled in the critical CSS block of index.html */

/* ── Spin Page: Prevent wheel overflow on very small screens ── */
@media (max-width: 380px) {
    #wheel {
        width: clamp(200px, 88vw, 260px) !important;
        height: clamp(200px, 88vw, 260px) !important;
    }

    .spin-center-btn {
        width: 65px !important;
        height: 65px !important;
    }

    .wheel-outer-rim {
        padding: 14px !important;
    }

    #spin-section .menu-container {
        padding: 70px 3% 2rem !important;
    }
}

/* ── Offers Page: Voucher card mobile responsiveness ── */
@media (max-width: 480px) {
    .offers-list {
        padding: 1rem 3% 5rem !important;
        gap: 1rem !important;
    }

    .premium-voucher-card {
        flex-direction: column !important;
    }

    .voucher-left {
        width: 100% !important;
        flex-direction: row !important;
        padding: 14px 18px !important;
        border-right: none !important;
        border-bottom: 2px dashed rgba(255,255,255,0.3) !important;
        gap: 12px !important;
    }

    .voucher-left::before, .voucher-left::after {
        display: none !important;
    }

    .voucher-right {
        padding: 1rem !important;
    }

    .voucher-footer {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
}

    /* Menu Page: Search bar full-width on mobile */
    .search-bar-premium {
        max-width: 100% !important;
        margin: 0.5rem 0 0 !important; /* Significantly reduced from 1.2rem */
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1.5px solid rgba(232, 106, 0, 0.15) !important;
        border-radius: 16px !important;
        padding: 0.7rem 1.2rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        transition: all 0.3s ease !important;
    }

    .search-bar-premium:focus-within {
        border-color: #E86A00 !important;
        box-shadow: 0 0 0 4px rgba(232, 106, 0, 0.1) !important;
        transform: translateY(-2px) !important;
    }

    .search-bar-premium i {
        color: #E86A00 !important;
        font-size: 1.1rem !important;
    }

    .search-bar-premium input {
        background: transparent !important;
        border: none !important;
        color: #1a1a1a !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        outline: none !important;
    }

    .menu-top-banner, .offers-top-banner {
        padding: 3.8rem 6% 1.2rem !important; /* Compacted from 4.5rem */
        background: linear-gradient(180deg, #FFF9F2 0%, #FFFFFF 100%) !important;
        text-align: left !important;
    }

    .menu-top-banner h1, .offers-top-banner h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        color: #1a1a1a !important;
        margin-bottom: 0.5rem !important;
    }

    .menu-top-tag, .offers-top-tag {
        font-size: 0.7rem !important;
        font-weight: 800 !important;
        color: #E86A00 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        margin-bottom: 0.5rem !important;
        background: rgba(232, 106, 0, 0.08) !important;
        padding: 3px 10px !important;
        border-radius: 50px !important;
        display: inline-block !important;
    }

    .sticky-menu-controls {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 72px !important; /* Adjusted to clear the modern navbar height */
        z-index: 100 !important; /* Below dropdowns/modals but above grid */
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        padding: 8px 0 !important;
        border-bottom: 1.5px solid rgba(232, 106, 0, 0.1) !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.06) !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .sticky-menu-controls.nav-hidden {
        top: 0 !important;
    }

    .category-tabs-wrapper {
        display: block !important;
        visibility: visible !important;
    }

    .category-tabs {
        padding: 5px 4% 10px !important;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .cat-btn {
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
    }
}

/* ── Home Page: Fix hero-stats bar on mobile ── */
@media (max-width: 768px) {
    .hero-stats {
        display: flex !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        flex-wrap: wrap !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }

    .hero-actions .btn {
        min-height: 50px !important;
        font-size: 1rem !important;
        padding: 0.9rem 1.8rem !important;
    }
}

/* ── General: Prevent horizontal overflow from any element ── */
.view-section {
    overflow-x: clip !important;
    max-width: 100vw !important;
}

#menu-section {
    overflow: visible !important; /* Critical for position: sticky to work */
}

/* ── Menu: No Results State Styling ── */
.no-results-state {
    text-align: center !important;
    padding: 4rem 1rem !important;
    color: #64748b !important;
    width: 100% !important;
}

.no-results-icon {
    font-size: 3.5rem !important;
    margin-bottom: 1.2rem !important;
    opacity: 0.8 !important;
}

.no-results-state h3 {
    font-size: 1.4rem !important;
    color: #1a1a1a !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Baloo Bhai 2', cursive !important;
}

.clear-search-btn {
    margin-top: 1.5rem !important;
    background: #E86A00 !important;
    color: white !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(232, 106, 0, 0.2) !important;
}

/* ── Quick View Modal: Ensure it's above everything ── */
.qv-modal-overlay {
    display: none; /* Controlled by JS */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 20000 !important;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qv-modal-overlay.active {
    opacity: 1;
}

/* ── Skeleton Loading Polish ── */
.skeleton-card {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite !important;
    border-radius: 16px !important;
    height: 180px !important;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Touch targets: minimum 44px for accessibility ── */
@media (max-width: 768px) {
    .bottom-nav-item {
        min-height: 44px !important;
        padding: 6px 2px !important;
    }

    .cat-btn {
        min-height: 40px !important;
    }

    .hsc-cart-btn, .combo-cart-btn {
        min-height: 48px !important;
    }
}
