@import url('./fonts.css');

/* ===== Voltage Pizza — design tokens ===== */
:root {
  --background: 0 0% 5%;
  --foreground: 30 10% 96%;
  --card: 0 0% 8%;
  --primary: 22 100% 55%;
  --primary-foreground: 0 0% 5%;
  --primary-glow: 30 100% 60%;
  --secondary: 0 0% 12%;
  --muted: 0 0% 14%;
  --muted-foreground: 30 5% 65%;
  --accent: 16 95% 50%;
  --destructive: 0 90% 55%;
  --border: 0 0% 16%;
  --silver: 220 10% 75%;
  --warm-red: 8 90% 55%;
  --radius: 1rem;

  --gradient-fire: linear-gradient(135deg, hsl(22 100% 55%), hsl(8 90% 55%));
  --gradient-radial-glow: radial-gradient(circle at 50% 50%, hsl(22 100% 55% / 0.35), transparent 70%);
  --shadow-glow: 0 0 60px hsl(22 100% 55% / 0.45);
  --shadow-fire: 0 20px 60px -15px hsl(22 100% 55% / 0.5);
  --shadow-deep: 0 30px 80px -20px hsl(0 0% 0% / 0.8);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at top, hsl(22 100% 55% / 0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, hsl(8 90% 55% / 0.06), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.05;
}

/* ===== Utilities ===== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-fire {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: hsl(0 0% 10% / 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid hsl(0 0% 100% / 0.06);
}
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.bg-fire { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); }
.shadow-fire { box-shadow: var(--shadow-fire); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: all .25s var(--transition-smooth);
  white-space: nowrap;
}
.btn-fire { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-fire); }
.btn-fire:hover { opacity: .92; transform: translateY(-1px); }
.btn-outline { background: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(0 0% 100% / .15); }
.btn-outline:hover { background: hsl(0 0% 100% / .05); }
.btn-lg { height: 3.5rem; padding: 0 2rem; font-size: 1rem; }
.btn-icon { width: 2.5rem; height: 2.5rem; padding: 0; }

/* Pulse glow */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 30px hsl(22 100% 55% / 0.4); }
  50% { box-shadow: 0 0 80px hsl(22 100% 55% / 0.7); }
}
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Fade in */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fade-in .8s var(--transition-smooth) both; }
@keyframes scale-in {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-scale-in { animation: scale-in .4s var(--transition-smooth) both; }
@keyframes ember {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-200px) translateX(20px); opacity: 0; }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 40s linear infinite; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
}
.nav-inner {
  margin-top: 1rem;
  border-radius: 1.25rem;
  padding: .75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .5rem; font-family: 'Bricolage Grotesque'; font-size: 1.25rem; }
.brand-mark {
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  background: var(--gradient-fire); display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
}
.brand-mark svg { color: hsl(var(--primary-foreground)); }
.nav-links { display: none; gap: 2rem; align-items: center; font-size: .9rem; color: hsl(var(--muted-foreground)); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: hsl(var(--foreground)); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 1.25rem; height: 1.25rem; border-radius: 999px;
  background: hsl(var(--background)); color: hsl(var(--foreground));
  font-size: .7rem; display: grid; place-items: center;
  border: 1px solid hsl(var(--primary));
}
.menu-toggle { display: inline-flex; }
.mobile-menu { display: none; flex-direction: column; gap: .75rem; padding: 1rem; margin-top: .5rem; border-radius: 1.25rem; }
.mobile-menu.open { display: flex; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { height: 100%; width: 100%; object-fit: cover; opacity: .6; }
.hero-bg::after, .hero-bg::before {
  content: ''; position: absolute; inset: 0;
}
.hero-bg::after {
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background)/.85) 50%, hsl(var(--background)/.4));
}
.hero-bg::before {
  background: linear-gradient(to right, hsl(var(--background)), transparent, hsl(var(--background)/.6));
  z-index: 1;
}
.embers { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.ember {
  position: absolute; bottom: 0; width: 4px; height: 4px; border-radius: 50%;
  background: hsl(var(--primary)); box-shadow: 0 0 8px hsl(var(--primary));
  animation: ember 4s ease-out infinite;
}
.tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 999px;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
  color: hsl(var(--primary));
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .95;
}
.hero p { margin-top: 1.5rem; max-width: 36rem; color: hsl(var(--muted-foreground)); font-size: 1.125rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-meta {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .85rem; color: hsl(var(--muted-foreground));
}
.hero-meta div { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { color: hsl(var(--primary)); }

/* ===== Sections ===== */
section { padding: 6rem 0; position: relative; }
.section-eyebrow {
  color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: .15em;
  font-size: .75rem; font-weight: 600; margin-bottom: .75rem;
}
.section-title { font-size: clamp(2rem, 5vw, 3.75rem); }
.section-sub { margin-top: 1rem; color: hsl(var(--muted-foreground)); max-width: 36rem; }

/* ===== Coverage ===== */
.coverage-grid {
  margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .coverage-grid { grid-template-columns: 1fr 1fr; } }
.map-card {
  position: relative; aspect-ratio: 4/3; border-radius: 1.5rem; padding: 1.5rem; overflow: hidden;
}
.map-card svg { width: 100%; height: 100%; position: relative; }
.map-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-radial-glow); opacity: .5;
}
.state-card {
  border-radius: 1.25rem; padding: 1.5rem; transition: all .3s;
}
.state-card:hover { border-color: hsl(var(--primary) / .4); }
.state-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .75rem; }
.state-head h3 { font-size: 1.5rem; }
.state-abbr { color: hsl(var(--primary)); font-family: ui-monospace, monospace; font-size: .85rem; }
.state-cities { display: flex; flex-wrap: wrap; gap: .5rem; }
.city-pill {
  display: inline-flex; align-items: center; gap: .375rem;
  border-radius: 999px; padding: .25rem .75rem;
  background: hsl(var(--secondary)); font-size: .75rem; color: hsl(var(--muted-foreground));
}
.city-pill svg { width: 12px; height: 12px; color: hsl(var(--primary)); }
.state-list > div + div { margin-top: 1rem; }

