@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #f4b400;
    --primary-hover: #e0a300;
    --secondary-color: #cb202d;
    --secondary-hover: #b01b26;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1ebd5a;

    --bg-color: #0d0d0d;
    --bg-light: #181818;
    --bg-dark: #000000;

    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-light: #f1f1f1;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-serif-script: 'Playfair Display', serif;
    --font-cursive: 'Great Vibes', cursive;
    --amber-gold: #f4b400;
    --amber-glow: rgba(244, 180, 0, 0.4);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.9);

    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.py-5 {
    padding: 4rem 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header {
    margin-bottom: 30px;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0 auto 2rem auto;
}

.divider.left {
    margin-left: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #0d0d0d;
    font-weight: 800;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #0d0d0d;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    height: 40px;
    /* Do NOT apply filters per user instructions */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 8px 16px !important;
    border-radius: 50px;
    border: 1px solid #ebebeb;
}

.cart-link::after {
    display: none;
    /* remove hover line */
}

.cart-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

#announcement {
    background: var(--bg-light);
    padding: 30px 0;
    text-align: center;
}

.announcement-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #cb202d;
}

.announcement-img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: radial-gradient(circle at 70% 50%, rgba(30, 25, 15, 0.85) 0%, rgba(13, 13, 15, 0.95) 70%), url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.5) 0%, rgba(13, 13, 15, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease forwards;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 6rem 0;
    background: var(--bg-color);
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #0d0d0d;
    border-color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

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

/* Glassmorphic Dark Food Cards (Matching Reference UI) */
.menu-card {
    background: rgba(26, 22, 18, 0.75) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    animation: fadeInSlide 0.4s ease forwards;
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.25);
}

.menu-card .menu-details {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.menu-item-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f59e0b;
    display: inline-block;
    margin-bottom: 6px;
}

.menu-card .menu-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 16px 16px;
}

