/* =========================================================
   TEMPLE STREET 2032 - LIQUID AURA UI
========================================================= */

:root {
    --brand-green: #0A4D3C;
    --brand-red: #CE2029;
    --brand-yellow: #ECA322;
    --bg-canvas: #FCFBFA; /* Ultra premium pearl white */
    --text-core: #1A1C1E;
    --text-flow: #70757A;
    --glass-panel: rgba(255, 255, 255, 0.7);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg-canvas); 
    color: var(--text-core); 
    margin: 0; padding: 0; 
    overflow-x: hidden; 
}

/* =========================================================
   🟢 THE AMBIENT AURA (Desktop = Gradients, Mobile = Blur)
========================================================= */

/* 1. Common Base (Jo dono mein same rahega) */
.aura-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none; overflow: hidden;
    background: #FDF9F1; /* Temple Street Original Off-White Base */
}

.aura-glow {
    position: absolute; border-radius: 50%;
    animation: liquidBreathe 12s infinite alternate ease-in-out;
}

/* =========================================================
   💻 2. DESKTOP CSS (Radial Gradients - No Pink Tint)
   (Runs only on screens larger than 768px)
========================================================= */
@media (min-width: 769px) {
    .aura-green { 
        background: radial-gradient(circle, rgba(10, 77, 60, 0.45) 0%, rgba(10, 77, 60, 0) 65%);
        width: 90vw; height: 90vw; top: -25%; left: -25%; 
    }
    .aura-red { 
        background: radial-gradient(circle, rgba(220, 20, 20, 0.5) 0%, rgba(206, 32, 41, 0) 65%);
        width: 90vw; height: 90vw; bottom: -20%; right: -25%; 
        animation-delay: -6s; 
    }
    .aura-yellow { 
        background: radial-gradient(circle, rgba(236, 163, 34, 0.35) 0%, rgba(236, 163, 34, 0) 65%);
        width: 80vw; height: 80vw; top: 25%; left: 10%; 
    }
    
    @keyframes liquidBreathe {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(5vw, 5vh) scale(1.15); }
    }
}

/* =========================================================
   📱 3. MOBILE CSS (Solid Colors with Heavy Blur)
   (Runs only on screens 768px or smaller)
========================================================= */
@media (max-width: 768px) {
    .aura-glow {
        filter: blur(100px);
        opacity: 0.75;
    }
    .aura-green { 
        background: #0A4D3C; 
        width: 60vw; height: 60vw; top: -10%; left: -10%; 
    }
    .aura-red { 
        background: #CE2029; 
        width: 50vw; height: 50vw; bottom: 10%; right: -10%; 
        animation-delay: -6s; 
    }
    .aura-yellow { 
        background: #ECA322; 
        width: 40vw; height: 40vw; top: 30%; left: 20%; 
        filter: blur(130px); opacity: 0.4; 
    }
    
    @keyframes liquidBreathe {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(6vw, 6vh) scale(1.1); }
    }
}

/* 🟢 SEARCH & FILTERS (Floating) */
.search-canvas { padding: 20px 25px 0; }
.search-morph { display: flex; align-items: center; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border-radius: 20px; padding: 5px 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(255,255,255,0.9); transition: 0.3s; }
.search-morph:focus-within { background: white; box-shadow: 0 15px 40px rgba(10, 77, 60, 0.08); transform: translateY(-2px); }
.search-morph input { width: 100%; border: none; padding: 15px 10px; font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 1.05rem; background: transparent; outline: none; }

.chips-flow { display: flex; gap: 12px; overflow-x: auto; padding: 20px 25px; scrollbar-width: none; }
.chips-flow::-webkit-scrollbar { display: none; }
.aura-chip { background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); padding: 10px 22px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; color: var(--text-flow); cursor: pointer; white-space: nowrap; transition: 0.3s; border: 1px solid rgba(255,255,255,0.8); }
.aura-chip.active { background: var(--text-core); color: white; border-color: var(--text-core); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* 🟢 LIQUID MENU LIST (No Borders, Just Flow) */
.menu-canvas { max-width: 1200px; margin: 0 auto; padding: 0 25px 150px; }
.category-flow { margin-bottom: 50px; padding-top: 20px; }
.flow-title { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--brand-green); margin-bottom: 25px; letter-spacing: -0.5px;}

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

/* The Item (Invisible Box) */
.liquid-item { display: flex; gap: 20px; align-items: center; position: relative; padding: 15px; border-radius: 24px; transition: 0.4s ease; background: transparent; }
.liquid-item:hover { background: rgba(255,255,255,0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.03); transform: translateY(-3px); }

/* Image popping out slightly */
.liquid-img-wrap { width: 130px; height: 130px; border-radius: 24px; overflow: hidden; flex-shrink: 0; box-shadow: 0 15px 35px rgba(0,0,0,0.08); background: white; position: relative; }
.liquid-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.liquid-item:hover .liquid-img-wrap img { transform: scale(1.08); }