/* ===== Menu ===== */
.menu-head {
  display: flex; flex-direction: column; gap: 1.5rem;
  justify-content: space-between; margin-bottom: 3rem;
}
@media (min-width: 768px) { .menu-head { flex-direction: row; align-items: flex-end; } }
.filters {
  display: inline-flex; padding: .375rem;
  border-radius: 999px; align-self: flex-start;
}
.filters button {
  padding: .5rem 1.25rem; font-size: .85rem; border-radius: 999px;
  color: hsl(var(--muted-foreground)); transition: all .25s;
}
.filters button.active { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); }
.menu-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.pizza-card {
  position: relative; border-radius: 1.5rem; padding: 1.25rem; overflow: hidden;
  transition: all .5s var(--transition-smooth);
}
.pizza-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-fire); border-color: hsl(var(--primary)/.4); }
.pizza-img-wrap {
  position: relative; aspect-ratio: 1/1; margin-bottom: 1rem;
  overflow: hidden; border-radius: 1.25rem; background: var(--gradient-radial-glow);
}
.pizza-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.pizza-card:hover .pizza-img-wrap img { transform: scale(1.1) rotate(3deg); }
.pizza-badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .75rem; border-radius: 999px;
  font-size: .7rem; font-weight: 600;
}
.pizza-name-row { display: flex; justify-content: space-between; gap: .5rem; align-items: flex-start; }
.pizza-name { font-family: 'Bricolage Grotesque'; font-size: 1.25rem; line-height: 1.2; }
.heat { display: inline-flex; gap: 2px; }
.heat svg { width: 12px; height: 12px; color: hsl(0 0% 100% / .15); }
.heat svg.on { color: hsl(var(--primary)); fill: hsl(var(--primary) / .35); }
.pizza-desc {
  margin-top: .5rem; font-size: .85rem; color: hsl(var(--muted-foreground));
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pizza-foot { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.pizza-price { font-family: 'Bricolage Grotesque'; font-size: 1.5rem; }

/* ===== Builder ===== */
.builder-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .builder-grid { grid-template-columns: 1fr 360px; } }
.builder-panel {
  border-radius: 1.5rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 640px) { .builder-panel { padding: 2rem; } }
.opt-group h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: hsl(var(--muted-foreground)); font-weight: 600; margin-bottom: .75rem; font-family: 'Inter'; }
.opt-grid { display: grid; gap: .5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .opt-grid { grid-template-columns: repeat(4, 1fr); } }
.opt {
  border-radius: .75rem; padding: .75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary)/.5);
  text-align: left; transition: all .2s;
  font-size: .85rem; color: inherit;
}
.opt:hover { border-color: hsl(0 0% 100% / .3); }
.opt.active { border-color: hsl(var(--primary)); background: hsl(var(--primary) / .1); box-shadow: var(--shadow-glow); }
.opt-label { font-weight: 500; }
.opt-price { font-size: .7rem; color: hsl(var(--muted-foreground)); margin-top: 2px; }
.heat-group { display: flex; gap: .5rem; }
.heat-group .opt { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .375rem; }
.heat-group .opt svg { width: 14px; height: 14px; color: hsl(var(--primary)); }
.summary {
  position: sticky; top: 7rem; align-self: start;
  border-radius: 1.5rem; padding: 1.5rem; position: relative; overflow: hidden;
}
.summary::before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-glow); opacity: .3; pointer-events: none; }
.summary-disc {
  aspect-ratio: 1/1; border-radius: 1.25rem;
  background: hsl(22 100% 55% / .15);
  display: grid; place-items: center; margin-bottom: 1.5rem; position: relative;
}
.summary-disc::after {
  content: ''; position: absolute; inset: 1.5rem; border-radius: 50%;
  border: 2px dashed hsl(var(--primary)/.4); animation: spin-slow 40s linear infinite;
}
.summary-disc svg { width: 4rem; height: 4rem; color: hsl(var(--primary)); }
.summary-total { font-family: 'Bricolage Grotesque'; font-size: 3rem; margin-top: .25rem; }