.menu-card .menu-card-actions {
    margin-top: auto;
    padding-top: 10px;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-mobile-text {
    display: none;
}
.btn-desktop-text {
    display: inline;
}

/* Hide mobile overlay buttons on desktop */
@media (min-width: 769px) {
    .mob-add-btn,
    .mob-qty-ctrl {
        display: none !important;
    }
}

/* =========================================================
   COMPACT SWIGGY / ZOMATO MOBILE MENU LAYOUT (< 768px)
   Enables 2 to 3 items comfortably visible on screen at once
   ========================================================= */
@media (max-width: 768px) {
    .menu-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        padding: 0 !important;
    }

    .menu-card {
        display: grid !important;
        grid-template-columns: 1fr 115px !important;
        grid-template-rows: auto !important;
        grid-template-areas: "details image" !important;
        align-items: start !important;
        padding: 14px !important;
        border-radius: 18px !important;
        gap: 8px 12px !important;
        min-height: 120px !important;
        height: auto !important;
        background: rgba(24, 20, 16, 0.88) !important;
        backdrop-filter: blur(14px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45) !important;
    }

    .menu-card:hover {
        transform: none !important;
    }

    .menu-card .menu-details {
        grid-area: details !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .menu-card .menu-meta-top {
        margin-bottom: 2px !important;
    }

    .menu-card .food-tag-container {
        gap: 6px !important;
        margin-bottom: 4px !important;
    }

    .menu-card-title {
        font-size: 1.02rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin-bottom: 2px !important;
        line-height: 1.25 !important;
    }

    .menu-price-row {
        margin-bottom: 4px !important;
    }

    .menu-item-price {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        color: #f59e0b !important;
        margin-bottom: 2px !important;
    }

    .menu-desc {
        font-size: 0.76rem !important;
        color: #94a3b8 !important;
        line-height: 1.35 !important;
        margin-bottom: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: auto !important;
    }

    .menu-card .menu-img-container {
        grid-area: image !important;
        width: 115px !important;
        min-width: 115px !important;
        height: 105px !important;
        border-radius: 14px !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .menu-card .menu-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 14px !important;
    }

    /* Action area: hidden as grid area, overlaid inside image container instead */
    .menu-card .menu-card-actions {
        display: none !important;
    }

    /* Image container is relative so ADD+ can sit at bottom-center */
    .menu-card .menu-img-container {
        position: relative !important;
    }

    /* ADD+ button overlaid at bottom-center of image */
    .menu-card .menu-img-container .mob-add-btn,
    .menu-card .menu-img-container .mob-qty-ctrl {
        position: absolute !important;
        bottom: 6px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }

    .mob-add-btn {
        width: 84px !important;
        height: 30px !important;
        border-radius: 8px !important;
        background: #16a34a !important;
        color: #fff !important;
        border: 1.5px solid #22c55e !important;
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.7) !important;
        white-space: nowrap !important;
    }

    .mob-add-btn.hidden {
        display: none !important;
    }

    .mob-qty-ctrl {
        width: 84px !important;
        height: 30px !important;
        border-radius: 8px !important;
        background: #18181b !important;
        border: 1.5px solid #22c55e !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.7) !important;
        display: none !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 2px 3px !important;
    }

    .mob-qty-ctrl.active {
        display: flex !important;
    }

    .mob-qty-ctrl .mq-minus,
    .mob-qty-ctrl .mq-plus {
        width: 22px !important;
        height: 22px !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
        border: none !important;
        border-radius: 5px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }

    .mob-qty-ctrl .mq-minus {
        background: rgba(255,255,255,0.08) !important;
        color: #ef4444 !important;
    }

    .mob-qty-ctrl .mq-plus {
        background: #22c55e !important;
        color: #000 !important;
    }

    .mob-qty-ctrl .mq-val {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        color: #fff !important;
        min-width: 16px !important;
        text-align: center !important;
    }

    /* Desktop half-full hidden on mobile — replaced by mob-add-btn (variant sheet) */
    .half-full-wrapper { display: none !important; }

    .btn-desktop-text { display: none !important; }
    .btn-mobile-text  { display: inline !important; }

    /* ---- Half/Full Variant Bottom Sheet (mobile only) ---- */
    #hf-variant-sheet {
        position: fixed !important;
        bottom: 0 !important; left: 0 !important; right: 0 !important;
        background: #18181b !important;
        border-top: 1.5px solid rgba(255,255,255,0.12) !important;
        border-radius: 22px 22px 0 0 !important;
        padding: 20px 20px 32px !important;
        z-index: 999999 !important;
        box-shadow: 0 -16px 40px rgba(0,0,0,0.8) !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(.175,.885,.32,1.1) !important;
    }
    #hf-variant-sheet.open {
        transform: translateY(0) !important;
    }
    #hf-sheet-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999998;
    }
    #hf-sheet-overlay.open { display: block; }
    .hf-sheet-handle {
        width: 40px; height: 4px;
        background: rgba(255,255,255,0.2);
        border-radius: 4px;
        margin: 0 auto 16px;
    }
    .hf-sheet-title {
        font-size: 1rem; font-weight: 800; color: #fff;
        margin-bottom: 4px; text-align: center;
    }
    .hf-sheet-subtitle {
        font-size: 0.78rem; color: #64748b;
        text-align: center; margin-bottom: 16px;
    }
    .hf-sheet-options {
        display: flex; gap: 10px; margin-bottom: 4px;
    }
    .hf-sheet-opt {
        flex: 1; border: 1.5px solid rgba(255,255,255,0.12);
        border-radius: 14px; padding: 14px 10px;
        background: rgba(255,255,255,0.04);
        cursor: pointer; text-align: center;
        transition: all 0.18s;
    }
    .hf-sheet-opt:active { transform: scale(0.97); }
    .hf-sheet-opt-label {
        font-size: 0.72rem; font-weight: 700; color: #94a3b8;
        text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
    }
    .hf-sheet-opt-price {
        font-size: 1.3rem; font-weight: 900; color: #f59e0b; margin-bottom: 8px;
    }
    .hf-sheet-opt-qty {
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .hf-sheet-opt-qty .sq-btn {
        width: 28px; height: 28px; border-radius: 8px; border: none;
        font-size: 1rem; font-weight: 900; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
    }
    .sq-minus { background: rgba(255,255,255,0.1); color: #ef4444; }
    .sq-plus  { background: #22c55e; color: #000; }
    .sq-val   { font-size: 1rem; font-weight: 800; color: #fff; min-width: 20px; text-align: center; }
}

/* FSSAI Veg / Non-Veg Standard Dot Icons */
.fssai-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.fssai-icon.veg-icon {
    border: 2px solid #22c55e !important;
}

.fssai-icon.veg-icon .fssai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.fssai-icon.nonveg-icon {
    border: 2px solid #ef4444 !important;
}

.fssai-icon.nonveg-icon .fssai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

/* Animated Food Loader & Orbit Animations */
.food-loader-wrapper {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
    width: 100%;
}

.food-icons-orbit {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.food-center-glow {
    font-size: 2.6rem;
    animation: pulseGlow 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.8));
    user-select: none;
}

.food-icon-item {
    position: absolute;
    font-size: 1.8rem;
    user-select: none;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.food-icon-item.item-1 { animation: orbitSpin1 2.8s infinite ease-in-out; }
.food-icon-item.item-2 { animation: orbitSpin2 2.8s infinite ease-in-out; }
.food-icon-item.item-3 { animation: orbitSpin3 2.8s infinite ease-in-out; }
.food-icon-item.item-4 { animation: orbitSpin4 2.8s infinite ease-in-out; }

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(234,179,8,0.5)); }
    50% { transform: scale(1.25); filter: drop-shadow(0 0 25px rgba(239,68,68,0.9)); }
}

