/* ============================================
   SliceHub — Styles
   ============================================ */

/* ---- Variables ---- */
:root {
  --red:        #DC2626;
  --red-dark:   #b91c1c;
  --dark:       #1a1a1a;
  --darker:     #111111;
  --darkest:    #0d0d0d;
  --yellow:     #F59E0B;
  --orange:     #EA580C;
  --green:      #16a34a;
  --green-dark: #15803d;
  --white:      #ffffff;
  --card:       #27272a;
  --card-alt:   #3f3f46;
  --muted:      rgba(255,255,255,0.5);
  --dim:        rgba(255,255,255,0.7);
  --border:     rgba(255,255,255,0.1);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
  --shadow-red:   0 8px 32px rgba(220,38,38,0.3);
  --shadow-green: 0 8px 32px rgba(22,163,74,0.35);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ---- Containers ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 88px 0; }
.section-alt     { background: var(--darker); }
.section-darkest { background: var(--darkest); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
}
.accent        { color: var(--red); }
.accent-yellow { color: var(--yellow); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn-red   { background: var(--red);   color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover   { background: var(--red-dark); box-shadow: 0 14px 40px rgba(220,38,38,0.5); }
.btn-green { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.28); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1 !important; transform: none !important; }
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
  letter-spacing: 0.02em;
}
.announcement-bar .code {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-family: 'Courier New', monospace;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 1px 8px;
  border-radius: 4px;
  margin: 0 4px;
}
.announcement-bar .sep { margin: 0 8px; opacity: 0.5; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.55); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img  { height: 52px; width: auto; object-fit: contain; transition: transform var(--transition); }
.logo-wrap:hover .logo-img { transform: scale(1.04); }
.logo-text  { line-height: 1.1; }
.logo-tagline  { display: block; font-size: 0.62rem; font-weight: 800; color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase; }
.logo-location { display: block; font-size: 0.58rem; color: rgba(255,255,255,0.32); margin-top: 1px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 7px 11px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta-wrap { margin-left: 8px; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow-green);
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav-cta:hover { background: var(--green-dark) !important; transform: scale(1.05) !important; }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
}
.nav-overlay.active { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #2d1208 0%, #1f0d06 28%, #1a1a1a 62%, #0d0d0d 100%);
}

/* Decorative blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob  { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.07; }
.hero-blob-1 { width: 420px; height: 420px; background: var(--red);    top: 5%;  left: 5%; }
.hero-blob-2 { width: 320px; height: 320px; background: var(--yellow); bottom: 10%; right: 5%; }

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

@keyframes pizzaBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.hero-emoji {
  font-size: clamp(4.5rem, 12vw, 8rem);
  display: block;
  margin-bottom: 24px;
  animation: pizzaBounce 2.7s ease-in-out infinite;
  line-height: 1;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-yellow { background: var(--yellow); color: #1a1a1a; }
.badge-dim    { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.72); }

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.fire-text {
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 55%, #DC2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.92;
}

.hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 18px rgba(220,38,38,0.45), 0 8px 32px rgba(220,38,38,0.25); }
  50%      { box-shadow: 0 0 40px rgba(220,38,38,0.85), 0 12px 48px rgba(220,38,38,0.5); }
}
.btn-hero { font-size: 1.05rem; padding: 16px 36px; animation: glowPulse 2.5s ease-in-out infinite; }

.btn-ghost {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.22);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.btn-ghost:hover { color: var(--white); }

.hero-scroll { margin-top: 56px; color: rgba(255,255,255,0.2); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; }
@keyframes arrowBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
.hero-scroll i { display: block; margin-top: 8px; font-size: 1rem; animation: arrowBounce 1.8s infinite; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--darker);
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item {}
.stat-value-row { display: flex; align-items: baseline; justify-content: center; gap: 0; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--red); }
.stat-label  { color: var(--muted); font-size: 0.8rem; margin-top: 6px; }

/* ============================================
   COMBO SECTION
   ============================================ */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.combo-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.combo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(220,38,38,0.38);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.combo-card.featured {
  border-color: rgba(220,38,38,0.42);
  background: linear-gradient(145deg, #3f3f46 0%, #27272a 100%);
  box-shadow: 0 8px 32px rgba(220,38,38,0.14);
}
.combo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 0.66rem;
  font-weight: 900;
  padding: 4px 18px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,0.45);
}
.combo-emoji { font-size: 3rem; margin-bottom: 16px; }
.combo-name  { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.combo-tagline { color: var(--muted); font-size: 0.8rem; margin-bottom: 18px; }
.combo-items { flex: 1; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.combo-items li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.8);
}
.combo-items li i { color: var(--yellow); font-size: 0.78rem; flex-shrink: 0; }
.combo-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.combo-price    { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: var(--red); }
.combo-original { font-size: 0.88rem; color: var(--muted); text-decoration: line-through; }

