/* Tikka Biryani — maroon & saffron gold brand theme */
:root {
  --maroon: #6d1220;
  --maroon-dark: #4c0c16;
  --gold: #e0a83c;
  --gold-light: #f2c56b;
  --cream: #faf6ef;
  --charcoal: #2b2320;
  --text: #3a2f2a;
  --muted: #8a7a70;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(76, 12, 22, .12);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
html[dir="rtl"] body { font-family: var(--font-urdu); line-height: 2; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { font-family: var(--font-urdu); }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(76, 12, 22, .97);
  backdrop-filter: blur(6px);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; gap: 18px; padding: 10px 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 84px; height: 84px; object-fit: contain; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; letter-spacing: .5px; }
.brand-name em { color: var(--gold); font-style: normal; }
.main-nav { display: flex; gap: 22px; margin-inline-start: auto; font-weight: 500; font-size: .95rem; }
.main-nav a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  background: none; border: none; padding: 0;
  color: var(--gold-light); cursor: pointer;
  font-size: .95rem; font-weight: 500; font-family: var(--font-urdu);
}
html[dir="rtl"] .lang-toggle { font-family: var(--font-body); }
.lang-toggle:hover { text-decoration: underline; }
.cart-btn {
  position: relative; background: var(--gold); color: var(--maroon-dark);
  border: none; border-radius: 50%; width: 42px; height: 42px;
  display: grid; place-items: center; cursor: pointer;
}
.cart-count {
  position: absolute; top: -6px; inset-inline-end: -6px;
  background: var(--maroon); color: #fff; border: 2px solid var(--gold);
  font-size: .7rem; font-weight: 700; border-radius: 50%;
  width: 22px; height: 22px; display: grid; place-items: center;
}
.nav-burger { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-video { animation: none; } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,7,13,.88) 0%, rgba(44,7,13,.55) 45%, rgba(44,7,13,.15) 100%);
}
html[dir="rtl"] .hero-overlay {
  background: linear-gradient(270deg, rgba(44,7,13,.88) 0%, rgba(44,7,13,.55) 45%, rgba(44,7,13,.15) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--cream); padding: 70px 20px; max-width: 1120px; width: 100%; }
.hero-kicker { color: var(--gold-light); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: .85rem; }
html[dir="rtl"] .hero-kicker { letter-spacing: 0; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.12; margin: 12px 0 16px; }
html[dir="rtl"] .hero-title { line-height: 1.9; }
.hero-sub { max-width: 520px; font-size: 1.05rem; opacity: .92; }
.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.cod-badge { background: rgba(0,0,0,.35); border: 1px solid rgba(242,197,107,.5); padding: 8px 14px; border-radius: 30px; font-size: .9rem; }

/* Buttons */
.btn {
  display: inline-block; border: none; cursor: pointer;
  padding: 13px 26px; border-radius: 30px;
  font-weight: 700; font-size: 1rem; font-family: var(--font-body);
  transition: transform .15s, box-shadow .15s;
}
html[dir="rtl"] .btn { font-family: var(--font-urdu); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-dark); }
.btn-maroon { background: var(--maroon); color: var(--cream); }
.btn-block { width: 100%; }

/* Sections */
.strip { padding: 52px 0 20px; }

/* Today's Special / New Entry strip banners — deliberately distinct from
   the photo-backed category banners: bold brand gradients, no photos */
.strip-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 92px; border-radius: var(--radius); margin-bottom: 8px;
}
.strip-banner .flame { font-size: 1.8rem; }
.strip-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 1px; text-align: center;
}
.banner-special {
  background:
    radial-gradient(circle at 12% 50%, rgba(224,168,60,.22) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 50%, rgba(224,168,60,.22) 0 8px, transparent 9px),
    linear-gradient(120deg, var(--maroon-dark), var(--maroon) 55%, #8a1a2b);
  border: 1.5px solid var(--gold);
}
.banner-special h2 { color: var(--gold-light); }
.banner-new {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 60%, #f7d590);
  border: 1.5px dashed var(--maroon);
}
.banner-new h2 { color: var(--maroon-dark); }
.section-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--maroon-dark); margin-bottom: 6px; text-align: center; }
.section-sub { color: var(--muted); margin-bottom: 22px; text-align: center; }
.cat-tabs { justify-content: center; }
.cards-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin-top: 18px; }