@keyframes orbitSpin1 {
    0% { transform: translate(-45px, -45px) scale(0.9) rotate(0deg); }
    50% { transform: translate(45px, 45px) scale(1.15) rotate(180deg); }
    100% { transform: translate(-45px, -45px) scale(0.9) rotate(360deg); }
}

@keyframes orbitSpin2 {
    0% { transform: translate(45px, -45px) scale(1.15) rotate(0deg); }
    50% { transform: translate(-45px, 45px) scale(0.9) rotate(180deg); }
    100% { transform: translate(45px, -45px) scale(1.15) rotate(360deg); }
}

@keyframes orbitSpin3 {
    0% { transform: translate(-45px, 45px) scale(1) rotate(0deg); }
    50% { transform: translate(45px, -45px) scale(1.2) rotate(180deg); }
    100% { transform: translate(-45px, 45px) scale(1) rotate(360deg); }
}

@keyframes orbitSpin4 {
    0% { transform: translate(45px, 45px) scale(1.2) rotate(0deg); }
    50% { transform: translate(-45px, -45px) scale(0.85) rotate(180deg); }
    100% { transform: translate(45px, 45px) scale(1.2) rotate(360deg); }
}

.loader-text-glow {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f3f4f6;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(234, 179, 8, 0.5);
    animation: textFadePulse 1.8s infinite ease-in-out;
}

@keyframes textFadePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Glass Badges & Tag Spacing System */
.food-tag-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

.food-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 3px 8px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    letter-spacing: 0.4px !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
    line-height: 1.2 !important;
}

.food-tag.spicy-tag {
    background: rgba(239, 68, 68, 0.18) !important;
    color: #f87171 !important;
    border: 1px solid rgba(239, 68, 68, 0.35) !important;
}

.food-tag.out-of-stock-tag {
    background: rgba(148, 163, 184, 0.2) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(148, 163, 184, 0.35) !important;
}

.menu-card-title {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
}

/* Add to Cart Orange Pill & Stepper Buttons */
.add-to-cart-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #0d0d0d !important;
    font-weight: 800 !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35) !important;
    transition: all 0.25s ease !important;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5) !important;
}

