/* ============================================================
   Banaras Delight — Theme & Global Stylesheet
   Vibrant Banaras Sunset Palette: Terracotta Maroon, Saffron & Royal Gold
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary-maroon: #7A0909;
  --maroon-dark:     #4A0000;
  --saffron-orange:  #E65100;
  --saffron-bright:  #FF7D00;
  --gold:            #FFB300;
  --gold-accent:     #D4AF37;
  --gold-light:      #FFE082;
  --veg-green:       #16a34a;
  --bg:              #0D0602;
  --bg-surface:      #180A03;
  --bg-card:         #231005;
  --bg-lighter:      #301708;
  --border:          rgba(255, 179, 0, 0.22);
  --border-glow:     rgba(255, 125, 0, 0.45);
  --text:            #FFF5E6;
  --text-muted:      #C8A882;
  --radius:          1rem;
  --shadow:          0 12px 40px rgba(0,0,0,0.75);
  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  /* Varanasi Ganga Ghat / Temple Background */
  background-image: url('../images/varanasi_bg.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* Dark overlay so content stays readable over the temple BG */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(10, 3, 0, 0.88);
  z-index: 0;
  pointer-events: none;
}
/* All direct children of body stack above the overlay */
body > * { position: relative; z-index: 1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
.brand-font { font-family: 'Cinzel', serif; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,179,0,0.1);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.saffron { color: var(--saffron-bright); }
.hidden { display: none !important; }

/* ── Top Announcement Banner (Matching Poster Header) ───────── */
.top-bar {
  background: linear-gradient(90deg, #5A0000 0%, #8B0000 50%, #5A0000 100%);
  color: var(--gold-light);
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,179,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.top-bar-badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.top-bar-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  padding: 0.2rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 700;
  color: var(--gold);
}
@media(max-width: 768px) {
  .top-bar-badges { display: none; }
  .top-bar-inner { justify-content: center; }
}

/* ── Glass Card ────────────────────────────────────────────── */
.glass {
  background: rgba(35, 16, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron-bright) 0%, #D84315 100%);
  color: #FFF;
  box-shadow: 0 4px 20px rgba(255, 125, 0, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 125, 0, 0.6);
  background: linear-gradient(135deg, #FF9100 0%, #E65100 100%);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #261205;
  box-shadow: 0 4px 20px rgba(255,179,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,179,0,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #180A03;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,179,0,0.08);
  color: var(--gold);
  border: 1px solid rgba(255,179,0,0.25);
}
.btn-ghost:hover { background: rgba(255,179,0,0.18); }

/* ── Navbar ────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 6, 2, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--saffron-bright); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--saffron-bright), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  position: relative;
  background: linear-gradient(135deg, rgba(230,81,0,0.2), rgba(255,179,0,0.15));
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.55rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.cart-btn:hover {
  background: linear-gradient(135deg, rgba(230,81,0,0.35), rgba(255,179,0,0.25));
  border-color: var(--gold);
  transform: translateY(-1px);
}
.cart-badge {
  background: var(--saffron-bright);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.6rem;
  padding: 0.25rem;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(13,6,2,0.98);
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,179,0,0.1);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,179,0,0.08); }
@media(max-width:820px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav.open { display: flex; }
}

/* ── Hero Section (Banaras Theme) ───────────────────────────── */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(13,6,2,0.85) 0%, rgba(13,6,2,0.96) 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
@media(max-width:960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
}
.hero-slogan {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 900;
}
.hero-title span { color: var(--saffron-bright); display: block; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Hero Special Offer Card (Phulka Roti ₹10) ──────────────── */
.offer-hero-card {
  background: linear-gradient(145deg, #7A0909 0%, #4A0000 100%);
  border: 2px solid var(--gold);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 35px rgba(255, 125, 0, 0.35);
  animation: pulseBorder 3s infinite ease-in-out;
}
@keyframes pulseBorder {
  0%, 100% { border-color: var(--gold); box-shadow: 0 0 25px rgba(255,179,0,0.4); }
  50% { border-color: var(--saffron-bright); box-shadow: 0 0 45px rgba(255,125,0,0.7); }
}
.offer-tag {
  background: var(--gold);
  color: #4A0000;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.offer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 800;
}
.offer-price {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0.5rem 0;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}
.offer-phone {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFF;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── Hero Stats ────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Service Banner Cards (Daily Meals, Tiffin, Catering, Events) ─ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron-bright);
  box-shadow: 0 10px 30px rgba(255,125,0,0.25);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.service-card h3 { font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: 0.25rem; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Section & Layouts ─────────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-surface); }

/* ── Menu Filters & Grid ───────────────────────────────────── */
.menu-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--saffron-bright), var(--saffron-orange));
  color: #FFF;
  border-color: var(--saffron-bright);
  box-shadow: 0 4px 15px rgba(255,125,0,0.3);
}

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

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}
.menu-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.badge-veg-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(13, 6, 2, 0.85);
  border: 1px solid var(--veg-green);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(8px);
}

