/**
 * Dragon Spice Hub - Master Stylesheet
 * Dark Fiery Chinese & Fast Food Theme
 * 100% Hostinger & Shared Hosting Compatible
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    --bg-dark-base: #0a0a0d;
    --bg-dark-surface: #121217;
    --bg-dark-card: #171720;
    --bg-dark-card-hover: #1e1e2b;
    --bg-dark-glass: rgba(23, 23, 32, 0.85);

    --primary-red: #e62828;
    --primary-red-glow: rgba(230, 40, 40, 0.35);
    --flame-orange: #ff6b00;
    --flame-orange-glow: rgba(255, 107, 0, 0.3);
    --gold-yellow: #ffb700;
    --gold-yellow-glow: rgba(255, 183, 0, 0.3);

    --gradient-fire: linear-gradient(135deg, #e62828 0%, #ff6b00 100%);
    --gradient-fire-text: linear-gradient(135deg, #ff3b30 0%, #ff8c00 50%, #ffb700 100%);
    --gradient-dark-glass: linear-gradient(180deg, rgba(30, 30, 42, 0.8) 0%, rgba(18, 18, 24, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, #1a1a24 0%, #121218 100%);

    --text-pure-white: #ffffff;
    --text-gray-light: #e5e7eb;
    --text-gray-muted: #9ca3af;
    --text-gray-dark: #6b7280;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-fire: rgba(230, 40, 40, 0.3);
    --border-gold: rgba(255, 183, 0, 0.3);

    --veg-green: #22c55e;
    --nonveg-red: #ef4444;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 80px;
    --header-height-scrolled: 65px;
    --bottom-bar-height: 64px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --shadow-fire-glow: 0 8px 24px var(--primary-red-glow);
    --shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.8);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--text-gray-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-fast);
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-pure-white);
    background: var(--bg-dark-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--flame-orange);
    box-shadow: 0 0 0 3px var(--flame-orange-glow);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-pure-white);
    line-height: 1.2;
}

.gradient-text-fire {
    background: var(--gradient-fire-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold {
    color: var(--gold-yellow);
}

.text-fire {
    color: var(--flame-orange);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--flame-orange);
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid var(--border-fire);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-gray-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-fire {
    background: var(--gradient-fire);
    color: var(--text-pure-white);
    box-shadow: 0 4px 15px var(--primary-red-glow);
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-red-glow);
    filter: brightness(1.1);
}

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

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

.btn-outline-fire:hover {
    background: var(--primary-red);
    color: var(--text-pure-white);
    box-shadow: 0 4px 15px var(--primary-red-glow);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #ffb700 0%, #ff8c00 100%);
    color: #0d0d0f;
    font-weight: 800;
    box-shadow: 0 4px 15px var(--gold-yellow-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   DIET INDICATORS (VEG / NON-VEG)
   ========================================================================== */
.diet-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    background: #ffffff;
    flex-shrink: 0;
}

.diet-dot.veg {
    border-color: var(--veg-green);
}

.diet-dot.veg .inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--veg-green);
}

.diet-dot.non-veg {
    border-color: var(--nonveg-red);
}

.diet-dot.non-veg .inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--nonveg-red);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: height var(--transition-normal), background var(--transition-normal);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(10, 10, 13, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--flame-orange);
    box-shadow: 0 0 12px var(--flame-orange-glow);
    transition: var(--transition-fast);
}

.brand-title-wrap {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-pure-white);
    letter-spacing: 0.04em;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--flame-orange);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--flame-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header-cart {
    position: relative;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-pure-white);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.btn-header-cart:hover {
    border-color: var(--flame-orange);
    background: var(--bg-dark-card-hover);
}

.cart-count-badge {
    background: var(--gradient-fire);
    color: var(--text-pure-white);
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count-badge.bump {
    transform: scale(1.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-pure-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   FREE DELIVERY PROMO BANNER
   ========================================================================== */
.delivery-promo-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #ea580c 50%, #b91c1c 100%);
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-pure-white);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    position: relative;
    z-index: 10;
}

.scooter-icon {
    animation: scooterFloat 2s ease-in-out infinite;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    background: radial-gradient(circle at 50% 20%, rgba(230, 40, 40, 0.15) 0%, rgba(10, 10, 13, 1) 70%);
    overflow: hidden;
}

.hero-banner-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-fire);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px var(--primary-red-glow);
    margin-bottom: 2.5rem;
}

.hero-banner-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-yellow);
    background: rgba(255, 183, 0, 0.12);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtag {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 600;
    color: var(--text-gray-light);
    margin-bottom: 0.75rem;
}