.liquid-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.veg-indicator { width: 12px; height: 12px; border: 2px solid #008B3A; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px;}
.veg-indicator::after { content: ''; width: 5px; height: 5px; background: #008B3A; border-radius: 50%; }
.non-veg { border-color: var(--brand-red); } .non-veg::after { background: var(--brand-red); }

.liquid-name { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; margin: 0 0 6px; line-height: 1.2; color: var(--text-core); }
.liquid-desc { font-size: 0.85rem; color: var(--text-flow); margin: 0 0 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* The Action Area (Tesla Approach: Familiar but Sleek) */
.liquid-action { display: flex; justify-content: space-between; align-items: center; }
.liquid-price { font-weight: 800; font-size: 1.15rem; color: var(--text-core); }

.action-btn { background: white; border: 1px solid rgba(0,0,0,0.05); color: var(--brand-green); font-weight: 800; padding: 10px 24px; border-radius: 100px; cursor: pointer; box-shadow: 0 8px 15px rgba(0,0,0,0.03); transition: 0.2s; font-size: 0.9rem;}
.action-btn.sold-out { opacity: 0.5; pointer-events: none; }

/* Morphing Qty Control */
.qty-morph { display: flex; align-items: center; justify-content: space-between; background: var(--brand-green); color: white; padding: 5px 12px; border-radius: 100px; width: 100px; height: 40px; box-shadow: 0 10px 20px rgba(10, 77, 60, 0.2); }
.qty-morph button { background: none; border: none; color: white; font-size: 1.2rem; font-weight: 800; cursor: pointer; padding: 0 8px; }

/* Skeletons */
@keyframes shimmer { 0% { background-position: -800px 0; } 100% { background-position: 800px 0; } }
.skeleton-box { background: #f0f0f0; background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); background-size: 800px 100%; animation: shimmer 2s infinite linear; border-radius: 12px; }

@media (max-width: 768px) {
    .liquid-grid { grid-template-columns: 1fr; gap: 15px; }
    .liquid-item { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.03); border-radius: 0; }
    .liquid-item:hover { background: transparent; box-shadow: none; transform: none; }
    .liquid-img-wrap { width: 110px; height: 110px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
    .search-canvas, .chips-flow { padding-left: 15px; padding-right: 15px; }
    .menu-canvas { padding: 0 15px 120px; }
}

/* =========================================================
   🟢 1. LIQUID CUSTOMISE SHEET CSS
========================================================= */
.liquid-overlay { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); 
    z-index: 4000; display: none; align-items: flex-end; justify-content: center; 
}
.liquid-sheet { 
    background: rgba(253, 249, 241, 0.95); width: 100%; max-width: 450px; 
    border-radius: 35px 35px 0 0; padding: 30px 25px; box-shadow: 0 -10px 40px rgba(0,0,0,0.1); 
    transform: translateY(100%); animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1) forwards; 
    border-top: 1px solid rgba(255,255,255,0.8); 
}
@keyframes slideUp { to { transform: translateY(0); } }

.sheet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.sheet-header h3 { font-family: 'Outfit', sans-serif; margin: 0; font-size: 1.6rem; color: var(--text-core); font-weight: 800; }
.sheet-close { background: white; border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.sheet-desc { color: var(--text-flow); font-size: 0.9rem; margin-bottom: 25px; line-height: 1.4; }

.variant-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; max-height: 40vh; overflow-y: auto; scrollbar-width: none;}
.variant-list::-webkit-scrollbar { display: none; }

.variant-label { 
    display: flex; justify-content: space-between; align-items: center; 
    background: white; padding: 18px 20px; border-radius: 20px; 
    cursor: pointer; transition: 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 2px solid transparent;
}
/* Custom Radio Button Magic */
.variant-label input[type="radio"] { accent-color: var(--brand-green); transform: scale(1.3); margin-right: 12px;}
.variant-label:has(input:checked) { border-color: var(--brand-green); box-shadow: 0 8px 20px rgba(10, 77, 60, 0.08); }

.var-name { font-weight: 700; font-size: 1.05rem; color: var(--text-core); }
.var-price { font-weight: 800; font-size: 1.1rem; color: var(--brand-green); }

.sheet-action-btn { 
    width: 100%; background: var(--text-core); color: white; border: none; 
    padding: 18px; border-radius: 100px; font-family: 'Outfit', sans-serif; 
    font-size: 1.1rem; font-weight: 800; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: 0.2s; 
}

/* Desktop Modal Style */
@media (min-width: 769px) {
    .liquid-overlay { align-items: center; }
    .liquid-sheet { border-radius: 35px; animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards; }
    @keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
}

/* =========================================================
   🟢 2. LIQUID CART PANEL CSS
========================================================= */
.liquid-cart-panel {
    background: rgba(253, 249, 241, 0.98); backdrop-filter: blur(20px);
    width: 100%; max-width: 420px; height: 100vh;
    position: fixed; top: 0; right: -100%; /* Hidden by default */
    box-shadow: -15px 0 50px rgba(0,0,0,0.1);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex; flex-direction: column; z-index: 5000;
}
.liquid-cart-panel.open { right: 0; }

.cart-header { padding: 30px 25px 20px; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { margin: 0; font-family: 'Outfit'; font-size: 1.6rem; font-weight: 800; color: var(--text-core); letter-spacing: -0.5px;}

.cart-items-scroll { flex: 1; overflow-y: auto; padding: 20px 25px; display: flex; flex-direction: column; gap: 15px; scrollbar-width: none;}
.cart-items-scroll::-webkit-scrollbar { display: none; }

.cart-item-row { display: flex; justify-content: space-between; align-items: center; background: white; padding: 18px; border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.02);}
.cart-item-info { flex: 1; padding-right: 15px; }
.cart-item-name { font-weight: 800; font-size: 1.05rem; color: var(--text-core); margin: 0 0 6px; line-height: 1.2;}
.cart-item-price { font-weight: 800; color: var(--brand-green); font-size: 1rem; }

.cart-footer { padding: 25px; background: white; border-radius: 35px 35px 0 0; box-shadow: 0 -10px 40px rgba(0,0,0,0.05); z-index: 10;}
.cart-summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-weight: 700; color: var(--text-flow); }
.summary-amount { font-family: 'Outfit'; font-size: 1.8rem; font-weight: 800; color: var(--text-core); }

/* =========================================================
   🟢 3. SMART UPSELL AI CSS
========================================================= */
.liquid-upsell-toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(150%);
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 100px; padding: 10px 15px 10px 20px;
    display: flex; align-items: center; gap: 15px; z-index: 1500;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: max-content; max-width: 90%;
    opacity: 0; pointer-events: none;
}
.liquid-upsell-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1; pointer-events: all;
}