/* ============================================
   MENU SECTION
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pizza-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pizza-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.pizza-card.bestseller { border-color: rgba(220,38,38,0.35); }

/* ---- Unavailable state ---- */
.pizza-card.unavailable,
.combo-card.unavailable {
  opacity: 0.55;
  filter: grayscale(40%);
}
.pizza-card.unavailable:hover,
.combo-card.unavailable:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}
.pizza-card.unavailable .size-btn,
.btn-unavailable {
  cursor: not-allowed !important;
  pointer-events: none;
}
.btn-unavailable {
  background: #374151 !important;
  color: #9ca3af !important;
  border-color: transparent !important;
}

.pizza-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 0 var(--radius) 0 var(--radius);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pizza-emoji { font-size: 3.2rem; text-align: center; margin-bottom: 16px; }
.pizza-name  { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 5px; }
.pizza-desc  { color: var(--muted); font-size: 0.82rem; margin-bottom: 18px; flex: 1; line-height: 1.6; }

.size-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.size-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--card-alt);
  background: var(--card-alt);
  color: #a1a1aa;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s;
}
.size-btn:hover  { background: #52525b; color: var(--white); transform: scale(1.06); }
.size-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

.pizza-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pizza-price-wrap { display: flex; align-items: baseline; gap: 6px; }
.pizza-mrp  { font-size: 0.95rem; color: var(--muted); text-decoration: line-through; font-weight: 500; }
.pizza-price { font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 900; color: var(--red); }
.pizza-hint  { font-size: 0.7rem; color: rgba(255,255,255,0.22); }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  padding: 44px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 60%, #DC2626 100%);
}
.promo-banner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.promo-banner p { color: rgba(255,255,255,0.9); font-size: clamp(0.9rem, 2vw, 1.05rem); font-weight: 600; }
.promo-code {
  display: inline-block;
  background: rgba(26,26,26,0.88);
  color: var(--yellow);
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  padding: 3px 14px;
  border-radius: 6px;
  margin: 0 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.promo-note { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-top: 10px; }

/* ============================================
   REVIEWS SLIDER
   ============================================ */
.reviews-slider-wrap { position: relative; }
.reviews-slider { overflow: hidden; border-radius: var(--radius); }
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
  flex: 0 0 100%;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  padding-left: 20px;
}
.review-text::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -6px;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  font-family: Georgia, serif;
}
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: 1.1rem; color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.92rem; color: var(--white); line-height: 1.3; }
.review-loc  { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--border);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.15s;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active { background: var(--red); transform: scale(1.35); }

/* Rating summary */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
  text-align: center;
}
.review-summary-item {}
.review-summary-number { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.review-summary-stars  { color: var(--yellow); font-size: 0.85rem; margin: 4px 0; }
.review-summary-label  { font-size: 0.78rem; color: var(--muted); }
.review-summary-divider { width: 1px; height: 52px; background: var(--border); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(220,38,38,0.38); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--yellow); }
.faq-icon {
  color: var(--red);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p {
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.8;
}
.faq-answer strong { color: var(--white); }
.faq-answer .mono  { color: var(--yellow); font-family: 'Courier New', monospace; font-weight: 900; letter-spacing: 0.06em; }

/* ============================================
   FOOTER — Instagram card (in brand col)
   ============================================ */
.footer-insta-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(131,58,180,0.25);
  background: linear-gradient(135deg, rgba(131,58,180,0.08) 0%, rgba(253,29,29,0.06) 100%);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.footer-insta-card:hover {
  border-color: rgba(131,58,180,0.5);
  box-shadow: 0 6px 24px rgba(131,58,180,0.2);
  transform: translateY(-2px);
}
.footer-insta-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-insta-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
}
.footer-insta-handle {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.footer-insta-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
}
.footer-insta-follow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #c850c0, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--darkest);
  border-top: 1px solid var(--border);
  padding: 0;
}