.hero-categories-list {
    color: var(--gold-yellow);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.hero-location-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-gray-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   QUICK ACTION BAR
   ========================================================================== */
.quick-action-bar {
    padding: 1.5rem 0 3.5rem;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.quick-action-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.quick-action-card:hover {
    border-color: var(--flame-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--flame-orange-glow);
}

.action-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--border-fire);
    color: var(--flame-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
    color: var(--text-pure-white);
}

.action-card-body p {
    font-size: 0.85rem;
    color: var(--text-gray-muted);
}

/* ==========================================================================
   FOOD CATEGORY SHOWCASE
   ========================================================================== */
.categories-section {
    padding: 4rem 0;
    background: var(--bg-dark-surface);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.category-card {
    position: relative;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: block;
}

.category-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--primary-red-glow);
}

.category-img-wrap {
    height: 140px;
    overflow: hidden;
    position: relative;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,10,13,0.95) 100%);
}

.category-card-name {
    padding: 0.85rem 1rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ==========================================================================
   DIGITAL MENU & FILTERING SECTION
   ========================================================================== */
.menu-section {
    padding: 4.5rem 0;
    position: relative;
}

.menu-controls-wrapper {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-card);
}

.menu-search-bar {
    position: relative;
    margin-bottom: 1.25rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray-muted);
    pointer-events: none;
}

.menu-search-input {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    background: var(--bg-dark-surface);
    border-color: var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.clear-search-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray-muted);
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    display: none;
}

.category-tabs-scroll {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--flame-orange) var(--bg-dark-surface);
}

.category-tabs-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-tabs-scroll::-webkit-scrollbar-thumb {
    background: var(--flame-orange);
    border-radius: 4px;
}

.cat-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    padding: 0.6rem 1.1rem;
    background: var(--bg-dark-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-gray-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.cat-tab-btn:hover {
    border-color: var(--flame-orange);
    color: var(--text-pure-white);
}

.cat-tab-btn.active {
    background: var(--gradient-fire);
    border-color: transparent;
    color: var(--text-pure-white);
    box-shadow: 0 4px 12px var(--primary-red-glow);
}

.filter-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.diet-filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diet-filter-btn {
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    background: var(--bg-dark-surface);
    border: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray-muted);
}

.diet-filter-btn.active {
    background: #262635;
    border-color: var(--text-pure-white);
    color: var(--text-pure-white);
}

.menu-results-counter {
    font-size: 0.85rem;
    color: var(--text-gray-muted);
}

/* ==========================================================================
   FOOD CARDS GRID
   ========================================================================== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.food-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.food-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(230, 40, 40, 0.25);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    background: #111;
    overflow: hidden;
}

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

.food-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-badges-top {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.badge-card-pill {
    background: var(--gradient-fire);
    color: var(--text-pure-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-combo-pill {
    background: linear-gradient(135deg, #ffb700, #ff6b00);
    color: #0d0d0f;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-pure-white);
}

.card-description {
    font-size: 0.85rem;
    color: var(--text-gray-muted);
    margin-bottom: 1rem;
    line-height: 1.45;
    flex-grow: 1;
}

.card-variant-selector {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-dark-surface);
    padding: 0.35rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
}

.variant-option {
    flex: 1;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.variant-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variant-label {
    display: block;
    padding: 0.35rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    color: var(--text-gray-muted);
    transition: var(--transition-fast);
}

.variant-amt {
    color: var(--gold-yellow);
    display: block;
    font-size: 0.85rem;
}

.variant-option input:checked + .variant-label {
    background: #252536;
    color: var(--text-pure-white);
    border: 1px solid var(--flame-orange);
}

.combo-summary-box {
    background: rgba(255, 107, 0, 0.08);
    border: 1px dashed var(--border-fire);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-yellow);
    margin-bottom: 1rem;
}

.card-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.card-price-display .price-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-yellow);
}

.card-btn-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-card-add {
    background: var(--gradient-fire);
    color: var(--text-pure-white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px var(--primary-red-glow);
}

.btn-card-add:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

.btn-card-wa {
    background: #25D366;
    color: #ffffff;
    padding: 0.55rem 0.65rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-card-wa:hover {
    background: #20ba59;
    transform: scale(1.05);
}

.menu-disclaimer-note {
    text-align: center;
    color: var(--text-gray-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 2rem;
}

/* ==========================================================================
   COMBOS SHOWCASE SECTION
   ========================================================================== */
.combos-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 107, 0, 0.1) 0%, var(--bg-dark-base) 80%);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.combo-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-fast);
}

.combo-card:hover {
    border-color: var(--flame-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--flame-orange-glow);
}

.combo-family-card {
    border: 2px solid var(--gold-yellow);
    background: linear-gradient(145deg, #241a10 0%, #15121c 100%);
    box-shadow: 0 15px 40px var(--gold-yellow-glow);
    grid-column: 1 / -1;
}

.combo-family-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff8c00, #e62828);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(230, 40, 40, 0.5);
}