/* Item cards */
.item-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px; display: flex; flex-direction: column; gap: 8px; position: relative;
  text-align: center; align-items: center; overflow: hidden;
}
.item-card.unavailable { opacity: .55; }
.item-img {
  width: calc(100% + 36px); margin: -18px -18px 10px;
  height: 170px; object-fit: cover; display: block;
}
.item-badges { position: absolute; top: 10px; inset-inline-end: 10px; display: flex; gap: 6px; z-index: 2; }
.badge { font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; }
.badge-special { background: var(--maroon); color: var(--gold-light); }
.badge-new { background: var(--gold); color: var(--maroon-dark); }
.item-name { font-weight: 600; font-size: 1.02rem; color: var(--charcoal); }
.item-desc { font-size: .85rem; color: var(--muted); flex: 1; }
.item-foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 6px; width: 100%; }
.item-price { font-weight: 700; color: var(--maroon); }
.add-btn {
  background: var(--maroon); color: var(--cream); border: none;
  border-radius: 20px; padding: 7px 18px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: background .15s;
}
.add-btn:hover { background: var(--maroon-dark); }
.add-btn:disabled { background: var(--muted); cursor: not-allowed; }

/* Promo banners (Today's Special / New Entry) */
.promo-stack { display: flex; flex-direction: column; gap: 20px; margin-top: 18px; }
.promo-card {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: 280px;
}
.promo-img { min-height: 200px; }
.promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-body {
  padding: 28px 34px; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; gap: 10px; text-align: start;
}
.promo-badge { font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 14px; letter-spacing: 1px; text-transform: uppercase; }
html[dir="rtl"] .promo-badge { letter-spacing: 0; }
.promo-name { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2; }
.promo-desc { font-size: .95rem; opacity: .85; }
.promo-pair { font-size: .88rem; font-weight: 600; }
.promo-foot { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.promo-price { font-size: 1.6rem; font-weight: 800; }
.promo-add { padding: 11px 28px; font-size: 1rem; }

.promo-special { background: linear-gradient(120deg, var(--maroon-dark), var(--maroon)); color: var(--cream); }
.promo-special .promo-badge { background: var(--gold); color: var(--maroon-dark); }
.promo-special .promo-name { color: var(--gold-light); }
.promo-special .promo-price { color: var(--gold-light); }
.promo-special .promo-pair { color: var(--gold-light); }
.promo-special .promo-add { background: var(--gold); color: var(--maroon-dark); }
.promo-special .promo-add:hover { background: var(--gold-light); }

.promo-new { background: linear-gradient(120deg, #f9edd2, #fffdf8); color: var(--text); }
.promo-new .promo-badge { background: var(--maroon); color: var(--gold-light); }
.promo-new .promo-name { color: var(--maroon-dark); }
.promo-new .promo-price { color: var(--maroon); }
.promo-new .promo-pair { color: var(--maroon); }

@media (max-width: 760px) {
  .promo-card { grid-template-columns: 1fr; }
  .promo-img { max-height: 220px; }
}

/* Menu */
.menu-section { padding: 56px 0; }
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.cat-tab {
  border: 1.5px solid var(--maroon); color: var(--maroon); background: transparent;
  border-radius: 24px; padding: 7px 18px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: .92rem;
}
.cat-tab.active, .cat-tab:hover { background: var(--maroon); color: var(--cream); }
.cat-block { margin-bottom: 36px; }
.cat-banner {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 130px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--maroon-dark) center/cover no-repeat;
}
.cat-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(44,7,13,.45), rgba(44,7,13,.65));
}
.cat-banner h3 {
  position: relative; z-index: 1;
  font-family: var(--font-head); color: var(--gold-light);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5); text-align: center; padding: 10px;
}

