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

:root {
  --bg: hsl(0 0% 4%);
  --fg: hsl(0 0% 98%);
  --card: hsl(0 0% 7%);
  --muted: hsl(0 0% 11%);
  --muted-fg: hsl(0 0% 62%);
  --border: hsl(0 0% 14%);
  --secondary: hsl(220 6% 14%);
  --primary: hsl(18 100% 55%);
  --primary-fg: hsl(0 0% 5%);
  --primary-glow: hsl(25 100% 60%);
  --accent: hsl(45 100% 58%);
  --destructive: hsl(0 84% 60%);
  --gradient-fire: linear-gradient(135deg, hsl(18 100% 55%), hsl(35 100% 58%));
  --gradient-ember: radial-gradient(circle at 50% 100%, hsl(18 100% 55% / 0.45), transparent 60%);
  --shadow-fire: 0 20px 60px -15px hsl(18 100% 55% / 0.55);
  --shadow-glow: 0 0 80px hsl(25 100% 60% / 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
* { border-color: var(--border); }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, hsl(18 100% 50% / 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, hsl(18 100% 50% / 0.06), transparent);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea { font-family: inherit; }

h1, h2, h3, .display {
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.text-fire {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted-fg); }
.center { text-align: center; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--secondary);
}
.badge.primary { background: hsl(18 100% 55% / 0.1); color: var(--primary); border-color: hsl(18 100% 55% / 0.3); }
.badge.accent { background: hsl(45 100% 58% / 0.15); color: var(--accent); border-color: hsl(45 100% 58% / 0.3); }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.6s ease infinite; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0 1.5rem; height: 44px;
  border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
.btn-fire { background: var(--gradient-fire); color: var(--primary-fg); box-shadow: var(--shadow-fire); }
.btn-fire:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-outline { background: hsl(220 6% 14% / 0.4); border: 1px solid var(--border); color: var(--fg); }
.btn-outline:hover { background: var(--secondary); }
.btn-secondary { background: var(--secondary); color: var(--fg); }
.btn-secondary:hover { background: var(--gradient-fire); color: var(--primary-fg); }
.btn-lg { height: 56px; padding: 0 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* HEADER */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(20px);
  background: hsl(0 0% 4% / 0.7);
  border-bottom: 1px solid hsl(0 0% 14% / 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 12px; background: var(--gradient-fire);
  display: grid; place-items: center; box-shadow: var(--shadow-fire);
}
.logo-mark svg { color: var(--primary-fg); width: 20px; height: 20px; }
.logo-text { font-family: 'Anton', sans-serif; font-size: 1.25rem; letter-spacing: 0.1em; }
.logo-text span { color: var(--primary); }

.nav-links { display: none; gap: 2rem; font-size: 0.875rem; color: var(--muted-fg); }
.nav-links a:hover { color: var(--fg); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.cart-btn-count {
  margin-left: 0.5rem; background: hsl(0 0% 4% / 0.25);
  border-radius: 9999px; padding: 2px 8px; font-size: 0.7rem;
}

/* HERO */
.hero { position: relative; padding-top: 7rem; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center; min-height: 88vh;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } .hero { padding-top: 9rem; } }
.hero h1 { font-size: clamp(2.5rem, 7vw, 6rem); line-height: 0.9; }
.hero p.lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-fg); max-width: 28rem; }
.hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta { margin-top: 3rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; font-size: 0.875rem; color: var(--muted-fg); }
.hero-meta div { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { width: 16px; height: 16px; color: var(--primary); }

.hero-img-wrap { position: relative; height: 420px; }
@media (min-width: 768px) { .hero-img-wrap { height: 600px; } }
.hero-img-wrap .ember {
  position: absolute; inset: -2.5rem; background: var(--gradient-ember); opacity: 0.8;
}
.hero-img-wrap .smoke {
  position: absolute; width: 8px; height: 128px;
  background: hsl(0 0% 98% / 0.1); filter: blur(40px); border-radius: 9999px;
  animation: smoke 4s ease-out infinite;
}
.hero-img-wrap .smoke.s1 { left: 50%; top: 25%; }
.hero-img-wrap .smoke.s2 { left: 33%; top: 33%; animation-delay: 1.5s; }
.hero-img {
  position: relative; z-index: 10; width: 100%; height: 100%;
  object-fit: cover; border-radius: 24px;
  animation: float 6s ease-in-out infinite;
}
.float-chip {
  position: absolute; z-index: 11;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px;
  display: none; align-items: center; gap: 12px;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 768px) { .float-chip { display: flex; } }
.float-chip.l { left: -1rem; top: 2.5rem; }
.float-chip.r { right: -0.5rem; bottom: 3rem; }
.float-chip svg { width: 20px; height: 20px; color: var(--primary); }
.float-chip.r svg { color: var(--accent); }
.float-chip .label { font-size: 0.7rem; color: var(--muted-fg); }
.float-chip .val { font-size: 0.875rem; font-weight: 500; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: hsl(220 6% 14% / 0.3); margin-top: 2.5rem;
  padding: 1rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  font-family: 'Anton', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.15em; color: var(--muted-fg);
  text-transform: uppercase;
  animation: marquee 35s linear infinite;
}
.marquee-track span { display: inline-block; padding-right: 3rem; }

/* Sections */
section { padding: 6rem 0; }
@media (min-width: 768px) { section { padding: 8rem 0; } }

.section-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-head h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.section-head p { color: var(--muted-fg); max-width: 28rem; }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .coverage-grid { grid-template-columns: repeat(3, 1fr); } }
.state-card {
  position: relative; padding: 2rem; border-radius: 24px;
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.state-card:hover { border-color: hsl(18 100% 55% / 0.5); }
.state-card .blob {
  position: absolute; top: -80px; right: -80px;
  width: 192px; height: 192px; background: hsl(18 100% 55% / 0.1);
  filter: blur(60px); transition: all 0.7s;
}
.state-card:hover .blob { background: hsl(18 100% 55% / 0.3); }
.state-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; position: relative; }
.state-card-head svg { width: 24px; height: 24px; color: var(--primary); }
.state-card-head h3 { font-size: 1.875rem; }
.state-card ul { list-style: none; margin: 0; padding: 0; position: relative; }
.state-card li {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid hsl(0 0% 14% / 0.6); padding: 8px 0;
  color: var(--muted-fg); transition: color 0.3s;
}
.state-card:hover li { color: var(--fg); }
.state-card li .available { font-size: 0.7rem; color: var(--primary); opacity: 0; transition: opacity 0.3s; }
.state-card:hover li .available { opacity: 1; }