.combo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.combo-name {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.combo-items-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-gray-light);
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--flame-orange);
}

.combo-desc {
    font-size: 0.85rem;
    color: var(--text-gray-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.combo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.combo-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-yellow);
}

.combo-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-subtle {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    padding: 0.5rem 0.6rem;
}

.btn-whatsapp-subtle:hover {
    background: #25D366;
    color: #ffffff;
}

/* ==========================================================================
   ABOUT & WHY CHOOSE US
   ========================================================================== */
.about-section {
    padding: 4.5rem 0;
    background: var(--bg-dark-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-fire);
    box-shadow: var(--shadow-card);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-gray-light);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-highlights-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--gold-yellow);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.why-card:hover {
    border-color: var(--flame-orange);
    transform: translateY(-3px);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-pure-white);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-gray-muted);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 4.5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 13, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-pure-white);
}

/* ==========================================================================
   REVIEWS PLACEHOLDER SECTION
   ========================================================================== */
.reviews-section {
    padding: 4rem 0;
    background: var(--bg-dark-surface);
}

.reviews-placeholder-box {
    background: var(--bg-dark-card);
    border: 1px dashed var(--border-fire);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reviews-stars {
    color: var(--gold-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
}

.reviews-placeholder-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reviews-placeholder-box p {
    color: var(--text-gray-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 4.5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--flame-orange);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-pure-white);
}

.faq-arrow {
    transition: transform var(--transition-fast);
    color: var(--flame-orange);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-gray-light);
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 4.5rem 0;
    background: var(--bg-dark-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info-panel {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-detail-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(230, 40, 40, 0.15);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
}

.contact-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.quick-form-panel {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray-light);
    margin-bottom: 0.4rem;
}

/* ==========================================================================
   CART SLIDE-OUT DRAWER
   ========================================================================== */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: var(--bg-dark-surface);
    border-left: 1px solid var(--border-fire);
    box-shadow: var(--shadow-drawer);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.25rem 1.5rem;
    background: var(--bg-dark-card);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    background: var(--primary-red);
    color: var(--text-pure-white);
}

.cart-drawer-body {
    padding: 1.25rem;
    overflow-y: auto;
    flex-grow: 1;
}

.delivery-bar-wrapper {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    margin-bottom: 1.25rem;
}

.delivery-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.delivery-text .highlight {
    color: var(--gold-yellow);
}

.text-success {
    color: #22c55e;
}

.progress-track {
    height: 6px;
    background: #232330;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-fire);
    transition: width 0.3s ease;
}

.progress-complete .progress-fill {
    background: #22c55e;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item-row {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-pure-white);
}

.cart-item-variant {
    color: var(--gold-yellow);
    font-size: 0.85rem;
}

.cart-item-price-unit {
    font-size: 0.8rem;
    color: var(--text-gray-muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-subtle);
}

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-dark-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.4rem;
}

.btn-qty {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure-white);
    font-weight: 800;
    font-size: 1rem;
}

.btn-qty:hover {
    color: var(--flame-orange);
}

.qty-number {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 18px;
    text-align: center;
}

.cart-item-total {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-yellow);
    font-size: 1.1rem;
}

.btn-remove-item {
    color: var(--text-gray-muted);
    padding: 0.25rem;
}

.btn-remove-item:hover {
    color: var(--primary-red);
}

.cart-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.empty-cart-icon {
    font-size: 3rem;
}

.cart-drawer-footer {
    padding: 1.25rem;
    background: var(--bg-dark-card);
    border-top: 1px solid var(--border-subtle);
}

.cart-customer-fields {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.cart-customer-fields input,
.cart-customer-fields textarea {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
}

.cart-total-breakdown {
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
}

.total-row .total-amt {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-yellow);
}

.btn-whatsapp-order {
    width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #070709;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--gold-yellow);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-gray-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--flame-orange);
    padding-left: 4px;
}

.footer-bottom-bar {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray-muted);
}

.footer-seo-desc {
    max-width: 800px;
    line-height: 1.5;
}

/* ==========================================================================
   FLOATING ELEMENTS & TOASTS
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: transform var(--transition-fast);
}

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

.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--flame-orange);
    color: #ffffff;
}

.toast-container {
    position: fixed;
    top: 5rem;
    right: 1.5rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast-message {
    background: var(--bg-dark-surface);
    border: 1px solid var(--flame-orange);
    color: var(--text-pure-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-color: #22c55e;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 1.5rem;
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-fire);
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--text-pure-white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-pure-white);
    font-size: 2rem;
}
