*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth;scroll-padding-top: 80px;}body{font-family:"Exo 2", sans-serif;background:#f5f5f5;color:#101010}.page{max-width:500px;margin:0 auto;background:#f7f7f7;min-height:100vh; border: 1px solid #cecece;}.hero{background:linear-gradient(180deg,#f60000 0%,#c51616 45%,#8b1717 100%);color:#fff;text-align:center;padding:28px 18px 35px}.top-actions{display:flex;justify-content:flex-end;gap:8px;margin-bottom:10px}.pill{background:rgba(255,255,255);border:1px solid rgba(255,255,255,.2);border-radius:24px;color:#b31616;text-decoration:none;font-size:13px;font-weight:700;padding:8px 13px}a.pill:hover{background: #b31616; color: #fff;}.logo{display:block;margin:8px auto 16px}.hero h1{font-size:34px;line-height:1.12;font-weight:600;margin-bottom:14px}.hero p{max-width:320px;margin:auto;font-size:15px;font-weight:600;line-height:1.5}.social{display:flex;justify-content:center;gap:25px;margin-top:24px; position: absolute; bottom: 20px;}.social a{color:#fff;font-size:29px;text-decoration:none;transition:.2s}.social a:hover{transform:translateY(-3px)}.quick-nav{position:sticky;top:0;z-index:5;background:#fff;padding:10px 12px;display:flex;gap:8px;overflow-x:auto;border-bottom:1px solid #eee}.quick-nav a{white-space:nowrap;text-decoration:none;background:#fff;color:#9b1717;border-radius:999px;border:1px solid #ededed;padding:8px 12px;font-size:13px;font-weight:600}.menu-area{padding:22px 14px 50px}.main-title{text-align:center;font-size:24px;font-weight: 600;color:#991818;margin-bottom:18px}.category-title{font-size:21px;font-weight: 600;color:#991818;margin:30px 0 14px;display:flex;align-items:center;gap:8px}.menu-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.card{display:block;position:relative;background:#fff;color:#111;text-decoration:none;border-radius:11px;padding:9px;overflow:hidden;box-shadow:0 3px 14px rgba(0,0,0,.1);transition:.2s}.card:hover{transform:translateY(-3px);box-shadow:0 8px 22px rgba(0,0,0,.16)}.img-wrap{position:relative}.card img{display:block;width:100%;height:145px;object-fit:cover;border-radius:8px;background:#eee}.cart{position:absolute;top:8px;right:8px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.94);color:#e75900;border-radius:8px;font-size:14px;box-shadow:0 2px 8px rgba(0,0,0,.14)}.name{font-size:15px;font-weight:600;line-height:1.25;margin-top:10px;min-height:38px}.desc{color:#777;font-size:14px;line-height:1.4;margin-top:5px;min-height:32px}.price{color:#e75900;font-size:17px;font-weight: 600;margin-top:10px}.deal .desc{min-height:118px}.full-menu-img{margin:28px 0 5px;background:#fff;border-radius:12px;padding:8px;box-shadow:0 3px 14px rgba(0,0,0,.1)}.full-menu-img img{width:100%;border-radius:8px;display:block}.footer{background:#8b1717;color:#fff;text-align:center;padding:25px 15px}.footer img{width:145px;max-width:60%;margin-bottom:10px}.footer p{font-size:13px;line-height:1.5}.footer a{font-size:13px;line-height:1.5; color: #fff;}.footer a:hover{font-size:13px;line-height:1.5; color: #fff}@media(max-width:360px){.hero h1{font-size:29px}.menu-area{padding-left:10px;padding-right:10px}.menu-grid{gap:10px}.card{padding:7px}.card img{height:125px}.name{font-size:14px}.price{font-size:16px}}

.full-menu-img {
    margin-top: 25px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.full-menu-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.full-menu-img img {
    display: block;
    width: 100%;
    height: auto;
}


.menu-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.94);
    padding: 15px;
}


.menu-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}


.menu-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}


.menu-modal img {
    display: block;
    max-width: 95%;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}


/* CLOSE BUTTON */