.badge-offer-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--saffron-bright);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron-bright);
  margin-bottom: 0.3rem;
}
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.menu-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,179,0,0.1);
}
.menu-card-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.add-to-cart-btn {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--saffron-bright), #E65100);
  color: #FFF;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 800;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
}
.add-to-cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(255,125,0,0.5);
}
.add-to-cart-btn.added { background: var(--veg-green); }

/* ── Shopping Cart Page & Drawer ───────────────────────────── */
.cart-page { padding-top: 40px; min-height: 80vh; }
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media(max-width:920px) { .cart-grid { grid-template-columns: 1fr; } }

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  align-items: center;
}
.cart-item-img {
  width: 85px; height: 85px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; }
.cart-item-cat { font-size: 0.75rem; color: var(--saffron-bright); margin-bottom: 0.25rem; }
.cart-item-price { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,179,0,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: #180A03; }
.qty-num { width: 2rem; text-align: center; font-weight: 700; font-size: 1rem; }
.remove-btn {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
}
.remove-btn:hover { background: #ef4444; color: #FFF; }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.cart-summary h3 { font-size: 1.25rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}
.summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
}
.summary-row.total span:last-child { color: var(--gold); }

/* ── Coupon Code Box ───────────────────────────────────────── */
.coupon-box {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.coupon-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.coupon-btn {
  padding: 0.6rem 1rem;
  background: rgba(255,179,0,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 700;
  border-radius: 0.6rem;
  font-size: 0.85rem;
}
.coupon-btn:hover { background: var(--gold); color: #180A03; }

/* ── Checkout & QR Code Payment Modal/Section ──────────────── */
.checkout-page { padding-top: 40px; min-height: 85vh; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}
@media(max-width:960px) { .checkout-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--saffron-bright);
  box-shadow: 0 0 0 3px rgba(255,125,0,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:540px) { .form-row { grid-template-columns: 1fr; } }

/* ── Payment Options Radio Cards ────────────────────────────── */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.payment-method-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.payment-method-card.active {
  background: rgba(255,179,0,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255,179,0,0.25);
}
.payment-method-card input { display: none; }
.payment-method-icon { font-size: 1.6rem; margin-bottom: 0.35rem; }
.payment-method-title { font-size: 0.82rem; font-weight: 700; color: var(--text); }

/* ── Dynamic UPI QR Code Display Box ───────────────────────── */
.qr-payment-box {
  background: linear-gradient(160deg, #1D0C03 0%, #301405 100%);
  border: 2px solid var(--gold);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  position: relative;
}
.qr-header {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.qr-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.qr-code-wrapper {
  background: #FFF;
  padding: 1.25rem;
  border-radius: 1rem;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.qr-code-wrapper svg, .qr-code-wrapper canvas, .qr-code-wrapper img {
  display: block;
  width: 180px;
  height: 180px;
}
.upi-id-pill {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.copy-upi-btn {
  background: var(--gold);
  color: #180A03;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  transition: var(--transition);
}
.copy-upi-btn:hover { transform: scale(1.05); }

.payment-apps-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.payment-app-tag {
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.utr-input-group {
  margin-top: 1.25rem;
  text-align: left;
}

/* ── Order Confirmation / Receipt View ──────────────────────── */
.order-success-card {
  background: var(--bg-card);
  border: 2px solid var(--veg-green);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 650px;
  margin: 2rem auto;
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.25);
}
.order-success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.eta-badge {
  background: linear-gradient(135deg, var(--saffron-bright), #E65100);
  color: #FFF;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  display: inline-block;
  margin: 1.25rem 0;
  box-shadow: 0 4px 20px rgba(255,125,0,0.4);
}

/* ── Testimonials & About Pages ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.75rem; line-height: 1.7; }
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.92rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,179,0,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Toast Notifications ───────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 0.9rem 1.4rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(0,0,0,0.8);
  animation: slideIn 0.3s ease;
  max-width: 340px;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
.toast.hiding { animation: slideOut 0.3s ease forwards; }

/* ── Scroll animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Single Use Oil Badge ---------------------------------------- */
.oil-badge {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 9999;
  display: flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, #7A0909 0%, #4A0000 100%);
  border: 2px solid #FFB300; border-radius: 3rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
  max-width: 230px; animation: oil-pulse 3s ease-in-out infinite;
}
@keyframes oil-pulse {
  0%,100%{box-shadow:0 4px 20px rgba(0,0,0,.7),0 0 0 1px rgba(255,179,0,.25)}
  50%{box-shadow:0 4px 25px rgba(0,0,0,.8),0 0 12px rgba(255,179,0,.45)}
}
.oil-badge-icon { font-size: 2rem; line-height:1; flex-shrink:0; }
.oil-badge-text { display:flex; flex-direction:column; line-height:1.2; }
.oil-badge-text .oil-label { font-size:.62rem; letter-spacing:.1em; color:#FFE082; font-weight:600; text-transform:uppercase; }
.oil-badge-text .oil-main  { font-size:.82rem; font-weight:800; color:#FFB300; text-transform:uppercase; letter-spacing:.05em; font-family:Cinzel,serif; }
.oil-badge-text .oil-sub   { font-size:.6rem; color:rgba(255,224,130,.8); margin-top:.1rem; }
@media(max-width:600px){ .oil-badge{bottom:5.5rem;left:.75rem;max-width:190px;} }