/* Menu filters */
.filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-chip {
  padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--border); background: hsl(220 6% 14% / 0.4); color: var(--muted-fg);
  transition: all 0.25s;
}
.filter-chip:hover { color: var(--fg); }
.filter-chip.active {
  background: var(--gradient-fire); color: var(--primary-fg);
  border-color: transparent; box-shadow: var(--shadow-fire);
}

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.menu-card:hover { transform: translateY(-4px); border-color: hsl(18 100% 55% / 0.4); }
.menu-card-img { position: relative; aspect-ratio: 1; overflow: hidden; background: hsl(220 6% 14% / 0.4); }
.menu-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-ember); opacity: 0.6; transition: opacity 0.3s; z-index: 1;
}
.menu-card:hover .menu-card-img::before { opacity: 1; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: hsl(0 0% 4% / 0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 9999px;
  padding: 0.25rem 0.75rem; font-size: 0.7rem;
}
.menu-body { padding: 1.5rem; }
.menu-body h3 { font-size: 1.5rem; line-height: 1.1; }
.menu-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.5rem; }
.menu-price { color: var(--primary); font-family: 'Anton', sans-serif; font-size: 1.5rem; }
.menu-desc { font-size: 0.875rem; color: var(--muted-fg); margin: 0 0 1.25rem; }

/* Build Your Own */
.build {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, transparent, hsl(220 6% 14% / 0.2), transparent);
}
.build-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .build-grid { grid-template-columns: 1fr 1fr; } }
.build h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 1.5rem; }
.build .lead { color: var(--muted-fg); margin: 0 0 2rem; max-width: 28rem; }
.build-group { margin-bottom: 1.75rem; }
.build-label {
  display: block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--muted-fg); margin-bottom: 0.75rem;
}
.build-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.opt {
  cursor: pointer; border-radius: 16px; border: 1px solid var(--border);
  padding: 1rem; text-align: center; background: var(--card); color: var(--muted-fg);
  font-family: 'Anton', sans-serif; font-size: 1.25rem; text-transform: uppercase;
  transition: all 0.25s;
}
.opt.active { border-color: var(--primary); background: hsl(18 100% 55% / 0.1); color: var(--fg); }
.opt-toggle {
  width: 100%; border-radius: 16px; border: 1px solid var(--border);
  padding: 1rem; display: flex; align-items: center; justify-content: space-between;
  background: var(--card); transition: all 0.25s;
}
.opt-toggle.active { border-color: var(--primary); background: hsl(18 100% 55% / 0.1); }
.opt-toggle .label-line { display: flex; align-items: baseline; gap: 0.75rem; }
.opt-toggle .name { font-family: 'Anton', sans-serif; font-size: 1.25rem; text-transform: uppercase; }
.opt-toggle .extra { color: var(--muted-fg); font-size: 0.875rem; }
.opt-dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border); transition: all 0.25s; }
.opt-toggle.active .opt-dot { border-color: var(--primary); background: var(--primary); }

