/* GLOBAL RESETS */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #0a0a0a; color: #fff; overflow-x: hidden; }

/* NAVBAR & HERO (Same as before, modified slightly for cart) */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: rgba(10,10,10,0.9); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,193,7,0.2); }
.logo h2 { font-size: 1.2rem; font-weight: 800; }
.logo span { color: #ffc107; }
.cart-icon { position: relative; cursor: pointer; font-size: 1.5rem; color: #ffc107; }
#cart-count { position: absolute; top: -5px; right: -10px; background: red; color: white; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; font-weight: bold; }

.hero-section { position: relative; height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover; }
.overlay { position: absolute; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.6), #0a0a0a); }
.hero-content { position: relative; z-index: 2; padding: 20px; }
.badge { background: rgba(255,193,7,0.1); color: #ffc107; padding: 5px 15px; border-radius: 20px; font-weight: 700; border: 1px solid #ffc107; display: inline-block; margin-bottom: 15px; }
.main-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.highlight { color: #ffc107; font-family: 'Playfair Display', serif; font-style: italic; }
.btn { padding: 12px 25px; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-block; cursor: pointer; }
.btn-primary { background: #ffc107; color: #000; transition: 0.3s; }
.btn-primary:hover { background: #e0a800; transform: translateY(-3px); }

/* MENU SECTION */
.menu-section { padding: 50px 5%; text-align: center; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 30px; }
.section-title span { color: #ffc107; font-family: 'Playfair Display', serif; font-style: italic; }

.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tab-btn { background: transparent; color: #fff; border: 1px solid #333; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.tab-btn.active, .tab-btn:hover { background: #ffc107; color: #000; border-color: #ffc107; }

/* MENU CARDS */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.menu-card { background: #111; border-radius: 15px; border: 1px solid #222; overflow: hidden; text-align: left; padding-bottom: 15px; }
.menu-card img { width: 100%; height: 200px; object-fit: cover; border-bottom: 2px solid #ffc107; }
.card-content { padding: 15px; }
.card-title { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.card-desc { font-size: 0.8rem; color: #888; margin-bottom: 15px; height: 35px; overflow: hidden; }

/* Size Selector & Add to Cart logic inside card */
.card-action { display: flex; flex-direction: column; gap: 10px; }
.size-selector { width: 100%; padding: 8px; background: #222; color: #fff; border: 1px solid #444; border-radius: 5px; outline: none; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.item-price { font-size: 1.2rem; font-weight: bold; color: #ffc107; }
.add-btn { background: #25D366; color: #fff; border: none; padding: 8px 15px; border-radius: 5px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.add-btn:hover { background: #1eb858; transform: scale(1.05); }

/* ================= CART SIDEBAR ================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    max-width: 100%;
    /* 100vh ki jagah 100dvh (Dynamic Viewport Height) mobile ke liye best hai */
    height: 100dvh; 
    background: #151515;
    border-left: 1px solid #333;
    z-index: 2500; /* Menu ke upar dikhane ke liye isko 2500 kar diya */
    padding: 20px 20px 40px 20px; /* Bottom mein extra 40px padding daal di */
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.8);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-shrink: 0; /* Header ko dabne se rokega */
}

.cart-header h3 {
    color: #ffc107;
    font-size: 1.5rem;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex-grow: 1; /* Bachi hui saari jagah ye lega */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 5px;
}

.cart-items::-webkit-scrollbar { width: 5px; }
.cart-items::-webkit-scrollbar-thumb { background: #ffc107; border-radius: 10px; }
.empty-cart-msg { text-align: center; color: #777; margin-top: 50px; }

.cart-item { display: flex; justify-content: space-between; background: #222; padding: 10px; border-radius: 8px; }
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 5px; }
.cart-item-info small { color: #ffc107; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; }
.del-btn { color: #ff4d4d; background: transparent; border: none; cursor: pointer; font-size: 1.2rem; }

/* CART FOOTER FIX */
.cart-footer {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: auto; /* Isko hamesha neeche dhakel ke rakhega */
    flex-shrink: 0; /* Footer ko kabhi dabne nahi dega */
    background: #151515; /* Same as sidebar background */
}

.total-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; }
.total-price { color: #ffc107; }
.checkout-btn { width: 100%; background: #25D366; color: #fff; border: none; padding: 15px; border-radius: 10px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.checkout-btn:hover { background: #1eb858; transform: translateY(-3px); }


/* ================= FULL SCREEN MENU SPA STYLES ================= */
.full-screen-menu {
    position: fixed;
    top: 0; /* Isko 0 kar diya */
    left: 0;
    width: 100%;
    height: 100dvh; /* Mobile ke liye exact height */
    background: #050505;
    z-index: 2000; 
    overflow-y: auto;
    padding: 0 5% 100px 5%;
    
    /* 🔥 THE MAGIC FIX 🔥 */
    transform: translateY(100%); /* Screen ke bahar neeche fek diya */
    visibility: hidden; /* Dikhega hi nahi jab tak active na ho */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

/* Jab menu open hoga tab ye class kaam aayegi */
.full-screen-menu.active {
    transform: translateY(0); /* Wapas screen ke upar laaya */
    visibility: visible; /* Ab dikhne lag jayega */
}


/* Sticky Header inside Menu */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-bottom: 20px;
    z-index: 10;
    border-bottom: 1px solid #222;
}

.menu-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.menu-header span {
    color: #ffc107;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Back Button */
.close-menu-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.close-menu-btn:hover {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

/* Customizing the View Full Menu Button */
.menu-toggle-btn {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.menu-toggle-btn:hover {
    transform: translateY(-3px);
    background: #e0a800;
}
/* ================= SIDE DRAWER STYLES ================= */
.drawer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(3px);
    z-index: 2999; opacity: 0; visibility: hidden; transition: 0.3s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

.side-drawer {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100dvh;
    background: #111; z-index: 3000; border-right: 1px solid #333;
    display: flex; flex-direction: column; transition: left 0.4s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.9);
}
.side-drawer.open { left: 0; }

.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px; border-bottom: 1px solid #222;
}
.drawer-header h3 { color: #ffc107; font-size: 1.5rem; }
.close-drawer { color: #fff; font-size: 1.5rem; cursor: pointer; }

.drawer-links { padding: 20px 0; display: flex; flex-direction: column; }
.drawer-links a {
    color: #ddd; text-decoration: none; padding: 15px 20px; font-size: 1.1rem;
    display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #1a1a1a;
    transition: 0.3s;
}
.drawer-links a:hover { background: #222; color: #ffc107; padding-left: 25px; }
.drawer-links a i { color: #ffc107; width: 20px; text-align: center; }

.drawer-footer { margin-top: auto; padding: 20px; text-align: center; color: #666; font-size: 0.8rem; border-top: 1px solid #222;}

/* ================= MODAL (POPUP) STYLES ================= */
.custom-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 4000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.3s; padding: 20px;
}
.custom-modal.active { opacity: 1; visibility: visible; }

.modal-content {
    background: #151515; border: 1px solid #333; border-radius: 20px;
    padding: 30px; width: 100%; max-width: 400px; text-align: center;
    position: relative; transform: scale(0.8); transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255,193,7,0.1);
}
.custom-modal.active .modal-content { transform: scale(1); }

.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: #888; transition: 0.3s;}
.close-modal:hover { color: #ff4d4d; }

.modal-content h2 { margin-bottom: 20px; font-size: 2rem; }
.modal-content h2 span { color: #ffc107; font-family: 'Playfair Display', serif; font-style: italic; }

/* Story Image Styling */
.founder-img {
    width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
    border: 3px solid #ffc107; margin-bottom: 20px; padding: 3px; background: #000;
}
.story-text { color: #ccc; font-size: 0.95rem; line-height: 1.6; }

/* Contact Styling Fix */
.contact-info { 
    margin-bottom: 25px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-info p { 
    display: flex; 
    align-items: flex-start; /* Icon ko hamesha pehli line ke top par rakhega */
    justify-content: center; 
    gap: 12px; 
    color: #ccc; 
    font-size: 0.95rem; 
    line-height: 1.5;
    margin: 0;
}
.contact-info p i { 
    color: #ffc107; 
    margin-top: 4px; /* Icon ko text ke exact center aakhon ke samne layega */
    flex-shrink: 0; /* Icon ko pichakne (squish) hone se rokega */
    font-size: 1.2rem;
}
.contact-info p span {
    text-align: left; /* Text ko ekdum neat aur straight rakhega */
    max-width: 220px; /* Text ko zaroorat se zyada failne nahi dega */
}

/* Social Buttons */
.social-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.social-btn { padding: 14px; border-radius: 30px; text-decoration: none; color: #fff; font-weight: bold; font-size: 1.05rem; display: flex; justify-content: center; align-items: center; gap: 10px; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.whatsapp { background: #25D366; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }

/* FSSAI Styling */
.fssai-icon { font-size: 4rem; color: #ffc107; margin-bottom: 15px; }
/* ================= FOOTER & REVIEWS STYLES ================= */
.main-footer {
    background: #080808; /* Ekdum deep dark theme */
    padding: 60px 5% 30px 5%;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-heading {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
}

.footer-heading span {
    color: #ffc107;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.reviews-widget-container {
    margin-bottom: 40px;
    min-height: 150px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin: 40px 0;
    width: 100%;
}

/* Bottom Area Flexbox */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: #888;
    font-size: 0.9rem;
}

.footer-item {
    flex: 1;
    min-width: 250px; /* Mobile pe automatically stack hone ke liye */
}

/* FSSAI Left Side */
.fssai-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    text-align: left;
}

.fssai-info i {
    font-size: 2.2rem;
    color: #ffc107;
    opacity: 0.9;
}

.fssai-info strong {
    color: #ccc;
    font-size: 1rem;
}

.fssai-info span {
    font-size: 0.8rem;
    color: #666;
}

/* Center Love */
.made-love {
    font-weight: 600;
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Right Copyright */
.copyright {
    text-align: right;
    line-height: 1.5;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .fssai-info {
        justify-content: center;
        text-align: center;
    }
    .copyright {
        text-align: center;
    }
}
/* ================= BESTSELLERS SECTION ================= */
.bestsellers-section {
    padding: 40px 20px;
    background: #0f0f0f;
}

.bestsellers-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}
.bestsellers-section h2 span {
    color: #ffc107;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile pe 2 columns */
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.best-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.best-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 2px solid #ffc107;
}

.best-info {
    padding: 12px;
}

.best-info h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-add .price {
    color: #ffc107;
    font-weight: bold;
    font-size: 1rem;
}

.price-add .add-btn {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}
.price-add .add-btn:active { transform: scale(0.9); }

/* ================= INSTAGRAM MARQUEE (AUTO-SCROLL) ================= */
.insta-slider-section {
    padding: 30px 0;
    background: #0a0a0a;
    overflow: hidden; /* Bahar nikalte hue images ko chupayega */
    border-top: 1px solid #222;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

/* Ye track continuously left move karega */
.marquee-track {
    display: inline-flex;
    gap: 15px;
    animation: scrollInsta 15s linear infinite; /* 15s speed hai, kam/jyada kar sakta hai */
}

/* Hover karne par scroll ruk jayega */
.marquee-track:hover {
    animation-play-state: paused; 
}

.insta-box {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #333;
    transition: 0.3s;
    display: block;
}

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

.insta-box:hover {
    border-color: #ffc107;
}

.insta-box:hover img {
    transform: scale(1.1); /* Hover par image zoom hogi */
}

/* Insta Logo overlay on hover */
.insta-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.insta-box:hover .insta-hover-icon {
    opacity: 1; /* Hover par Insta ka logo dikhega */
}

/* The Continuous Scroll Magic */
@keyframes scrollInsta {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); } 
    /* 50% shift for duplicate set seamless loop */
}
/* ================= LOCATION MAP CARD ================= */
.location-section {
    margin: 40px auto;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}
.map-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-align: left;
}
.map-card:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.2);
}
.map-icon i { font-size: 2.5rem; color: #ffc107; }
.map-text h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.map-text p { color: #aaa; font-size: 0.9rem; margin-bottom: 10px; }
.get-directions { color: #ffc107; font-size: 0.9rem; font-weight: bold; display: flex; align-items: center; gap: 5px; }

/* ================= FLOATING CONTACT BOT ================= */
.floating-contact-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy pop effect */
    transform-origin: bottom;
}
.contact-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.f-btn {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #fff; font-size: 1.2rem; text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.f-btn:hover { transform: scale(1.1); }
.f-btn.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.f-btn.whatsapp { background: #25D366; }
.f-btn.phone { background: #007bff; }

.main-fab {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #ffc107; color: #000;
    font-size: 1.8rem; border: none; outline: none;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    cursor: pointer; transition: 0.3s;
    display: flex; justify-content: center; align-items: center;
}
.main-fab:hover { transform: scale(1.1); }
/* ================= TOAST NOTIFICATION ================= */
#toast-box {
    position: fixed;
    bottom: 100px; /* Floating bot ke thoda upar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Taki toast ke aar-paar click ho sake */
}

.toast {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: toastEnter 0.4s ease forwards, toastExit 0.4s ease 2.5s forwards;
}

.toast i {
    color: #00e676; /* Green checkmark */
    font-size: 1.2rem;
}

@keyframes toastEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes toastExit {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
/* ================= PREMIUM ANIMATIONS ================= */

/* 1. Initial Page Load Animation (For Hero Section) */
.hero-content {
    opacity: 0;
    animation: fadeUpLoad 1s ease-out 0.2s forwards;
}

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

/* 2. Scroll Animations (Hidden & Show states) */
.scroll-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth Apple-like easing */
}

.scroll-show {
    opacity: 1;
    transform: translateY(0);
}
/* ================= STORE BANNER & DISABLED BUTTONS ================= */
#store-status-banner {
    background: #dc3545; color: #fff; text-align: center; padding: 10px; 
    font-weight: bold; position: sticky; top: 60px; z-index: 1000;
}
.add-btn.disabled {
    background: #333 !important; color: #777 !important; 
    cursor: not-allowed; border: 1px solid #444; transform: none !important;
}

/* ================= SMART SEARCH BAR ================= */
.search-container {
    margin: 10px 20px 20px 20px; position: relative; max-width: 600px; margin-inline: auto;
}
.search-container i {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #888;
}
#search-input {
    width: 100%; padding: 12px 15px 12px 40px; border-radius: 25px; 
    border: 1px solid #333; background: #1a1a1a; color: #fff; 
    font-size: 1rem; outline: none; transition: 0.3s;
}
#search-input:focus {
    border-color: #ffc107; box-shadow: 0 0 10px rgba(255,193,7,0.2);
}

/* ================= DELIVERY TOGGLE & BILL BREAKDOWN ================= */
.delivery-toggle {
    display: flex; gap: 10px; margin-bottom: 15px; background: #111; padding: 5px; border-radius: 10px;
}
.toggle-btn {
    flex: 1; padding: 10px; border: none; background: transparent; 
    color: #888; border-radius: 8px; cursor: pointer; transition: 0.3s; font-weight: bold;
}
.toggle-btn.active {
    background: #ffc107; color: #000;
}
.bill-details {
    background: #1a1a1a; padding: 15px; border-radius: 10px; margin-bottom: 15px; font-size: 0.95rem;
}
.bill-row {
    display: flex; justify-content: space-between; margin-bottom: 8px; color: #ccc;
}
.bill-row.grand-total {
    font-weight: bold; color: #fff; font-size: 1.1rem; margin-bottom: 0; color: #00e676;
}
/* ================= SMART REVIEW POP-UP ================= */
.review-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Halka kaala andhera */
    backdrop-filter: blur(4px); /* Piche ka screen blur karega */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Shuru mein gayab */
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.review-overlay.show {
    opacity: 1;
    visibility: visible;
}

.review-box {
    background: rgba(30, 30, 30, 0.7); /* Transparent Glass Look */
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(50px) scale(0.9); /* Shuru mein neeche rahega */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy smooth effect */
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.review-overlay.show .review-box {
    transform: translateY(0) scale(1); /* Smoothly upar aayega */
}

.review-box h3 { color: #fff; margin-bottom: 10px; font-size: 1.3rem; }
.review-box p { color: #ccc; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.4; }

.review-btn {
    display: inline-block; background: #ffc107; color: #000;
    padding: 12px 25px; border-radius: 25px; text-decoration: none;
    font-weight: bold; transition: 0.3s;
}
.review-btn:hover { transform: scale(1.05); }
/* ================= PHONE RINGING ANIMATION ================= */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* ================= INSTAGRAM REEL PLAY OVERLAY ================= */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.55);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.insta-box:hover .play-overlay {
    opacity: 1;
}