/* Delivery */
.delivery-section { background: var(--maroon-dark); color: var(--cream); padding: 60px 0; }
.delivery-section .section-title { color: var(--gold-light); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 26px 0 34px; }
.step { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 22px; text-align: center; }
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--gold-light); }
.step p { font-size: .88rem; opacity: .85; }
.areas-box h3 { color: var(--gold-light); margin-bottom: 12px; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(242,197,107,.35); border-radius: 18px; padding: 5px 14px; font-size: .85rem; }

/* Footer */
.site-footer { background: var(--charcoal); color: #d9cfc7; padding-top: 46px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-brand img { width: 74px; border-radius: 50%; margin-bottom: 12px; }
.footer-col h4 { color: var(--gold-light); margin-bottom: 10px; }
.footer-col p { font-size: .9rem; margin-bottom: 6px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0; text-align: center; font-size: .8rem; opacity: .7; }

/* Cart drawer */
.drawer-backdrop, .modal-backdrop {
  position: fixed; inset: 0; background: rgba(20,5,8,.55); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.drawer-backdrop.open, .modal-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0; width: min(400px, 92vw);
  background: var(--cream); z-index: 95; padding: 20px;
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .25s;
  box-shadow: -8px 0 30px rgba(0,0,0,.25);
}
html[dir="rtl"] .cart-drawer { transform: translateX(-105%); }
.cart-drawer.open { transform: translateX(0) !important; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer-head h3 { font-family: var(--font-head); color: var(--maroon-dark); }
.drawer-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 40px; }
.cart-line { background: #fff; border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 600; font-size: .92rem; }
.cart-line-price { font-size: .8rem; color: var(--muted); }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--maroon); background: none; color: var(--maroon); font-weight: 700; cursor: pointer; }
.qty-btn:hover { background: var(--maroon); color: #fff; }
.cart-summary { padding: 14px 4px; font-size: .95rem; }
.sum-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.sum-total { font-weight: 700; font-size: 1.1rem; color: var(--maroon-dark); border-top: 1px dashed var(--muted); padding-top: 8px; margin-top: 6px; }
.min-warn { color: #b3261e; font-size: .85rem; margin-top: 6px; }

/* Checkout modal */
.modal-backdrop { display: flex; align-items: center; justify-content: center; padding: 16px; overflow-y: auto; }
.modal { background: var(--cream); border-radius: var(--radius); width: min(480px, 100%); padding: 24px; max-height: 92vh; overflow-y: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.modal-head h3 { font-family: var(--font-head); color: var(--maroon-dark); }
#checkoutForm label { display: block; margin-bottom: 12px; font-size: .88rem; font-weight: 500; }
#checkoutForm input, #checkoutForm select, #checkoutForm textarea {
  width: 100%; margin-top: 4px; padding: 10px 12px;
  border: 1.5px solid #d8cabc; border-radius: 10px;
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--text);
}
#checkoutForm input:focus, #checkoutForm select:focus, #checkoutForm textarea:focus { outline: none; border-color: var(--gold); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.co-summary { background: #fff; border-radius: 10px; padding: 12px 14px; margin: 10px 0 14px; font-size: .9rem; }
.form-error { color: #b3261e; font-size: .88rem; margin-bottom: 10px; }
.co-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 10px; }
.order-done { text-align: center; padding: 20px 0; }
.done-icon { font-size: 3rem; margin-bottom: 10px; }
.order-done h3 { font-family: var(--font-head); color: var(--maroon-dark); margin-bottom: 8px; }
.order-done p { margin-bottom: 8px; }
.order-done .btn { margin-top: 12px; }

/* Floating WhatsApp button */
.wa-float[hidden] { display: none; }
.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--maroon-dark); flex-direction: column; padding: 16px 24px; gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-burger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 64vh; }
}