.upsell-content { display: flex; align-items: center; gap: 10px; }
.upsell-icon { font-size: 1.4rem; animation: floatIcon 2s infinite ease-in-out; }
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.upsell-text { display: flex; flex-direction: column; }
.upsell-title { margin: 0; font-size: 0.75rem; font-weight: 800; color: var(--brand-green); text-transform: uppercase; letter-spacing: 0.5px;}
.upsell-desc { margin: 0; font-size: 0.95rem; font-weight: 800; color: var(--text-core); }

.upsell-add-btn {
    background: var(--brand-yellow); color: white; border: none;
    padding: 8px 18px; border-radius: 50px; font-family: 'Outfit'; font-size: 0.95rem; font-weight: 800; cursor: pointer;
    box-shadow: 0 6px 15px rgba(236,163,34,0.3); transition: 0.2s;
}

/* Desktop Adjustment */
@media (min-width: 769px) {
    .liquid-upsell-toast { bottom: 30px; left: 30px; transform: translateX(-150%); }
    .liquid-upsell-toast.show { transform: translateX(0); }
}

/* Mic Listening Animation */
.listening-pulse {
    animation: micPulse 1s infinite alternate;
    color: var(--brand-red) !important;
}
@keyframes micPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 1; text-shadow: 0 0 15px rgba(206, 32, 41, 0.5); }
}

/* GROUP ORDER BANNER (True Floating Glass Pill) */
.group-pill-banner {
    position: fixed; 
    top: 75px; /* Header ke theek neeche safe area mein */
    left: 50%;
    transform: translateX(-50%); /* Perfect Center align */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    display: none; 
    align-items: center; justify-content: center; gap: 10px;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.95rem;
    color: var(--text-core);
    z-index: 4000; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.live-pulse-dot {
    width: 10px; height: 10px; background: var(--brand-green);
    border-radius: 50%; box-shadow: 0 0 8px var(--brand-green);
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   🍎 APPLE-STYLE LIQUID TOASTS
   ========================================== */
#liquidToastContainer {
    position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    color: #fff; padding: 12px 24px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
    display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; white-space: nowrap; max-width: 90vw; overflow: hidden; text-overflow: ellipsis;
}
#liquidToastContainer.show { bottom: 40px; }
.toast-error { border: 1px solid rgba(255, 71, 87, 0.5); }
.toast-success { border: 1px solid rgba(37, 211, 102, 0.5); }
.toast-info { border: 1px solid rgba(255, 255, 255, 0.2); }

/* =========================================================
   🚀 2030 PREMIUM TOP HEADER (CONFLICT-FREE)
========================================================= */
.ts-top-header {
    display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important;
    padding: 15px 20px 10px 20px !important; position: sticky !important; top: 0 !important; z-index: 1000 !important;
    background: rgba(253, 249, 241, 0.85) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.03) !important; width: 100% !important;
}