/* --- Main Grid --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 56px 0 48px;
}

/* --- Brand Col --- */
.footer-logo   { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-slogan { color: var(--muted); font-size: 0.84rem; line-height: 1.75; }
.footer-slogan-tag {
  display: inline-block;
  margin-top: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.72rem;
  padding: 2px 10px;
  color: rgba(255,255,255,0.45);
}
/* --- Heading --- */
.footer-heading {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(245,158,11,0.3), transparent);
}

/* --- Links --- */
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 0.86rem;
  display: flex; align-items: center; gap: 9px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-links i { width: 14px; text-align: center; font-size: 0.78rem; color: var(--red); flex-shrink: 0; }

/* --- Contact --- */
.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.48); font-size: 0.86rem; }
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.78rem;
}
.footer-contact a { color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

/* --- QR Col --- */
.footer-qr-col {}
.footer-qr-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 12px 10px;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.footer-qr-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.footer-qr-img {
  width: 110px; height: 110px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.footer-qr-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  display: flex; align-items: center; gap: 5px;
}
.footer-qr-label i { color: #4285F4; }
.footer-qr-hint {
  margin-top: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.74rem;
}

/* --- Bottom Bar --- */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,0.22);
  font-size: 0.75rem;
}
.footer-bottom-dot { color: rgba(255,255,255,0.14); }
.footer-heart { color: var(--red); display: inline-block; animation: heartbeat 1.8s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}

/* ============================================
   STICKY WHATSAPP (mobile)
   ============================================ */
.sticky-wa {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: none;
}
.sticky-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 17px 20px;
  transition: background var(--transition);
}
.sticky-wa a:hover { background: var(--green-dark); }