/* ===== Why Us ===== */
.why-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card { border-radius: 1.25rem; padding: 1.5rem; transition: all .3s; }
.why-card:hover { transform: translateY(-4px); border-color: hsl(var(--primary)/.4); }
.why-icon { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--gradient-fire); display: grid; place-items: center; box-shadow: var(--shadow-fire); margin-bottom: 1rem; transition: transform .3s; }
.why-card:hover .why-icon { transform: scale(1.1); }
.why-icon svg { color: hsl(var(--primary-foreground)); }
.why-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.why-card p { font-size: .85rem; color: hsl(var(--muted-foreground)); }

/* ===== Reviews ===== */
.reviews-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { border-radius: 1.5rem; padding: 1.75rem; }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; color: hsl(var(--primary)); fill: hsl(var(--primary)); }
.review-q { font-family: 'Bricolage Grotesque'; font-size: 1.5rem; line-height: 1.25; }
.review-name { margin-top: 1.5rem; font-size: .85rem; }
.review-name strong { display: block; }
.review-name span { color: hsl(var(--muted-foreground)); }

/* ===== Rewards ===== */
#rewards { overflow: hidden; }
#rewards::before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-glow); opacity: .4; pointer-events: none; }
.rewards-head { text-align: center; max-width: 36rem; margin: 0 auto 3.5rem; }
.tiers { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier-card { border-radius: 1.5rem; padding: 1.75rem; text-align: center; transition: all .3s; }
.tier-card:hover { transform: translateY(-4px); border-color: hsl(var(--primary)/.4); }
.tier-icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1.25rem; border-radius: 1rem; background: var(--gradient-fire); display: grid; place-items: center; box-shadow: var(--shadow-fire); }
.tier-icon svg { color: hsl(var(--primary-foreground)); }
.tier-card h3 { font-size: 1.5rem; }
.tier-pts { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--primary)); margin-top: .25rem; }
.tier-perk { margin-top: 1rem; font-size: .85rem; color: hsl(var(--muted-foreground)); }

/* ===== Contact ===== */
.contact-card {
  border-radius: 1.5rem; padding: 2rem; display: grid; gap: 2.5rem;
  grid-template-columns: 1fr; position: relative; overflow: hidden;
}
@media (min-width: 640px) { .contact-card { padding: 3.5rem; } }
@media (min-width: 1024px) { .contact-card { grid-template-columns: 1fr 1fr; } }
.contact-blob {
  position: absolute; top: -6rem; right: -6rem; width: 16rem; height: 16rem;
  border-radius: 50%; background: var(--gradient-fire); opacity: .2; filter: blur(60px);
}
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 3rem; height: 3rem; border-radius: .75rem;
  background: hsl(var(--secondary)); display: grid; place-items: center;
  transition: all .25s;
}
.contact-row:hover .contact-icon { background: var(--gradient-fire); }
.contact-icon svg { color: hsl(var(--primary)); }
.contact-row:hover .contact-icon svg { color: hsl(var(--primary-foreground)); }
.contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-foreground)); }
.contact-val { font-family: 'Bricolage Grotesque'; font-size: 1.25rem; }
.contact-list > * + * { margin-top: 1.25rem; }