.build-total {
  margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-radius: 24px; background: var(--card); border: 1px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.build-total .label-line .label-up { font-size: 0.7rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.15em; }
.build-total .price { font-family: 'Anton', sans-serif; font-size: 3rem; }
.build-img-wrap { position: relative; height: 500px; }
.build-img-wrap .ember { position: absolute; inset: 0; background: var(--gradient-ember); }
.build-img-wrap img { position: relative; width: 100%; height: 100%; object-fit: contain; animation: float 6s ease-in-out infinite; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@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 {
  padding: 1.75rem; border-radius: 24px; background: var(--card);
  border: 1px solid var(--border); transition: all 0.5s;
}
.why-card:hover { border-color: hsl(18 100% 55% / 0.5); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: var(--gradient-fire); box-shadow: var(--shadow-fire);
  display: grid; place-items: center; margin-bottom: 1.25rem;
}
.why-icon svg { width: 24px; height: 24px; color: var(--primary-fg); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--muted-fg); margin: 0; }

/* Reviews */
.reviews-stars { display: flex; align-items: center; gap: 0.5rem; color: var(--accent); }
.reviews-stars svg { width: 24px; height: 24px; fill: var(--accent); }
.reviews-stars .num { color: var(--fg); margin-left: 0.5rem; font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review {
  padding: 1.75rem; border-radius: 24px;
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.review:hover { border-color: hsl(18 100% 55% / 0.4); }
.review .stars { display: flex; gap: 4px; color: var(--accent); margin-bottom: 1rem; }
.review .stars svg { width: 16px; height: 16px; fill: var(--accent); }
.review blockquote { margin: 0 0 1.5rem; font-size: 1rem; }
.review .who { font-size: 0.875rem; }
.review .who .name { font-weight: 500; }
.review .who .city { color: var(--muted-fg); }

/* Rewards */
.rewards-card {
  position: relative; overflow: hidden; border-radius: 32px;
  border: 1px solid var(--border); padding: 2.5rem; background: var(--card);
}
@media (min-width: 768px) { .rewards-card { padding: 4rem; } }
.rewards-card .blob1 {
  position: absolute; right: -96px; top: -96px;
  width: 384px; height: 384px; background: hsl(18 100% 55% / 0.3); filter: blur(120px);
}
.rewards-card .blob2 {
  position: absolute; left: -80px; bottom: -80px;
  width: 320px; height: 320px; background: hsl(45 100% 58% / 0.2); filter: blur(120px);
}
.rewards-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .rewards-grid { grid-template-columns: 1fr 1fr; } }
.rewards-grid h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 1rem; }
.rewards-grid p { color: var(--muted-fg); max-width: 28rem; margin: 0 0 2rem; }
.rewards-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tier {
  padding: 1.25rem; border-radius: 16px;
  background: hsl(0 0% 4% / 0.6); border: 1px solid var(--border); text-align: center;
}
.tier .pts { font-family: 'Anton', sans-serif; font-size: 1.875rem; }
.tier .label-up { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); margin-top: 4px; }
.tier .reward { font-size: 0.875rem; margin-top: 0.75rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 16px; background: var(--secondary);
  border: 1px solid var(--border); display: grid; place-items: center;
  transition: background 0.3s;
}
.contact-item:hover .contact-icon { background: var(--gradient-fire); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item .label-up { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); }
.contact-item .val { font-weight: 500; }

.contact-form {
  padding: 2rem; border-radius: 24px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted-fg); display: block;
}
.field input, .field textarea {
  width: 100%; margin-top: 0.5rem; padding: 0.75rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; color: var(--fg); font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
}
.field input { height: 48px; }
.field textarea { resize: none; }
.field input:focus, .field textarea:focus { border-color: var(--primary); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: hsl(220 6% 14% / 0.2);
  margin-top: 2.5rem;
}
.footer-grid {
  padding: 3.5rem 0;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.875rem; color: var(--muted-fg); max-width: 20rem; margin-top: 1rem; }
.footer-col h4 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted-fg); margin: 0 0 1rem; font-family: 'Inter', sans-serif; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-col a:hover { color: var(--primary); }
.socials { display: flex; gap: 0.75rem; }
.social {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  display: grid; place-items: center; transition: background 0.3s;
}
.social:hover { background: var(--gradient-fire); }
.social svg { width: 20px; height: 20px; }
.copyright {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.7rem; color: var(--muted-fg);
}