/* Category Filter Pills (Glassmorphic) */
.filter-btn {
    background: rgba(30, 24, 20, 0.7);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    border-radius: 16px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #000000 !important;
    border-color: #f59e0b !important;
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.4);
    transform: translateY(-3px);
}

/* Glassmorphic Cart Drawer & Panel System (Matching Reference UI) */
.cart-drawer { position: fixed; top: 0; right: 0; width: 100%; height: 100%; z-index: 9999; pointer-events: none; display: flex; justify-content: flex-end; }
.cart-drawer.open { pointer-events: auto; }
.cart-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.75); 
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    opacity: 0; 
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1); 
    cursor: pointer; 
}
.cart-drawer.open .cart-overlay { opacity: 1; }
.cart-panel { 
    position: relative; 
    width: 100%; 
    max-width: 440px; 
    background: rgba(18, 15, 13, 0.92) !important;
    backdrop-filter: blur(28px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
    border-left: 1.5px solid rgba(245, 158, 11, 0.25) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.15) !important;
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    color: #ffffff;
}

.cart-header { 
    padding: 1.6rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1.5px solid rgba(255,255,255,0.1); 
    background: rgba(255, 255, 255, 0.03);
}

.cart-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 14px; }
.close-btn { background: none; border: none; font-size: 2rem; cursor: pointer; color: #94a3b8; transition: color 0.2s;}
.close-btn:hover { color: #f59e0b; }

.cart-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(245, 158, 11, 0.3);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--amber-gold);
    font-weight: 800;
    font-size: 0.95rem;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 30px;
    padding: 2px 6px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--amber-gold);
    font-weight: 800;
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    color: #ffffff;
}

.qty-val {
    font-weight: 800;
    color: #ffffff;
    font-size: 0.95rem;
    min-width: 22px;
    text-align: center;
}

.remove-btn {
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: transform 0.2s ease;
}

.remove-btn:hover {
    transform: scale(1.15);
}

.cart-summary {
    margin-top: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.menu-card-title {
font-size: 1.25rem;
margin: 0;
min-height: 48px;
text-transform: capitalize;
}

.menu-card-content {
display: flex !important;
flex-direction: column !important;
flex-grow: 1 !important;
}

.button-wrapper {
margin-top: auto !important;
}

.add-to-cart {
width: 100%;
text-align: center;
}

.variant-buttons {
display: flex;
width: 100%;
margin-top: auto;
border: 1px solid #facc15;
border-radius: 999px;
overflow: hidden;
}

.variant-buttons button {
flex: 1;
background: transparent;
border: none !important;
color: #facc15;
padding: 12px 0;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0 !important;
}

.variant-buttons > div:first-child {
border-right: 1px solid #facc15;
}


.menu-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.menu-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.item-desc {
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}


.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    color: #0d0d0d;
}


/* Half/Full Sync UI */
.half-full-wrapper {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.half-full-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.half-full-box:hover {
    border-color: var(--primary-color);
    background: rgba(250, 204, 21, 0.05);
}

.hf-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hf-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 2px 0 10px 0;
}

.hf-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #000;
    border-radius: 8px;
    padding: 3px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.hf-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
}

.hf-btn:hover {
    background: var(--primary-color);
    color: #0d0d0d;
}

.hf-btn.plus {
    background: var(--primary-color);
    color: #000;
}

.hf-value {
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
}

/* Toast Notification (Top Sleek Dropdown, No Bottom Collisions) */
#cart-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: #18181b;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 10001;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    max-width: 90vw;
}

#cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

#cart-toast.hide-toast {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0 !important;
    visibility: hidden !important;
}

#cart-toast i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   Instagram Reels Section
   ========================================================================== */
.instagram-section {
    padding: 5rem 0;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.reel-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    display: block;
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 600;
}