/* Pulsing dot */
.wa-dot-wrap  { position: relative; width: 12px; height: 12px; flex-shrink: 0; }
.wa-dot       { position: absolute; inset: 0; border-radius: 50%; background: #86efac; }
@keyframes waPing { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(2.5);opacity:0} }
.wa-dot-ping  { position: absolute; inset: 0; border-radius: 50%; background: #86efac; animation: waPing 1.8s ease-out infinite; }

/* Desktop floating WA */
.floating-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-green);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.floating-wa:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 44px rgba(22,163,74,0.6); background: var(--green-dark); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 98;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--white);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  transform: translateY(14px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover   { background: var(--red); border-color: var(--red); }

/* ============================================
   CONTACT / FEEDBACK FORM
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.contact-info-card:hover { border-color: rgba(220,38,38,0.35); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.contact-info-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p  { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }

/* Form */
.contact-form {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.form-required { color: var(--red); }
.form-input {
  background: var(--darker);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}
.form-input::placeholder { color: rgba(255,255,255,0.22); }
.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a1a1aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: #27272a; color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { margin-top: 4px; font-size: 1rem; padding: 14px; border-radius: var(--radius-sm); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,38,38,0.4); }
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .combos-grid     { grid-template-columns: repeat(2, 1fr); }
  .menu-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info    { flex-direction: row; }
  .form-row        { grid-template-columns: 1fr 1fr; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Announcement */
  .announcement-bar .sep { display: none; }
  .announcement-bar .mobile-break::after { content: '\A'; white-space: pre; }

  /* Hamburger */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(290px, 82vw);
    height: 100vh;
    background: #111111;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 76px 20px 40px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 95;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; box-shadow: -8px 0 40px rgba(0,0,0,0.5); }
  .nav-links a    { width: 100%; padding: 12px 14px; font-size: 1rem; border-radius: 10px; }
  .nav-cta-wrap   { width: 100%; margin-left: 0; margin-top: 14px; }
  .btn-nav-cta    { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem !important; border-radius: 12px !important; }

  /* Hero */
  .hero { padding: 60px 20px; min-height: unset; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-hero { width: 100%; justify-content: center; font-size: 0.98rem; padding: 15px 24px; }
  .btn-ghost { margin-top: 4px; }

  /* Grids */
  .combos-grid      { grid-template-columns: 1fr; }
  .menu-grid        { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper  { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form     { padding: 22px; }

  /* Slider */
  .review-summary       { gap: 20px; flex-direction: column; }
  .review-summary-divider { display: none; }

  /* Sticky WA */
  .sticky-wa  { display: block; }
  .floating-wa { display: none; }
  body { padding-bottom: 56px; }

  /* Back to top */
  .back-to-top { bottom: 74px; right: 14px; width: 38px; height: 38px; }
}

/* Small phones ≤ 480px */
@media (max-width: 480px) {
  .hero-emoji { font-size: 4rem; }
  .section-title { font-size: 1.65rem; }
  .combo-card, .pizza-card { padding: 20px; }
  .review-card { padding: 22px; }
  .announcement-bar { font-size: 0.73rem; }
}

/* ============================================
   CART SYSTEM
   ============================================ */

/* ---- Cart nav button ---- */
.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cart-nav-btn:hover { background: rgba(255,255,255,0.15); }

/* On desktop, push cart button to end (after nav-links) */
@media (min-width: 769px) {
  .cart-nav-btn { order: 10; }
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid var(--dark);
}

/* ---- Cart overlay ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: all;
}

/* ---- Cart drawer ---- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--darker);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
body.cart-open .cart-drawer { transform: translateX(0); }

/* ---- Cart header ---- */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
}
.cart-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.cart-count { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.16); }

/* ---- Cart body (scrollable zone: items + footer) ---- */
.cart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ---- Cart items list ---- */
.cart-items {
  padding: 12px 0;
}

/* ---- Single cart item ---- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: rgba(255,255,255,0.03); }

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.cart-item-emoji { font-size: 1.6rem; flex-shrink: 0; }
.cart-item-details { min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-size { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--card);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--red); }
.qty-count {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-subtotal {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
  min-width: 46px;
  text-align: right;
}
.cart-item-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(220,38,38,0.15); color: var(--red); }

/* ---- Empty cart ---- */
.cart-empty {
  text-align: center;
  padding: 60px 24px;
}
.cart-empty-emoji { font-size: 3.5rem; margin-bottom: 16px; }
.cart-empty-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.cart-empty-sub { color: var(--muted); font-size: 0.85rem; }

/* ---- Cart checkout bar (pinned at bottom) ---- */
.cart-checkout-bar {
  flex-shrink: 0;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  background: var(--darker);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- Cart footer (scrolls with cart-body) ---- */
.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Coupon button ---- */
.coupon-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed rgba(245,158,11,0.5);
  background: rgba(245,158,11,0.06);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
}
.coupon-btn:hover { border-color: var(--yellow); background: rgba(245,158,11,0.12); }
.coupon-btn.applied {
  border-style: solid;
  border-color: #16a34a;
  background: rgba(22,163,74,0.12);
  color: #4ade80;
}

/* ---- Cart summary ---- */
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--dim);
}
.discount-row { color: #4ade80; }
.free-delivery { color: #4ade80; font-weight: 600; }
.delivery-hint {
  font-size: 0.75rem;
  color: var(--yellow);
  text-align: right;
  margin-top: -4px;
}
.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
.total-row {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

/* ---- Checkout button ---- */
.btn-checkout-wa {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: var(--shadow-green);
}
.btn-checkout-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.btn-checkout-wa:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- Sticky cart bar (mobile) ---- */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1e1e1e;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.sticky-cart-bar.visible { transform: translateY(0); }

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.sticky-cart-info .fa-cart-shopping { color: var(--red); font-size: 1rem; }
.sticky-cart-sep { color: var(--muted); }
#stickyTotal { color: var(--yellow); font-weight: 700; }

.sticky-cart-btn {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background var(--transition);
  white-space: nowrap;
}
.sticky-cart-btn:hover { background: var(--red-dark); }

/* ---- Toast notification ---- */
.cart-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #27272a;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1200;
  white-space: nowrap;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Add to Cart button styling ---- */
.add-to-cart-btn {
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.add-to-cart-btn:active { transform: scale(0.97); }

/* ---- Cart item MRP ---- */
.cart-item-mrp       { color: var(--muted); font-size: 0.78rem; }
.cart-item-price-each{ color: var(--dim);   font-size: 0.78rem; font-weight: 600; }

/* ---- Savings badge ---- */
@keyframes savingsPop {
  0%   { transform: scale(0.9) translateY(6px); opacity: 0; }
  65%  { transform: scale(1.03) translateY(-1px); }
  100% { transform: scale(1) translateY(0);    opacity: 1; }
}

.savings-badge {
  background: linear-gradient(135deg, rgba(22,163,74,0.2), rgba(16,185,129,0.1));
  border: 1.5px solid rgba(74,222,128,0.35);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  animation: savingsPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.savings-badge-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.savings-icon { font-size: 1.4rem; flex-shrink: 0; }
.savings-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.savings-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(74,222,128,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.savings-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}
.savings-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(74,222,128,0.8);
}
.savings-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}
.savings-chip {
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(74,222,128,0.2);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---- Free delivery unlock banner ---- */
.free-unlock-banner {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(22,163,74,0.1);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: -2px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: savingsPop 0.3s ease both;
}

/* ---- Pincode validation ---- */
.pincode-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pincode-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.02em;
}
.pincode-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  letter-spacing: 0.1em;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.pincode-input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0; font-weight: 400; }
.pincode-input:focus { border-color: var(--red); background: rgba(255,255,255,0.09); }
.pincode-status {
  font-size: 0.78rem;
  font-weight: 600;
  min-height: 18px;
  transition: all var(--transition);
}
.pincode-status.valid   { color: #4ade80; }
.pincode-status.invalid { color: #f87171; }
.pincode-status.invalid a {
  color: #fbbf24;
  text-decoration: underline;
}

/* ---- Delivery hint update ---- */
.delivery-hint {
  font-size: 0.75rem;
  color: var(--yellow);
  text-align: right;
  margin-top: -2px;
  font-weight: 500;
}

/* ---- Mobile adjustments ---- */
@media (max-width: 768px) {
  .cart-drawer { width: 100vw; }
  body.sticky-cart-visible { padding-bottom: 62px; }
  .sticky-cart-bar { display: flex; }
  .cart-toast { bottom: 72px; }
}

@media (min-width: 769px) {
  .sticky-cart-bar { display: none; }
}

/* Adjust body padding when sticky bar is visible on mobile */
@media (max-width: 768px) {
  body { padding-bottom: 0; } /* override old sticky-wa padding */
}

/* ============================================
   COMBO PIZZA SELECTION MODAL
   ============================================ */

.combo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(3px);
}
body.combo-modal-open .combo-modal-overlay {
  opacity: 1;
  pointer-events: all;
}

.combo-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(480px, calc(100vw - 32px));
  max-height: 88vh;
  background: var(--darker);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
body.combo-modal-open .combo-modal {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.combo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.combo-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.combo-modal-emoji { font-size: 1.6rem; }
.combo-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.combo-modal-subtitle {
  padding: 10px 20px 4px;
  color: var(--muted);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.combo-modal-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px 10px;
  flex-shrink: 0;
}
.combo-progress-chip {
  width: 32px;
  height: 6px;
  border-radius: 999px;
  background: var(--card-alt, #2a2a2a);
  transition: background 0.2s ease;
}
.combo-progress-chip.filled {
  background: var(--red);
}
.combo-progress-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 4px;
}

.combo-modal-pizza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 4px 20px 16px;
  overflow-y: auto;
  flex: 1;
}
.combo-modal-pizza-grid::-webkit-scrollbar { width: 4px; }
.combo-modal-pizza-grid::-webkit-scrollbar-track { background: transparent; }
.combo-modal-pizza-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.combo-pizza-option {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm, 8px);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform 0.15s;
  text-align: center;
  position: relative;
  user-select: none;
}
.combo-pizza-option:hover {
  border-color: rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}
.combo-pizza-option.selected {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.1);
}
.combo-pizza-option.maxed:not(.selected) {
  opacity: 0.45;
  pointer-events: none;
}

.combo-pizza-option .selection-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.combo-pizza-option.selected .selection-check {
  opacity: 1;
  transform: scale(1);
}

.combo-pizza-option-emoji { font-size: 2rem; margin-bottom: 2px; }
.combo-pizza-option-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  line-height: 1.3;
}
.combo-pizza-option-size {
  font-size: 0.7rem;
  color: var(--muted);
}

.combo-modal-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--darker);
}
.combo-modal-footer .btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.cart-combo-pizzas {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3px;
}
.cart-combo-pizza-line {
  font-size: 0.7rem;
  color: var(--muted);
  padding-left: 2px;
}
.cart-combo-pizza-line::before {
  content: '↳ ';
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 480px) {
  .combo-modal-pizza-grid {
    grid-template-columns: 1fr;
  }
}