.ts-loc-wrapper { display: flex !important; flex-direction: column !important; gap: 2px !important; cursor: pointer !important; }
.ts-delivering { font-size: 0.65rem !important; font-weight: 800 !important; color: var(--text-flow) !important; letter-spacing: 1.5px !important; margin-bottom: 2px;}
.ts-loc-name { font-family: 'Outfit', sans-serif !important; font-size: 1.1rem !important; font-weight: 800 !important; color: var(--brand-green) !important; display:flex !important; align-items:center !important; gap:4px;}

.ts-logo-wrapper { display: flex !important; align-items: center !important; justify-content: flex-end !important; }
.ts-logo-wrapper img { height: 38px !important; width: auto !important; object-fit: contain; mix-blend-mode: multiply !important; }

/* Push canvas up so we can see the last items */
.menu-canvas { padding-bottom: 180px; }

/* 2. The Unified Bottom Dock Wrapper */
.bottom-dock-2030 {
    position: fixed; bottom: 0; left: 0; width: 100vw; z-index: 3000;
    display: flex; flex-direction: column; align-items: center; pointer-events: none; 
    padding-bottom: calc(20px + env(safe-area-inset-bottom)); 
}

/* 3. The Smart Cart (Floating above the dock smoothly) */
.dock-cart {
    background: var(--text-core); color: white; width: 90%; max-width: 400px;
    padding: 16px 25px; border-radius: 20px; display: none; justify-content: space-between;
    align-items: center; box-shadow: 0 15px 35px rgba(0,0,0,0.25); cursor: pointer; pointer-events: all;
    margin-bottom: 15px; animation: cartSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes cartSlideUp { 0% { transform: translateY(50px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* 4. The Floating Glass Capsule Navigation */
.dock-nav {
    width: 85%; max-width: 350px; background: rgba(255,255,255,0.75);
    backdrop-filter: blur(25px) saturate(180%); -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5); display: flex; justify-content: space-between; align-items: center;
    padding: 8px 15px; border-radius: 100px; pointer-events: all; box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}

.dock-btn {
    background: transparent; border: none; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; padding: 8px 15px; color: var(--text-flow); transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); border-radius: 50px;
}
.dock-icon { font-size: 1.3rem; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.dock-text { font-family: 'Plus Jakarta Sans'; font-size: 0.7rem; font-weight: 800; transition: 0.3s; opacity: 0.8;}

/* Hover States */
.dock-btn:hover .dock-icon { filter: grayscale(0%); opacity: 1; transform: translateY(-2px) scale(1.1); }
.dock-btn:hover .dock-text { color: var(--brand-green); opacity: 1;}


/* =========================================================
   🟢 UNIVERSAL MICRO-INTERACTIONS (BUTTON PRESS PHYSICS)
   ========================================================= */
button, .action-btn, .sheet-action-btn, .icon-btn, .pill-btn, .variant-label, .aura-chip, .upsell-add-btn, .dock-btn {
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, opacity 0.2s ease;
    cursor: pointer; -webkit-tap-highlight-color: transparent; 
}

button:active, .action-btn:active, .sheet-action-btn:active, .icon-btn:active, .pill-btn:active, .variant-label:active, .aura-chip:active, .upsell-add-btn:active, .dock-btn:active {
    transform: scale(0.94) !important; opacity: 0.85; background-color: rgba(0,0,0,0.05);
}

.qty-morph button:active { transform: scale(0.85) !important; background-color: rgba(0,0,0,0.05); }


/* =========================================================
   🔍 2030 SMART SEARCH SUGGESTIONS & TARGET HIGHLIGHT
========================================================= */
.search-canvas { position: relative !important; z-index: 4000 !important; }

.search-suggestions {
    position: absolute; top: 85px; left: 25px; width: calc(100% - 50px);
    background: rgba(255,255,255,0.98); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); overflow: hidden; 
    display: none; flex-direction: column; border: 1px solid rgba(0,0,0,0.05);
}

.sugg-item {
    padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s;
}
.sugg-item:active, .sugg-item:hover { background: rgba(10, 77, 60, 0.05); }
.sugg-name { font-family: 'Outfit'; font-weight: 700; color: var(--text-core); font-size: 1rem; display: flex; gap: 8px; align-items: center;}
.sugg-price { color: var(--brand-green); font-weight: 800; font-size: 0.95rem; }

/* =========================================================
   🌟 2030 FIX: MOBILE TOUCH & SUPER GLOW ANIMATION
========================================================= */
@keyframes targetGlow {
    0% { 
        background-color: rgba(10, 77, 60, 0.15) !important; 
        box-shadow: 0 0 25px rgba(10, 77, 60, 0.4) !important; 
        transform: scale(1.03); 
    }
    100% { 
        background-color: transparent; 
        box-shadow: 0 0 0 rgba(10, 77, 60, 0); 
        transform: scale(1); 
    }
}

.highlight-item {
    animation: targetGlow 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 20px !important;
}

/* Mobile Touch Feedback */
@media (max-width: 768px) {
    .liquid-item {
        /* Add physics for touch */
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease !important;
    }
    
    /* When user actually puts their finger on the item */
    .liquid-item:active {
        background-color: rgba(10, 77, 60, 0.08) !important;
        transform: scale(0.96) !important;
        border-radius: 20px !important;
    }
}

/* ==================================================================
   🟢 CART BOTTOM FIX & TRUST BADGES 
   ================================================================== */
.checkout-btn-wrapper {
    width: 100%;
    padding-bottom: 25px; /* Button ko bottom bar se bachaega */
    display: flex;
    flex-direction: column;
}

.trust-badge-area {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.secure-lock {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-green, #0A4D3C);
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.payment-methods {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pay-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-soft, #64748B);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
/* ==================================================================
   🟢 2030 DYNAMIC FILTER CHIPS (GLASSMORPHISM)
   ================================================================== */
.chips-flow {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 20px;
    /* Scrollbar ko hide karna for premium look */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.chips-flow::-webkit-scrollbar {
    display: none; 
}

.aura-chip {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 77, 60, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-soft, #64748B);
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

/* Jab filter Select (Active) hoga tab ka magic */
.aura-chip.active {
    background: var(--brand-green, #0A4D3C);
    color: white;
    box-shadow: 0 6px 15px rgba(10, 77, 60, 0.3);
    border-color: var(--brand-green, #0A4D3C);
    transform: translateY(-2px);
}
/* ==================================================================
   🤖 2030 AI SMART CHIP (Animated Magic)
   ================================================================== */
.ai-smart-chip {
    background: linear-gradient(135deg, rgba(236,163,34,0.1) 0%, rgba(206,32,41,0.05) 100%);
    border: 1px solid rgba(236,163,34,0.4) !important;
    color: var(--brand-green) !important;
    position: relative;
    overflow: hidden;
    padding: 8px 20px !important; /* Proper spacing */
    flex-shrink: 0 !important; /* 🟢 THE FIX: Isko pichakne (shrink hone) se rokega */
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap !important;
}

/* The scanning light animation */
.ai-smart-chip::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    animation: aiShine 3s infinite;
}

@keyframes aiShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* When the user CLICKS the AI chip */
.ai-smart-chip.active {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-red) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(236,163,34,0.3) !important;
}

.ai-smart-chip.active::before {
    display: none; /* Turn off shine when active */
}
/* =========================================================
   🧹 2030 EXTREME SPACE OPTIMIZATION & COMPACT UI (MOBILE)
========================================================= */

/* 1. Search Bar & Chips Area Compress */
.search-canvas { padding: 10px 15px 0 !important; }
.search-morph input { padding: 12px 10px !important; } /* Input height thodi choti ki */
.chips-flow { padding: 10px 15px 5px !important; } /* Faltu gap hataya */

/* 2. Main Parent Heading (e.g. "INDIAN") Compress */
.parent-cuisine-group > div:first-child { 
    padding: 10px 15px 0 !important; /* Top space drastic kam kiya */
}
.parent-cuisine-group h1 { 
    font-size: 1.6rem !important; /* 2.2rem se chota kiya taaki lamba na lage */
    line-height: 1 !important;
}
.parent-cuisine-group > div:first-child > div { 
    margin: 5px auto 10px auto !important; /* Green line ka gap kam kiya */
}

/* 3. Sub-Category Heading (e.g. "Breakfast") Compress */
.category-flow { 
    margin-bottom: 15px !important; /* Bottom gap kam kiya */
    padding-top: 0 !important; 
}
.flow-title { 
    margin-bottom: 8px !important; 
    font-size: 1.3rem !important; 
}

/* 4. Item Cards Compress (Zomato Style) */
@media (max-width: 768px) {
    .liquid-grid { gap: 8px !important; } /* Items ke beech ki spacing */
    .liquid-item { 
        padding: 8px 0 !important; /* Card ki upar/neeche ki doori */
        gap: 12px !important; /* Image aur text ke beech ki doori */
    }
    
    /* Photo size slightly reduce to fit more items */
    .liquid-img-wrap { 
        width: 100px !important; 
        height: 100px !important; 
        border-radius: 16px !important;
    }
    
    /* Text tighter */
    .liquid-name { 
        font-size: 1.1rem !important; 
        margin-bottom: 2px !important; 
        line-height: 1.1 !important; 
    }
    .liquid-desc { 
        font-size: 0.75rem !important; 
        margin-bottom: 6px !important; 
    }
    
    /* Price & ADD Button tighter */
    .liquid-price { font-size: 1.05rem !important; }
    .action-btn { 
        padding: 6px 18px !important; 
        font-size: 0.85rem !important; 
    }
}
/* Price aur Add Button bottom align fix */
.liquid-content { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.liquid-action { margin-top: 10px; }
.liquid-desc { margin-top: 4px; }
/* 🚫 Disable annoying floating upsell toast on main menu */
.liquid-upsell-toast {
    display: none !important;
}
/* =========================================================
   🛒 2030 UNIFIED NAV DOCK & CART BADGE
========================================================= */

/* Dock mein ab 4 buttons hain, toh isko thoda bada karna padega */
.dock-nav {
    width: 96% !important; 
    max-width: 420px !important;
    padding: 8px 10px !important; /* Buttons adjust karne ke liye padding thodi kam ki */
}

/* Red Quantity Bubble (Badge) on Cart Icon */
.cart-badge {
    position: absolute;
    top: 2px;
    right: 12px;
    background: var(--brand-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    pointer-events: none;
    animation: popBadge 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popBadge {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
/* =========================================================
   🛒 2030 UX FIX: CART DOCK HIGHLIGHT ANIMATION
========================================================= */

/* Jab Cart mein item ho, toh us icon ko ZINDA (Active) karo */
.dock-btn.cart-has-items {
    background: rgba(10, 77, 60, 0.08) !important; /* Halka sa green background */
    border-radius: 50px;
}

.dock-btn.cart-has-items .dock-icon {
    filter: grayscale(0%) !important; /* Icon ka rang wapas laao */
    opacity: 1 !important;
    transform: scale(1.15) translateY(-2px); /* Thoda sa upar pop karo */
    color: var(--brand-green);
}

.dock-btn.cart-has-items .dock-text {
    color: var(--brand-green) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
/* =========================================================
   🛠️ 2030 UX FIXES: SCROLL PADDING & QTY BUTTON UNIFORMITY
========================================================= */

/* 1. BOTTOM SCROLL FIX: Dock ke peechhe content na chhipe */
.menu-canvas {
    padding-bottom: 120px !important; /* Bottom dock ke liye sufficient space */
}

/* =========================================================
   🛠️ FINAL FIX: PERFECT BUTTON STYLE (NO JS CONFLICT)
========================================================= */

/* Card Content Alignment */
.liquid-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.liquid-action {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; 
    margin-top: auto !important; 
    padding-top: 10px;
}

/* Dono buttons (ADD aur Qty) ka size exact same rakha hai */
.action-btn, .qty-morph {
    height: 38px !important; 
    min-width: 90px !important; 
    margin: 0 !important;
    border-radius: 50px !important;
}

/* ADD Button: Sirf content align kiya, 'display' chhod diya JS ke liye */
.action-btn {
    align-items: center;
    justify-content: center;
    padding: 0 20px !important;
}

/* QTY Button: Naya Premium Light Green Style (Without breaking JS) */
.qty-morph {
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(10, 77, 60, 0.08) !important; /* Premium Light Green */
    border: 1px solid rgba(10, 77, 60, 0.2) !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.qty-morph button {
    color: var(--brand-green) !important;
    width: 35px !important; 
    height: 100% !important;
    font-size: 1.4rem !important; 
    font-weight: 400 !important;
    background: transparent !important;
    border: none !important;
}

.qty-morph .qty-val {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: var(--text-core) !important;
}
/* =========================================================
   🕵️‍♂️ THE 1% MICRO-UX POLISH (Deep Scan Fixes)
========================================================= */

/* 1. CART BADGE POSITION FIX (Push to top-right edge) */
.dock-btn {
    position: relative; /* Ensure badge positions relative to button */
}
.cart-badge {
    top: -2px !important;
    right: 4px !important; /* Center se hatakar right edge par kiya */
    min-width: 16px !important;
    height: 16px !important;
    font-size: 0.6rem !important; /* Thoda sleek kiya */
}

/* 2. OPTICAL ALIGNMENT FIX FOR [- 1 +] */
.qty-morph button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important; /* Font baseline reset karega */
    padding-bottom: 2px !important; /* Optical center tweak */
}
.qty-morph .qty-val {
    display: flex !important;
    align-items: center !important;
    line-height: 0 !important;
}
/* =========================================================
   🚀 2030 NEURAL FLOW ACCORDION (UNIQUE ANIMATION)
========================================================= */

/* NAYA LOGIC: Items starting position (Chhipe hue aur pichke hue) */
.accordion-item-prepare {
    opacity: 0;
    transform: scale(0.8) translateY(-30px) rotateX(-15px); /* 3D effect + Pichka hua */
    pointer-events: none; /* Click na ho jab tak hide hain */
    /* display: none nahi karenge taaki GSAP measure kar sake */
    position: absolute; /* Layout space na lein jab hide hon */
    width: 100%;
}

/* Jab GSAP activate karega tab yeh lagao */
.accordion-item-active {
    position: relative !important; /* Wapas layout mein laao */
    pointer-events: auto !important;
}

/* Premium Dashed Button */
.accordion-expand-btn {
    width: 100%; margin-top: 15px; 
    background: rgba(10, 77, 60, 0.04); 
    color: var(--brand-green); 
    border: 1px dashed rgba(10, 77, 60, 0.3); 
    font-family: 'Outfit', sans-serif; 
    font-size: 1rem; font-weight: 800;
    padding: 14px; border-radius: 16px; 
    cursor: pointer; text-align: center;
    transition: 0.3s;
}
/* ========================================================= */
/* 📦 OFFICE LUNCH SAVIOR TOGGLE                             */
/* ========================================================= */
.pack-person-container {
    display: none;
    background: rgba(10, 77, 60, 0.05);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px dashed var(--brand-green);
}
.pack-person-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pack-person-text {
    text-align: left;
}
.pack-person-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--brand-green);
}
.pack-person-desc {
    font-size: 0.7rem;
    color: var(--text-soft);
    font-weight: 600;
}
/* Custom Toggle Switch */
.pack-switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}
.pack-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pack-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.pack-slider.pack-round {
    border-radius: 34px;
}
.pack-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.pack-switch input:checked + .pack-slider {
    background-color: var(--brand-green);
}
.pack-switch input:checked + .pack-slider:before {
    transform: translateX(21px);
}
/* ========================================================= */
/* ⚡ ZERO-LAG MOBILE TOUCH & HITBOX FIXES                     */
/* ========================================================= */
.action-btn, .qty-morph, .qty-morph button {
    touch-action: manipulation !important; /* 🚀 KILLS 300ms DELAY INSTANTLY */
    user-select: none; 
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.qty-morph {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make + and - buttons massive for fat fingers */
.qty-morph button {
    padding: 0 15px !important; /* Increases touch area */
    font-size: 1.5rem !important; /* Bigger icons */
    height: 100%;
    min-width: 40px;
    cursor: pointer;
}

/* Micro-animation for visual satisfaction */
.qty-val {
    transition: transform 0.1s ease-out;
    display: inline-block;
    pointer-events: none; /* Stops accidental text clicks */
}
/* ========================================================= */
/* 🚀 PREMIUM GROUP ORDER PILL (Dynamic Island Style)        */
/* ========================================================= */
.group-pill-banner {
    position: fixed;
    top: 75px; /* Header ke theek neeche, search bar ke oopar */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 77, 60, 0.08);
    padding: 8px 12px 8px 20px;
    border-radius: 50px;
    display: none; /* JS handle karega */
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 400px;
    z-index: 4000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.group-pill-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-green);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(10, 77, 60, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(10, 77, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(10, 77, 60, 0); }
}

/* Modern Exit Button */
.modern-exit-btn {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.modern-exit-btn:active {
    transform: scale(0.95);
    background: #e74c3c;
    color: white;
}
/* ========================================================= */
/* 🛠️ CART OVERFLOW FIX FOR EXTRA LONG NAMES                 */
/* ========================================================= */

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start !important; /* Text lamba ho toh + - box top par rahe */
    width: 100%;
    box-sizing: border-box;
}

.cart-item-info {
    flex: 1;
    min-width: 0; /* MAGIC RULE 1: Forces flex container to shrink instead of push */
    padding-right: 15px;
}

.cart-item-name {
    word-break: break-word; /* MAGIC RULE 2: Breaks long words without spaces */
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    margin-bottom: 5px;
}
/* ========================================================= */
/* 👥 GROUP ORDER MODAL (Masterpiece Edition)                */
/* ========================================================= */

.group-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 9999; display: none; 
    align-items: flex-end; justify-content: center;
    /* Smooth background fade in */
    animation: fadeInBg 0.4s ease-out forwards; 
}

.group-modal-sheet {
    background: #fff; width: 100%; max-width: 500px;
    border-radius: 28px 28px 0 0;
    padding: 25px 20px calc(30px + env(safe-area-inset-bottom)); 
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    /* 🟢 The Apple Spring Bounce Effect */
    animation: springUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Modal Drag Pill */
.modal-drag-pill {
    width: 45px; height: 5px; background: #e2e8f0;
    border-radius: 10px; margin: 0 auto 25px;
}

/* Close Button Hover FX */
.modal-close-btn {
    position: absolute; top: 20px; right: 20px;
    background: #f1f1f1; border: none; width: 36px; height: 36px;
    border-radius: 50%; color: #555; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.modal-close-btn:hover { background: #e2e8f0; transform: rotate(90deg); color: var(--brand-red); }

/* SVG Styling */
.icon-svg-green { color: var(--brand-green); display: flex; align-items: center; }
.modal-title {
    font-family: var(--font-heading, 'Outfit', sans-serif); 
    font-weight: 900; color: var(--text-main); font-size: 1.6rem; 
    margin-bottom: 8px; display: flex; align-items: center; gap: 12px;
}
.modal-desc {
    font-size: 0.95rem; color: var(--text-soft); 
    margin-bottom: 25px; line-height: 1.5; font-weight: 500;
}

/* Input Fields */
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label {
    display: block; font-size: 0.85rem; font-weight: 700; 
    color: var(--text-main); margin-bottom: 8px; margin-left: 2px;
}
.required-star { color: var(--brand-red); }

.input-wrapper { position: relative; }
.input-icon {
    position: absolute; left: 16px; top: 50%; 
    transform: translateY(-50%); color: var(--text-soft);
    display: flex; align-items: center;
}
.icon-bold { font-weight: 800; font-size: 1.2rem; }

.premium-input {
    width: 100%; box-sizing: border-box; 
    padding: 16px 16px 16px 45px; border-radius: 16px; 
    border: 1px solid #e2e8f0; background: #f8fafc; 
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif); 
    font-size: 1.05rem; outline: none; transition: all 0.3s ease; 
    color: var(--text-main); font-weight: 600;
}
.premium-input:focus {
    border-color: var(--brand-green); background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 77, 60, 0.1);
}

/* Action Button */
.generate-link-btn {
    width: 100%; background: var(--brand-green); color: white; 
    padding: 18px; border-radius: 16px; border: none; 
    font-family: var(--font-heading, 'Outfit', sans-serif); 
    font-weight: 800; font-size: 1.15rem; 
    box-shadow: 0 8px 25px rgba(10, 77, 60, 0.3); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.generate-link-btn:hover { background: #083c2e; transform: translateY(-2px); }
.generate-link-btn:hover #arrow-svg { transform: translateX(5px); } /* Arrow moves slightly right */
.generate-link-btn:active { transform: scale(0.97); }

/* ========================================================= */
/* 🌟 THE "MASTERPIECE" ANIMATION KEYFRAMES                  */
/* ========================================================= */

@keyframes fadeInBg { from { opacity: 0; } to { opacity: 1; } }

/* The Spring Bounce */
@keyframes springUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

/* The Staggered Fade Up for inner content */
@keyframes staggerFadeUp {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Applying delays to make them appear one after another */
.modal-stagger-1 { opacity: 0; animation: staggerFadeUp 0.4s ease-out 0.1s forwards; }
.modal-stagger-2 { opacity: 0; animation: staggerFadeUp 0.4s ease-out 0.15s forwards; }
.modal-stagger-3 { opacity: 0; animation: staggerFadeUp 0.4s ease-out 0.2s forwards; }
.modal-stagger-4 { opacity: 0; animation: staggerFadeUp 0.4s ease-out 0.25s forwards; }
/* ==================================================
   🏆 PREMIUM CENTERED FOOTER 
   ================================================== */
.ts-footer-centered {
    background: var(--bg-canvas, #fdfaf6);
    padding: 60px 20px 120px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ts-footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.ts-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
}

.ts-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-green);
}

.ts-footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ts-footer-desc {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.ts-footer-branches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding: 30px 0;
}

.ts-branch h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--brand-green);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ts-branch p {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.ts-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.ts-footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ts-footer-links a:hover {
    color: var(--brand-green);
}

.ts-footer-links .ts-dot {
    color: #ccc;
}

.ts-copyright {
    font-size: 0.75rem;
    color: #999;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .hide-mobile { display: none !important; }
}
/* --- RUSH MODE BANNER --- */
.rush-banner {
    display: none; /* Default hidden */
    background: #FFC107;
    color: #000;
    padding: 12px 20px;
    text-align: center;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    position: relative;
    z-index: 940;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
/* =========================================================
   🚀 2030 PROGRAMMATIC SEO BANNER
   ========================================================= */
.seo-banner-wrapper {
    padding: 10px 25px 5px;
}
.seo-banner-card {
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.05) 0%, rgba(10, 77, 60, 0.12) 100%);
    border: 1px solid rgba(10, 77, 60, 0.15);
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.seo-banner-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.05;
    pointer-events: none;
}
.seo-location-pill {
    display: inline-block;
    background: var(--brand-yellow);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(236, 163, 34, 0.3);
}
.seo-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-green);
    margin: 0 0 8px;
    line-height: 1.15;
}
.seo-banner-desc {
    font-size: 0.95rem;
    color: var(--text-core);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}
.seo-text-green { color: var(--brand-green); }
.seo-text-red { color: var(--brand-red); }

@media (max-width: 768px) {
    .seo-banner-wrapper { padding: 10px 15px 5px; }
    .seo-banner-title { font-size: 1.5rem; }
    .seo-banner-desc { font-size: 0.85rem; }
}
.cart-bounce {
    animation: cartBounce .35s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    45% { transform: scale(1.16); }
    100% { transform: scale(1); }
}