.reel-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.reel-card:hover img {
    transform: scale(1.05);
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

/* ==========================================================================
   Connect With Us Section
   ========================================================================== */
.connect-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-card.instagram:hover {
    background: #E1306C;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.social-card.facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-card.whatsapp:hover {
    background: #25D366;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Cart Section
   ========================================================================== */
.cart-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

/* Cart Drawer Additions */
.cart-drawer { position: fixed; top: 0; right: 0; width: 100%; height: 100%; z-index: 2000; pointer-events: none; display: flex; justify-content: flex-end; }
.cart-drawer.open { pointer-events: auto; }
.cart-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.3s; cursor: pointer; }
.cart-drawer.open .cart-overlay { opacity: 1; }
.cart-panel { position: relative; width: 100%; max-width: 420px; background: var(--bg-light); height: 100%; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; }
.close-btn { background: none; border: none; font-size: 2rem; cursor: pointer; color: #888; transition: color 0.2s;}
.close-btn:hover { color: #000; }

@keyframes pulseCart {
    0% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.02); box-shadow: var(--shadow-lg); }
    100% { transform: scale(1); box-shadow: var(--shadow-md); }
}

.pulse-animation {
    animation: pulseCart 0.5s ease;
}

.cart-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-primary);
}

.qty-btn:hover {
    background: rgba(255,255,255,0.1);
}

.qty-val {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed rgba(255,255,255,0.2);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-style: italic;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Order Type Checkbox Styling */
.order-type-label {
    transition: all 0.3s ease;
}
.order-type-label:has(input:checked) {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #0d0d0d !important;
    font-weight: bold;
}

/* ==========================================================================
   Reach Us Section
   ========================================================================== */
.reach-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(247, 162, 46, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-block h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--text-secondary);
}

.reach-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    /* No filters per user rules */
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-brand p {
    color: #999;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #999;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* ==========================================================================
   Catering & Meal Services Cards (Centered Layout)
   ========================================================================== */
.catering-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 24px 20px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
    cursor: pointer;
}

.catering-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
}

.catering-card .menu-details {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
}

.catering-card .menu-title {
    text-align: center !important;
    width: 100% !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.catering-card .menu-desc {
    text-align: center !important;
    width: 100% !important;
    font-size: 0.9rem !important;
    color: #9ca3af !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
}

.catering-card .btn-outline {
    margin: 0 auto !important;
    max-width: 200px !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
}

#filter-fab {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    background: var(--primary-color, #f4b400) !important;
    color: #0d0d0d !important;
}

#filter-fab.visible {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.2s ease;
}

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

.fab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

.tooltip-container .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ==========================================================================
   Payment Modal
   ========================================================================== */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.payment-modal.show {
    display: flex;
    opacity: 1;
}
.payment-modal-content {
    background-color: var(--bg-light);
    margin: auto;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.payment-modal.show .payment-modal-content {
    transform: translateY(0);
}
.payment-step {
    animation: fadeInSlide 0.3s ease forwards;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .reach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111215 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        flex-direction: column;
        padding: 18px 20px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        z-index: 10000;
        gap: 12px;
        text-align: center;
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-toggle.hamburger {
        display: block !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .fab-container {
        bottom: 16px !important;
        right: 10px !important;
        gap: 8px !important;
        z-index: 99 !important;
    }

    .fab-container .cart-fab {
        display: none !important;
    }

    .fab-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.05rem !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.6) !important;
    }

    .fab-btn .fab-badge, #fab-cart-badge {
        font-size: 0.68rem !important;
        width: 18px !important;
        height: 18px !important;
        top: -4px !important;
        right: -4px !important;
    }
}

@media (max-width: 768px) {
    #announcement {
        overflow: hidden;
    }

    #announcement-carousel {
        display: flex;
        width: 100%;
    }

    .announcement-slide {
        min-width: 100%;
        flex-shrink: 0;
    }

    .announcement-img, .announcement-slide img {
        width: 100%;
        height: auto !important;
        display: block;
        object-fit: cover;
    }
}