/* Sticky mobile order */
.sticky-order {
  display: flex; position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 40; height: 56px; border-radius: 9999px;
  background: var(--gradient-fire); color: var(--primary-fg); font-weight: 500;
  box-shadow: var(--shadow-fire); align-items: center; justify-content: center; gap: 0.5rem;
  animation: pulseGlow 2.4s ease-out infinite;
}
@media (min-width: 768px) { .sticky-order { display: none; } }
.sticky-order svg { width: 20px; height: 20px; }

/* Cart drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: hsl(0 0% 0% / 0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: 100%; max-width: 28rem;
  background: var(--bg); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h3 { font-size: 1.875rem; display: flex; align-items: center; gap: 0.75rem; }
.drawer-head h3 svg { width: 24px; height: 24px; color: var(--primary); }
.drawer-close { width: 36px; height: 36px; border-radius: 12px; background: var(--secondary); display: grid; place-items: center; }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; padding: 4rem 0; color: var(--muted-fg); }
.cart-empty svg { width: 48px; height: 48px; color: hsl(18 100% 55% / 0.5); margin: 0 auto 1rem; display: block; }

.cart-item {
  display: flex; gap: 1rem; padding: 0.75rem;
  border-radius: 16px; background: var(--card); border: 1px solid var(--border);
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; }
.cart-item-body { flex: 1; }
.cart-item-top { display: flex; align-items: flex-start; justify-content: space-between; }
.cart-item-name { font-weight: 500; font-size: 0.95rem; }
.cart-item-price { font-size: 0.875rem; color: var(--primary); }
.cart-trash { color: var(--muted-fg); }
.cart-trash:hover { color: var(--destructive); }
.cart-trash svg { width: 16px; height: 16px; }
.qty {
  margin-top: 0.75rem; display: inline-flex; align-items: center;
  background: var(--secondary); border-radius: 9999px;
}
.qty button { width: 32px; height: 32px; display: grid; place-items: center; }
.qty button svg { width: 14px; height: 14px; }
.qty span { width: 32px; text-align: center; font-size: 0.875rem; }

.upsell {
  padding: 1rem; border-radius: 16px;
  background: hsl(45 100% 58% / 0.1); border: 1px solid hsl(45 100% 58% / 0.3);
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem;
}
.upsell svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.upsell .accent { color: var(--accent); font-weight: 500; }
.upsell button {
  margin-left: auto; background: var(--accent); color: var(--primary-fg);
  padding: 6px 14px; border-radius: 9999px; font-size: 0.8rem; font-weight: 500;
}

.drawer-foot {
  padding: 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
}
.promo-row { display: flex; gap: 0.5rem; }
.promo-row input {
  flex: 1; height: 44px; padding: 0 1rem;
  background: var(--secondary); border: 1px solid var(--border);
  border-radius: 12px; color: var(--fg); outline: none;
}
.promo-row button {
  height: 44px; padding: 0 1.25rem; border-radius: 12px;
  background: var(--secondary); border: 1px solid var(--border); font-size: 0.875rem;
}
.totals-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; color: var(--muted-fg); }
.totals-row .v { color: var(--fg); font-weight: 500; }
.eta-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted-fg); }
.eta-row svg { width: 14px; height: 14px; color: var(--primary); display: inline-block; vertical-align: middle; margin-right: 4px; }
.pay-row { display: flex; gap: 0.5rem; }
.pay-row button {
  flex: 1; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
}
.pay-row .apple { background: var(--fg); color: var(--bg); }
.pay-row .gpay { background: var(--secondary); border: 1px solid var(--border); }
.pay-row svg { width: 16px; height: 16px; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Toasts */
.toast-stack {
  position: fixed; top: 80px; right: 1rem; z-index: 100;
  display: flex; flex-direction: column; gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.75rem 1rem;
  font-size: 0.875rem; min-width: 240px;
  box-shadow: 0 12px 30px hsl(0 0% 0% / 0.5);
  animation: slideIn 0.3s ease, fadeOut 0.4s ease 2.6s forwards;
}
.toast .t-title { font-weight: 500; color: var(--primary); }
.toast .t-desc { color: var(--muted-fg); font-size: 0.8rem; margin-top: 2px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes smoke {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-120px) scale(1.6); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 hsl(18 100% 55% / 0.6), var(--shadow-fire); }
  50% { box-shadow: 0 0 0 18px hsl(18 100% 55% / 0), var(--shadow-fire); }
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeOut { to { opacity: 0; transform: translateX(20px); } }

/* utilities */
.hidden { display: none !important; }