/* ===== Footer ===== */
footer { border-top: 1px solid hsl(var(--border)/.6); margin-top: 3rem; }
.marquee-wrap { overflow: hidden; border-top: 1px solid hsl(var(--border)/.6); border-bottom: 1px solid hsl(var(--border)/.6); background: hsl(var(--background)/.5); }
.marquee { display: flex; gap: 3rem; padding: 1.5rem 0; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-row { display: flex; gap: 3rem; align-items: center; font-family: 'Bricolage Grotesque'; font-size: 1.875rem; color: hsl(var(--muted-foreground)/.6); }
.marquee-row .dot { color: hsl(var(--primary)); }
.foot-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding: 3rem 0; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-grid h4 { font-size: 1.125rem; margin-bottom: 1rem; font-family: 'Bricolage Grotesque'; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin: .5rem 0; font-size: .85rem; color: hsl(var(--muted-foreground)); }
.foot-grid li a:hover { color: hsl(var(--primary)); }
.foot-desc { margin-top: 1rem; font-size: .85rem; color: hsl(var(--muted-foreground)); max-width: 20rem; }
.foot-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn { width: 2.5rem; height: 2.5rem; border-radius: .75rem; background: hsl(var(--secondary)); display: grid; place-items: center; transition: all .25s; }
.social-btn:hover { background: var(--gradient-fire); }
.foot-bottom {
  padding: 1.5rem 0; border-top: 1px solid hsl(var(--border)/.6);
  display: flex; flex-direction: column; gap: .75rem;
  justify-content: space-between; font-size: .75rem; color: hsl(var(--muted-foreground));
}
@media (min-width: 640px) { .foot-bottom { flex-direction: row; } }

/* ===== Cart Drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: hsl(0 0% 0% / .6); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 28rem;
  background: hsl(var(--background)); border-left: 1px solid hsl(var(--border));
  z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--transition-smooth);
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 1.5rem; border-bottom: 1px solid hsl(var(--border)); display: flex; justify-content: space-between; align-items: center; }
.drawer-head h2 { font-size: 1.5rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.empty-cart { text-align: center; padding: 5rem 0; color: hsl(var(--muted-foreground)); }
.empty-cart .emoji { font-size: 3rem; margin-bottom: 1rem; }
.cart-item { display: flex; gap: 1rem; padding: .75rem; border-radius: 1rem; }
.cart-item img { width: 5rem; height: 5rem; border-radius: .75rem; object-fit: cover; }
.cart-item .info { flex: 1; min-width: 0; }
.cart-item .name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item .price { color: hsl(var(--primary)); font-family: 'Bricolage Grotesque'; font-size: 1.125rem; }
.qty { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty button { width: 1.75rem; height: 1.75rem; border-radius: .5rem; border: 1px solid hsl(var(--border)); display: grid; place-items: center; }
.qty button:hover { background: hsl(var(--secondary)); }
.qty .count { width: 1.5rem; text-align: center; font-size: .85rem; }
.qty .trash { margin-left: auto; color: hsl(var(--muted-foreground)); }
.qty .trash:hover { color: hsl(var(--destructive)); }
.promo-card { padding: 1rem; border-radius: 1rem; }
.promo-row { display: flex; gap: .5rem; }
.input {
  flex: 1; height: 2.5rem; padding: 0 .75rem 0 2.25rem; border-radius: .5rem;
  background: hsl(var(--secondary)); border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground)); font-size: .85rem;
  position: relative;
}
.input:focus { outline: none; border-color: hsl(var(--primary)); }
.input-wrap { position: relative; flex: 1; }
.input-wrap svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: hsl(var(--muted-foreground)); pointer-events: none; }
.eta-row { font-size: .75rem; color: hsl(var(--muted-foreground)); display: flex; justify-content: space-between; margin-top: .75rem; }
.eta-row span:last-child { color: hsl(var(--primary)); font-weight: 600; }
.drawer-foot { padding: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; }
.totals { font-size: .85rem; }
.totals > div { display: flex; justify-content: space-between; padding: 2px 0; color: hsl(var(--muted-foreground)); }
.totals .grand { color: hsl(var(--foreground)); font-family: 'Bricolage Grotesque'; font-size: 1.5rem; padding-top: .5rem; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }

/* ===== Sticky cart pill ===== */
.sticky-cart {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 40; padding: .5rem .5rem .5rem 1.25rem;
  border-radius: 999px; display: none;
  align-items: center; gap: 1rem; box-shadow: var(--shadow-fire);
  border: 1px solid hsl(var(--primary)/.3);
  animation: scale-in .4s var(--transition-smooth);
}
.sticky-cart.show { display: flex; }
.sticky-cart .lbl { font-size: .85rem; font-weight: 600; }
.sticky-cart .pill { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); padding: .625rem 1.25rem; border-radius: 999px; font-size: .85rem; font-weight: 600; }
.sticky-cart svg { color: hsl(var(--primary)); }

/* ===== Toast ===== */
.toast-stack { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; display: flex; flex-direction: column; gap: .5rem; }
.toast {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  padding: .75rem 1.25rem; border-radius: .75rem; font-size: .85rem;
  animation: scale-in .3s var(--transition-smooth);
  box-shadow: var(--shadow-deep);
}
.toast.success { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.toast.error { border-color: hsl(var(--destructive)); color: hsl(var(--destructive)); }