/* ==========================================================================
   Navigation Drawers
   ========================================================================== */
.nav-get-deals-btn {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    background: rgba(244, 180, 0, 0.1);
    padding: 8px 15px !important;
    border-radius: 8px;
    animation: getDealsPulse 2s infinite;
}

.nav-get-deals-btn:hover {
    background: var(--primary-color);
    color: #0d0d0d !important;
    animation: none;
}

@keyframes getDealsPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(244, 180, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 180, 0, 0);
    }
}

.nav-bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.nav-bottom-sheet.open {
    pointer-events: auto;
}

.nav-bottom-sheet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-bottom-sheet.open .nav-bottom-sheet-overlay {
    opacity: 1;
}

.nav-bottom-sheet-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--bg-light);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

.nav-bottom-sheet.open .nav-bottom-sheet-content {
    transform: translateY(0);
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.sheet-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.close-sheet-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.close-sheet-btn:hover {
    color: white;
}

.sheet-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sheet-card-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.sheet-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.sheet-card-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.sheet-card-info {
    flex: 1;
}

.sheet-card-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.sheet-card-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sheet-card-btn i.fa-arrow-right {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.sheet-card-btn:hover i.fa-arrow-right {
    color: var(--primary-color);
}

/* Instagram Badges */
.reel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.reel-badge.popular {
    background: linear-gradient(to right, #F09819, #FF512F);
}

.reel-badge.loved {
    background: #E1306C;
}

/* ==========================================================================
   Membership Plans & Additional Sections
   ========================================================================== */
.plan-toggle {
    display: inline-flex;
    background: #000;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-toggle .toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-toggle .toggle-btn.active {
    background: var(--primary-color);
    color: #000;
}

.plan-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.1);
    transform: translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L61 35 L98 35 L68 57 L79 91 L50 70 L21 91 L32 57 L2 35 L39 35 Z" fill="%23f4b400"/></svg>') no-repeat center center;
    background-size: contain;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
    transform: rotate(-15deg);
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    margin-top: 4px;
}

.faq-item {
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color) !important;
}

/* ==========================================================================
   Luxury Fine-Dining Theme Extensions (Flavoro Inspired)
   ========================================================================== */
.cursive-tagline {
    font-family: var(--font-cursive);
    font-size: 2.4rem;
    color: var(--amber-gold);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(244, 180, 0, 0.3);
}

.luxury-heading {
    font-family: var(--font-serif-script);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 16px;
}

.luxury-heading span {
    color: var(--amber-gold);
    font-style: italic;
}

/* Hero Luxury Grid */
.hero-luxury-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    padding: 50px 0 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-luxury-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-food-presentation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-food-plate {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid rgba(244, 180, 0, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 45px var(--amber-glow);
    animation: floatSlow 4s infinite ease-in-out;
    background: rgba(13, 13, 15, 0.95);
    padding: 10px;
}

.floating-food-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 13, 13, 0.92);
    border: 1.5px solid var(--amber-gold);
    border-radius: 50%;
    width: 95px;
    height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--amber-gold);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    animation: pulseGlow 2s infinite ease-in-out;
}

.floating-food-badge i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

/* Trust Badges Bar */
.trust-badges-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .trust-badges-bar {
        justify-content: center;
    }
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.trust-badge-item i {
    font-size: 1.2rem;
    color: var(--amber-gold);
}

.trust-badge-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* Brush Section Divider */
.brush-divider {
    width: 100%;
    height: 30px;
    background-image: repeating-linear-gradient(45deg, rgba(244, 180, 0, 0.15) 0, rgba(244, 180, 0, 0.15) 10px, transparent 0, transparent 20px);
    opacity: 0.45;
    margin: 35px 0;
}

/* Luxury About Section Grid (Black + Warm Cream Theme) */
#about {
    background: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    padding: 70px 0;
}