.menu-modal-close {
    position: fixed;
    top: 15px;
    right: 22px;
    z-index: 100000;
    color: #ffffff;
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 500px) {

    .menu-modal {
        padding: 8px;
    }

    .menu-modal img {
        max-width: 100%;
        max-height: 90vh;
    }

    .menu-modal-close {
        top: 10px;
        right: 15px;
        font-size: 42px;
    }

}

.hero{
  width:100%;
  min-height:60vh;
  background:url("../images/zingo-hero.png") center/cover no-repeat;
  position:relative;
}

.top-buttons{
  position:absolute;
  top:35px;
  right:45px;
  display:flex;
  gap:15px;
}

.top-buttons a{
  background:#fff;
  color:#9b0000;
  padding:14px 28px;
  border-radius:40px;
  font-weight:800;
  text-decoration:none;
  font-family:Poppins, sans-serif;
}

.top-buttons .order{
  background:#ffc21c;
}


/* CART + CHECKOUT */
.add-to-cart-btn{width:100%;border:0;background:#9b1717;color:#fff;font:inherit;font-size:13px;font-weight:700;border-radius:8px;padding:10px 8px;margin-top:12px;cursor:pointer;transition:.2s}.add-to-cart-btn:hover{background:#761010}.add-to-cart-btn i{margin-right:5px}.card{display:flex;flex-direction:column}.card .price{margin-top:auto;padding-top:10px}.cart-floating-btn{position:fixed;border: 1px solid rgba(255, 255, 255, .2);right:max(18px,calc((100vw - 500px)/2 + 18px));bottom:18px;z-index:9990;display:flex;align-items:center;gap:7px;border-radius:50px;padding:10px 17px;background:#b31616;font-family: "Exo 2", sans-serif;color:#fff;font-size:14px;font-weight:600;cursor:pointer;box-shadow:0 6px 22px rgba(0,0,0,.25)}.cart-count{min-width:24px;height:24px;display:inline-flex;justify-content:center;align-items:center;background:#fff;color:#9b1717;border-radius:50%;padding:0 5px;font-size:12px;font-weight:900}.cart-overlay{position:fixed;inset:0;z-index:9997;background:rgba(0,0,0,.55);opacity:0;visibility:hidden;transition:.25s}.cart-overlay.active{opacity:1;visibility:visible}.cart-drawer{position:fixed;top:0;right:-100%;z-index:9998;width:min(410px,100%);height:100dvh;background:#fff;color:#222;display:flex;flex-direction:column;transition:right .3s;}.cart-drawer.active{right:0}.cart-header{display:flex;justify-content:space-between;align-items:center;padding:18px;background:#9b1717;color:#fff}.cart-header h2{font-size:21px}.cart-close-btn{border:0;background:transparent;color:#fff;font-size:34px;line-height:1;cursor:pointer}.cart-items{flex:1;overflow-y:auto;padding:15px}.cart-item{display:grid;grid-template-columns:65px 1fr;gap:12px;padding:12px 0;border-bottom:1px solid #eee}.cart-item-image{width:65px;height:65px;object-fit:cover;border-radius:8px;background:#f2f2f2}.cart-item-name{font-size:15px;font-weight:600;margin-bottom:5px}.cart-item-option{color:#777;font-size:12px;margin-bottom:5px}.cart-item-price{color:#9b1717;font-size:14px;font-weight:600}.cart-item-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:9px}.quantity-controls{display:flex;align-items:center;gap:9px}.quantity-btn{width:28px;height:28px;border:0;border-radius:6px;background:#f0f0f0;color:#222;font-size:17px;font-weight:800;cursor:pointer}.remove-item-btn{border:0;background:transparent;color:#c62828;font-size:12px;font-weight:700;cursor:pointer;font-family: "Exo 2", sans-serif;}.empty-cart-message{display:none;text-align:center;color:#777;padding:45px 20px;font-size:15px}.cart-footer{border-top:1px solid #eee;padding:16px;background:#fff}.free-delivery-message{display:flex;align-items:center;gap:9px;margin-bottom:13px;padding:10px 12px;border:1px solid #e4e4e4;border-radius:9px;background:#fafafa;color:#555;font-size:13px;font-weight:600;line-height:1.35}.free-delivery-message[hidden]{display:none!important}.free-delivery-message i{font-size:15px;flex:0 0 auto}.free-delivery-message strong{font-weight:800}.free-delivery-message.is-policy{color:#555}.free-delivery-message.is-policy i{color:#9b1717}.free-delivery-message.is-progress{background:#fff9ee;border-color:#f1d9a6;color:#6f4d0b}.free-delivery-message.is-progress i{color:#d98500}.free-delivery-message.is-unlocked{background:#f1fff6;border-color:#bde8cc;color:#1f6a3a}.free-delivery-message.is-unlocked i{color:#167b3b}.cart-total-row{display:flex;justify-content:space-between;margin-bottom:14px;font-size:18px}.cart-total-row strong{color:#9b1717}.checkout-btn,.confirm-clear-btn{width:100%;border:0;border-radius:9px;background:#25d366;color:#fff;font-family: "Exo 2", sans-serif;padding:14px;font-size:15px;font-weight:600;cursor:pointer}.checkout-btn:disabled{opacity:.5;cursor:not-allowed}.order-confirmation{margin-top:12px;padding:12px;background:#f1fff6;border:1px solid #bde8cc;border-radius:9px}.order-confirmation p{font-size:13px;line-height:1.4;margin-bottom:10px;color:#285c39}.confirm-clear-btn{background:#167b3b}.keep-cart-btn,.clear-cart-btn{width:100%;border:0;background:transparent;font-family: "Exo 2", sans-serif;color:#666;padding:11px 5px 0;font-size:13px;font-weight:700;cursor:pointer}.clear-cart-btn{color:#b71c1c}.option-modal{display:none;position:fixed;inset:0;z-index:100001;background:rgba(0,0,0,.65);padding:18px;align-items:center;justify-content:center}.option-modal.active{display:flex}.option-modal-box{position:relative;width:min(360px,100%);background:#fff;border-radius:14px;padding:22px;color:#222;box-shadow:0 15px 45px rgba(0,0,0,.3)}.option-modal-box h3{padding-right:30px;margin-bottom:14px;color:#8b1717}.option-modal-close{position:absolute;right:14px;top:10px;border:0;background:transparent;font-size:30px;cursor:pointer}.option-choices{display:grid;gap:10px}.option-choice{display:flex;justify-content:space-between;align-items:center;width:100%;border:1px solid #eee;background:#fff;border-radius:9px;padding:12px 14px;font:inherit;font-weight:600;cursor:pointer}.option-choice:hover{border-color:#9b1717;background:#fff7f7}
@media(max-width:540px){.cart-floating-btn{right:14px;bottom:14px}.cart-item{grid-template-columns:55px 1fr}.cart-item-image{width:55px;height:55px}}


/* CHECKOUT DETAILS MODAL */
.checkout-modal{display:none;position:fixed;inset:0;z-index:100002;background:rgba(0,0,0,.68);padding:18px;align-items:center;justify-content:center}.checkout-modal.active{display:flex}.checkout-modal-box{position:relative;width:min(430px,100%);max-height:92dvh;overflow-y:auto;background:#fff;border-radius:14px;padding:22px;color:#222;box-shadow:0 18px 50px rgba(0,0,0,.32)}.checkout-modal-box h3{padding-right:34px;margin-bottom:5px;color:#8b1717;font-size:22px}.checkout-intro{font-size:13px;line-height:1.45;color:#666;margin-bottom:18px}.checkout-modal-close{position:absolute;right:14px;top:10px;border:0;background:transparent;font-size:30px;line-height:1;cursor:pointer;color:#444}.checkout-field{margin-bottom:14px}.checkout-field label{display:block;font-size:13px;font-weight:700;margin-bottom:6px;color:#333}.checkout-field label span{color:#b31616}.checkout-field input,.checkout-field select,.checkout-field textarea{width:100%;border:1px solid #d9d9d9;border-radius:9px;padding:11px 12px;font:inherit;font-size:14px;background:#fff;color:#222;outline:none;transition:border-color .2s,box-shadow .2s}.checkout-field textarea{resize:vertical;min-height:72px}.checkout-field input:focus,.checkout-field select:focus,.checkout-field textarea:focus{border-color:#9b1717;box-shadow:0 0 0 3px rgba(155,23,23,.1)}.checkout-field .input-error{border-color:#c62828;background:#fff8f8}.field-error{display:block;min-height:16px;margin-top:4px;color:#c62828;font-size:11px}.save-details-row{display:flex;align-items:flex-start;gap:9px;margin:2px 0 16px;font-size:12px;line-height:1.4;color:#555;cursor:pointer}.save-details-row input{margin-top:2px}.send-order-btn{width:100%;border:0;border-radius:9px;background:#25d366;color:#fff;padding:14px;font:inherit;font-size:15px;font-weight:700;cursor:pointer}.send-order-btn i{margin-right:6px}.send-order-btn:hover{background:#1fb758}@media(max-width:500px){.checkout-modal{padding:10px}.checkout-modal-box{padding:19px 16px;max-height:95dvh}}

/* LIVE SHOP STATUS */
.shop-status-bar{margin:0 auto;background:#fff;border-bottom:1px solid #e8e8e8;padding:14px 16px;box-shadow:0 4px 14px rgba(0,0,0,.06)}
.shop-status-main{display:flex;align-items:center;gap:12px}.shop-status-dot{width:13px;height:13px;border-radius:50%;background:#999;box-shadow:0 0 0 5px rgba(153,153,153,.14);flex:0 0 auto}.shop-status-main strong{display:block;font-size:16px;color:#333}.shop-status-main p{margin:3px 0 0;color:#666;font-size:13px;line-height:1.35}.shop-status-meta{display:flex;flex-wrap:wrap;gap:8px 16px;margin-top:11px;padding-left:25px;color:#666;font-size:12px}.shop-status-meta i{color:#9b1717;margin-right:4px}.shop-status-bar.is-open{background:#f1fff6;border-color:#c7ecd4}.shop-status-bar.is-open .shop-status-dot{background:#1f9d55;box-shadow:0 0 0 5px rgba(31,157,85,.14)}.shop-status-bar.is-open .shop-status-main strong{color:#167b3b}.shop-status-bar.is-closed{background:#fff5f5;border-color:#f0caca}.shop-status-bar.is-closed .shop-status-dot{background:#c62828;box-shadow:0 0 0 5px rgba(198,40,40,.14)}.shop-status-bar.is-closed .shop-status-main strong{color:#a71919}

/* SHOP CLOSED MODAL */
.shop-closed-modal{display:none;position:fixed;inset:0;z-index:100004;background:rgba(0,0,0,.72);padding:18px;align-items:center;justify-content:center}.shop-closed-modal.active{display:flex}.shop-closed-modal-box{position:relative;width:min(370px,100%);background:#fff;border-radius:16px;padding:24px 22px;text-align:center;color:#222;box-shadow:0 18px 55px rgba(0,0,0,.35)}.shop-closed-modal-close{position:absolute;right:13px;top:8px;border:0;background:transparent;font-size:32px;line-height:1;color:#666;cursor:pointer}.shop-closed-logo{width:120px;max-width:45%;margin:0 auto 10px;display:block}.shop-closed-icon{width:62px;height:62px;border-radius:50%;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;background:#fff1f1;color:#b31616;font-size:27px}.shop-closed-modal-box h3{font-size:23px;color:#8b1717;margin-bottom:8px}.shop-closed-modal-box p{font-size:14px;line-height:1.5;color:#666}.shop-closed-hours{display:inline-block;margin:15px 0;padding:10px 18px;border-radius:999px;background:#8b1717;color:#fff;font-size:18px;font-weight:700}.shop-closed-note{font-size:13px!important}.shop-closed-ok{width:100%;border:0;border-radius:9px;margin-top:17px;padding:13px;background:#9b1717;color:#fff;font:inherit;font-weight:700;cursor:pointer}.shop-closed-ok:hover{background:#761010}
@media(max-width:420px){.shop-status-meta{display:grid;gap:7px;padding-left:25px}.shop-status-main strong{font-size:15px}.shop-closed-modal-box{padding:22px 18px}}


/* =========================================
   LIMITED AZADI DEALS
========================================= */
.limited-deals-section{margin-bottom:28px}.limited-deals-section[hidden]{display:none!important}.limited-deals-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;margin-bottom:14px}.limited-deals-heading h2{margin-top:5px;color:#8b1717;font-size:22px;font-weight:700}.limited-label{display:inline-block;background:#e72b36;color:#fff;border-radius:999px;padding:5px 10px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.4px}.limited-validity{color:#777;font-size:11px;font-weight:600;text-align:right}.limited-deals-grid{display:grid;gap:13px}.limited-deal-card{position:relative;display:grid;grid-template-columns:118px minmax(0,1fr);gap:13px;align-items:stretch;background:#fff;border-radius:16px;padding:9px;box-shadow:0 4px 16px rgba(0,0,0,.1);overflow:hidden}.limited-deal-image-wrap{position:relative;min-height:132px}.limited-deal-image{display:block;width:100%;height:100%;min-height:132px;object-fit:cover;border-radius:11px;background:#eee}.limited-deal-badge{position:absolute;top:0;right:0;background:#e72b36;color:#fff;border-radius:0 16px 0 12px;padding:7px 12px;font-size:11px;font-weight:700}.limited-deal-content{display:flex;flex-direction:column;min-width:0;padding:4px 3px 3px 0}.limited-deal-name{padding-right:70px;color:#111;font-size:17px;font-weight:700;line-height:1.2}.limited-deal-description{margin-top:7px;color:#666;font-size:12px;line-height:1.45}.limited-deal-meta{display:flex;justify-content:space-between;align-items:flex-end;gap:8px;margin-top:auto;padding-top:10px}.limited-deal-price{color:#e75900;font-size:20px;font-weight:800;white-space:nowrap}.limited-deal-date{color:#777;font-size:10px;line-height:1.3;text-align:right}.limited-deal-cart-btn{width:100%;margin-top:10px;border:0;border-radius:8px;padding:9px 10px;background:#9b1717;color:#fff;font-family:"Exo 2",sans-serif;font-size:12px;font-weight:700;cursor:pointer}.limited-deal-cart-btn:hover{background:#761010}.limited-deal-cart-btn i{margin-right:5px}
@media(max-width:390px){.limited-deal-card{grid-template-columns:100px minmax(0,1fr);gap:10px}.limited-deal-image-wrap,.limited-deal-image{min-height:125px}.limited-deal-name{padding-right:55px;font-size:15px}.limited-deal-description{font-size:11px}.limited-deal-badge{padding:6px 8px;font-size:9px}.limited-deal-price{font-size:18px}.limited-deals-heading{align-items:flex-start;flex-direction:column}.limited-validity{text-align:left}}


/* =========================================
   ZINGO COMBO DEALS
========================================= */
.combo-deals-section{margin:44px 0 28px}
.combo-deals-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:14px}
.combo-deals-heading h2{margin:5px 0 0;color:#8b1717;font-size:22px;font-weight:700}
.combo-deals-kicker{display:inline-block;background:#fff0d7;color:#b31616;border:1px solid #f3d3a4;border-radius:999px;padding:5px 10px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.5px}
.combo-deals-grid{display:grid;grid-template-columns:1fr;gap:14px}
.combo-deal-card{background:#fff;border:1px solid #eee;border-radius:16px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.09);transition:transform .2s ease,box-shadow .2s ease}
.combo-deal-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.14)}
.combo-deal-image-wrap{position:relative;background:#8b1717;overflow:hidden}
.combo-deal-image{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover}
.combo-deal-content{padding:12px 13px 13px}
.combo-deal-name{font-size:17px;font-weight:700;line-height:1.25;color:#161616}
.combo-deal-description{margin-top:5px;color:#686868;font-size:12px;line-height:1.45}
.combo-deal-bottom{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px}
.combo-deal-price{color:#e75900;font-size:20px;font-weight:800;white-space:nowrap}
.combo-deal-cart-btn{border:0;border-radius:9px;background:#9b1717;color:#fff;padding:10px 13px;font-family:"Exo 2",sans-serif;font-size:12px;font-weight:700;cursor:pointer;transition:.2s}
.combo-deal-cart-btn:hover{background:#761010;transform:translateY(-1px)}
.combo-deal-cart-btn i{margin-right:5px}
@media(max-width:390px){.combo-deal-content{padding:10px 11px 12px}.combo-deal-name{font-size:16px}.combo-deal-description{font-size:11px}.combo-deal-price{font-size:18px}.combo-deal-cart-btn{padding:9px 11px}}