#about .cursive-tagline {
    color: var(--amber-gold) !important;
}

#about .luxury-heading {
    color: #ffffff !important;
}

#about .luxury-heading span {
    color: var(--amber-gold) !important;
}

.about-luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
}

@media (max-width: 992px) {
    .about-luxury-grid {
        grid-template-columns: 1fr;
    }
}

.about-card-story {
    background: rgba(20, 20, 24, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff !important;
    border-radius: 22px;
    padding: 34px 28px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(249, 115, 22, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-card-story .cursive-subtitle {
    font-family: var(--font-cursive);
    font-size: 2.2rem;
    color: #f97316 !important;
    margin-bottom: 4px;
}

.about-card-story h2 {
    font-family: var(--font-serif-script);
    font-size: 1.95rem;
    color: #ffffff !important;
    margin-bottom: 14px;
    font-weight: 700;
}

.about-card-story p {
    color: #cbd5e1 !important;
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.about-ambience-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(249, 115, 22, 0.08);
    background: #18181b;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.about-ambience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ambience-stat-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.92);
    border: 1.5px solid var(--amber-gold);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.ambience-stat-badge .stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--amber-gold);
}

.ambience-stat-badge .stat-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.25;
}

/* Feature 4-Grid Card (Luxury Dark Glass Theme) */
.about-features-4grid {
    background: rgba(20, 20, 24, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff !important;
    border-radius: 22px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(249, 115, 22, 0.08);
}

.feature-box-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-box-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.feature-box-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.feature-box-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.feature-box-item p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.3;
}

/* Party WhatsApp Callout Banner (Black & Gold Glassmorphism) */
.reserve-banner-card {
    background: linear-gradient(135deg, rgba(26, 22, 10, 0.95), rgba(13, 13, 15, 0.98)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border: 1.5px solid rgba(244, 180, 0, 0.4);
    border-radius: 22px;
    padding: 32px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .reserve-banner-card {
        flex-direction: column;
        text-align: center;
    }
}

.reserve-info h3 {
    font-family: var(--font-serif-script);
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.reserve-info p {
    color: var(--amber-gold);
    font-family: var(--font-cursive);
    font-size: 1.4rem;
}

/* Clean Spicy Chilli Icon Only Badge (No Text!) */
.spicy-chilli-badge {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 1px;
    vertical-align: middle;
}

/* ==========================================================================
   GLASSMORPHISM CART EXPERIMENTAL UI (DESKTOP MODAL & MOBILE DRAWER)
   ========================================================================== */

.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer.open {
    pointer-events: auto;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 10001;
}

.cart-drawer.open .cart-overlay {
    opacity: 1;
}

.cart-panel {
    position: relative;
    z-index: 10002;
    background: rgba(18, 18, 22, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(249, 115, 22, 0.15);
    display: flex;
    flex-direction: column;
    color: #ffffff;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    overflow: hidden;
}

/* Desktop Modal View (min-width: 769px) */
@media (min-width: 769px) {
    .cart-panel {
        width: 520px;
        max-width: 90vw;
        max-height: 88vh;
        border-radius: 24px;
        transform: scale(0.92) translateY(20px);
        opacity: 0;
    }
    
    .cart-drawer.open .cart-panel {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Mobile Drawer View (max-width: 768px) */
@media (max-width: 768px) {
    .cart-drawer {
        align-items: flex-end;
    }
    
    .cart-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        opacity: 1;
    }
    
    .cart-drawer.open .cart-panel {
        transform: translateY(0);
    }
}

.cart-header {
    padding: 20px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header .close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

/* Cart Item Card */
/* Cart Item Card */
.cart-item-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.cart-item-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #111;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-info {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.cart-item-title {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    line-height: 1.35 !important;
    display: block !important;
    width: 100% !important;
}

.cart-item-qty-pill {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 999px !important;
    padding: 2px 8px !important;
    gap: 8px !important;
    margin-top: 2px !important;
}

.cart-item-qty-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s ease;
}

.cart-item-qty-btn:hover {
    color: #f97316;
}

.cart-item-qty-num {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    min-width: 16px;
    text-align: center;
}

.cart-item-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    min-width: 60px !important;
}

.cart-item-price {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #f97316 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-item-remove:hover {
    color: #ef4444;
    transform: scale(1.15);
}

/* Free Delivery Progress Card */
.free-delivery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 16px;
    margin: 16px 0;
}

.free-delivery-title {
    font-size: 0.85rem;
    color: #e5e7eb;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.free-delivery-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.free-delivery-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 999px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

.free-delivery-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Pricing Summary Rows */
.cart-summary-box {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.cart-summary-row.discount-row {
    color: #22c55e;
}

.cart-summary-row.total-row {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-row.total-row .total-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f97316;
}

/* Sticky Action Footer */
.cart-footer-cta {
    padding: 16px 24px;
    background: rgba(15, 15, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
}

.btn-view-menu {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-view-menu:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn-checkout-primary {
    flex: 2;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.6);
}

/* ==========================================================================
   CUSTOMER MY ORDERS & SAVED PROFILE DRAWER SYSTEM
   ========================================================================== */
.nav-my-orders-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
}

.nav-my-orders-btn:hover {
    background: var(--primary-color, #f97316);
    color: #ffffff;
    border-color: var(--primary-color, #f97316);
    box-shadow: 0 4px 14px rgba(240, 78, 35, 0.35);
    transform: translateY(-1px);
}

/* Customer Orders Drawer Container */
.customer-orders-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.customer-orders-drawer.open {
    pointer-events: auto;
}

.customer-orders-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.customer-orders-drawer.open .customer-orders-overlay {
    opacity: 1;
}

.customer-orders-panel {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: rgba(18, 15, 13, 0.95) !important;
    backdrop-filter: blur(28px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
    border-left: 1.5px solid rgba(245, 158, 11, 0.25) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(245, 158, 11, 0.15) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
    z-index: 2;
}

.customer-orders-drawer.open .customer-orders-panel {
    transform: translateX(0);
}

.cust-drawer-header {
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.cust-drawer-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cust-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cust-drawer-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.cust-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Phone Lookup Form Box */
.cust-lookup-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}

.cust-lookup-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 4px 12px;
    margin: 16px 0 12px;
    transition: all 0.2s ease;
}

.cust-lookup-input-wrap:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 14px rgba(249, 115, 22, 0.3);
}

.cust-lookup-input-wrap span {
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
    margin-right: 8px;
}

.cust-lookup-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cust-lookup-btn {
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    transition: all 0.2s ease;
}

.cust-lookup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* Customer Profile Card */
.cust-profile-header-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cust-profile-greeting {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.cust-profile-phone {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
    margin-top: 2px;
}

.cust-switch-account-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cust-switch-account-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Saved Address Card */
.cust-saved-address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
}

.cust-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f59e0b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cust-address-text {
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.4;
}

/* Live Active Order Alert Card */
.cust-live-order-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(16, 185, 129, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cust-live-order-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cust-live-pill {
    background: #22c55e;
    color: #000;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: statusPulse 2s infinite;
}

.cust-track-live-btn {
    background: #22c55e;
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
}

.cust-track-live-btn:hover {
    background: #16a34a;
    color: #fff;
}

/* Past Order Card */
.cust-past-order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px;
    transition: all 0.2s ease;
}

.cust-past-order-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.cust-order-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cust-order-id {
    font-family: monospace;
    font-weight: 800;
    color: #f97316;
    font-size: 13px;
}

.cust-order-date {
    font-size: 11px;
    color: #94a3b8;
}

.cust-order-items {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 10px;
}

.cust-order-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.cust-order-total {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.cust-reorder-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cust-reorder-btn:hover {
    background: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
    .nav-my-orders-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .customer-orders-panel {
        max-width: 100%;
    }
}

/* End of style.css */