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

/* ==== Design tokens ==== */
:root {
  --background: 20 14% 6%;
  --foreground: 38 38% 92%;
  --card: 20 14% 9%;
  --primary: 18 88% 52%;
  --primary-foreground: 20 14% 6%;
  --primary-glow: 22 95% 60%;
  --secondary: 358 75% 38%;
  --muted: 20 10% 14%;
  --muted-foreground: 36 14% 65%;
  --accent: 38 45% 88%;
  --neon: 32 100% 58%;
  --border: 20 12% 16%;
  --radius: 1.25rem;

  --gradient-fire: linear-gradient(135deg, hsl(358 75% 38%) 0%, hsl(18 88% 52%) 50%, hsl(32 100% 58%) 100%);
  --gradient-ember: radial-gradient(circle at 30% 20%, hsl(18 88% 52% / 0.35), transparent 60%),
                    radial-gradient(circle at 80% 80%, hsl(358 75% 38% / 0.25), transparent 55%);
  --gradient-text: linear-gradient(135deg, hsl(32 100% 60%), hsl(18 88% 52%), hsl(358 75% 45%));
  --shadow-fire: 0 20px 60px -20px hsl(18 88% 52% / 0.55);
  --shadow-glow: 0 0 40px hsl(32 100% 58% / 0.45);
  --shadow-card: 0 25px 50px -12px hsl(0 0% 0% / 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  background-image: var(--gradient-ember);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; color: inherit; }

h1, h2, h3, .font-display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
}
.font-western { font-family: 'Rye', 'Bebas Neue', serif; }
::selection { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-gradient-fire {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-fire { background: var(--gradient-fire); }
.glass {
  background: hsl(20 14% 9% / 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.neon-text {
  text-shadow: 0 0 12px hsl(var(--neon) / 0.6), 0 0 28px hsl(var(--primary) / 0.4);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700;
  font-size: 0.95rem; transition: all .25s ease; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-fire); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline { border-color: hsl(var(--primary) / 0.6); color: hsl(var(--foreground)); }
.btn-outline:hover { background: hsl(var(--primary) / 0.1); border-color: hsl(var(--primary)); }
.btn-ghost { color: hsl(var(--foreground)); }
.btn-ghost:hover { background: hsl(var(--muted)); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* ==== Navbar ==== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .3s ease; padding: 1rem 0;
}
.navbar.scrolled { background: hsl(20 14% 6% / 0.85); backdrop-filter: blur(16px); border-bottom: 1px solid hsl(var(--border)); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px; background: var(--gradient-fire);
  display: grid; place-items: center; font-family: 'Rye', serif; color: hsl(var(--primary-foreground));
  font-size: 1.2rem; box-shadow: var(--shadow-fire);
}
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; }
.logo-text small { display: block; font-size: 0.65rem; color: hsl(var(--muted-foreground)); letter-spacing: 0.3em; font-family: 'Inter', sans-serif; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { color: hsl(var(--muted-foreground)); font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: hsl(var(--primary)); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.cart-btn { position: relative; padding: 0.6rem; border-radius: 999px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  border-radius: 999px; font-size: 0.72rem; font-weight: 800;
  display: grid; place-items: center; padding: 0 6px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ==== Hero ==== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 6rem 0 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, hsl(18 88% 52% / 0.18), transparent 60%), hsl(var(--background));
}
.hero-img-wrap {
  position: absolute; right: -10%; top: 10%; width: 70%; max-width: 750px; z-index: 0;
  opacity: 0.5; filter: blur(2px) saturate(1.1);
}
.hero-img-wrap img { border-radius: 50%; box-shadow: var(--shadow-fire); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: hsl(var(--primary) / 0.12); border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary-glow)); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 .row { display: block; }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  max-width: 540px; margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats .stat strong {
  display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: hsl(var(--primary)); line-height: 1;
}
.hero-stats .stat span { font-size: 0.78rem; letter-spacing: 0.2em; color: hsl(var(--muted-foreground)); text-transform: uppercase; }

/* Floating ingredients */
.float-ing {
  position: absolute; pointer-events: none; opacity: 0.6;
  font-size: 2.5rem;
}
.float-ing.f1 { top: 15%; left: 8%; animation: float-slow 7s ease-in-out infinite; }
.float-ing.f2 { top: 60%; left: 12%; animation: float-fast 6s ease-in-out infinite; }
.float-ing.f3 { top: 25%; right: 18%; animation: float-slow 8s ease-in-out infinite; }
.float-ing.f4 { top: 70%; right: 8%; animation: float-fast 5s ease-in-out infinite; }
@keyframes float-slow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(8deg); } }
@keyframes float-fast { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-30px) rotate(10deg); } }

/* Embers */
.embers { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.ember {
  position: absolute; bottom: -20px; width: 6px; height: 6px; border-radius: 50%;
  background: hsl(var(--neon)); box-shadow: 0 0 8px hsl(var(--primary)), 0 0 14px hsl(var(--neon));
  animation: ember-rise linear infinite;
}
@keyframes ember-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* ==== Section base ==== */
section.section { padding: 5rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 999px;
  background: hsl(var(--primary) / 0.1); border: 1px solid hsl(var(--primary) / 0.25);
  color: hsl(var(--primary-glow)); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; margin-bottom: 1rem; }
.section-sub { color: hsl(var(--muted-foreground)); max-width: 640px; margin: 0 auto; }

/* ==== Delivery ==== */
.delivery-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.city-card {
  padding: 1.4rem; border-radius: var(--radius);
  background: hsl(var(--card) / 0.6); border: 1px solid hsl(var(--border));
  transition: all .3s; backdrop-filter: blur(8px);
}
.city-card:hover { border-color: hsl(var(--primary) / 0.5); transform: translateY(-3px); box-shadow: var(--shadow-fire); }
.city-card .city-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; }
.city-card .city-eta { color: hsl(var(--primary-glow)); font-size: 0.85rem; margin-top: 0.3rem; }
.map-wrap {
  position: relative; padding: 1.5rem; border-radius: var(--radius);
  background: hsl(var(--card) / 0.5); border: 1px solid hsl(var(--border)); overflow: hidden;
}
.map-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 60%, hsl(var(--background)) 100%);
  pointer-events: none;
}
@media (min-width: 900px) {
  .delivery-grid { grid-template-columns: 1.1fr 1fr; }
  .cities { grid-template-columns: repeat(3, 1fr); }
}

/* ==== Pizzas ==== */
.pizza-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 700px) { .pizza-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pizza-grid { grid-template-columns: repeat(3, 1fr); } }
.pizza-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); overflow: hidden; transition: all .3s;
  display: flex; flex-direction: column;
}
.pizza-card:hover { transform: translateY(-6px); border-color: hsl(var(--primary) / 0.5); box-shadow: var(--shadow-card); }
.pizza-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.pizza-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pizza-card:hover .pizza-img img { transform: scale(1.08); }
.pizza-tag {
  position: absolute; top: 12px; left: 12px;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.pizza-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.pizza-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; }
.pizza-ingredients { color: hsl(var(--muted-foreground)); font-size: 0.9rem; flex: 1; }
.pizza-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; border-top: 1px solid hsl(var(--border)); }
.pizza-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: hsl(var(--primary)); }

/* ==== Builder ==== */
.builder {
  background: linear-gradient(180deg, hsl(var(--background)), hsl(20 14% 4%));
}
.builder-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .builder-grid { grid-template-columns: 1fr 380px; } }
.builder-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 1.8rem;
}
.builder-step { margin-bottom: 1.6rem; }
.builder-step-label {
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: hsl(var(--muted-foreground)); margin-bottom: 0.7rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.55rem 1rem; border-radius: 999px;
  background: hsl(var(--muted)); color: hsl(var(--foreground));
  font-size: 0.85rem; font-weight: 600; transition: all .2s;
  border: 1px solid transparent;
}
.chip:hover { border-color: hsl(var(--primary) / 0.5); }
.chip.active { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-fire); }
.summary {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 1.8rem; height: fit-content;
  position: sticky; top: 100px;
}
.summary h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: 1rem; }
.summary-line { display: flex; justify-content: space-between; padding: 0.5rem 0; color: hsl(var(--muted-foreground)); font-size: 0.92rem; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border));
}
.summary-total span:first-child { font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.summary-total .price { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: hsl(var(--primary)); }

/* ==== Why ==== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 1.8rem; border-radius: var(--radius);
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  transition: all .3s;
}
.why-card:hover { border-color: hsl(var(--primary) / 0.5); transform: translateY(-3px); }
.why-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: hsl(var(--primary) / 0.12); color: hsl(var(--primary));
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1rem;
}
.why-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.why-card p { color: hsl(var(--muted-foreground)); font-size: 0.92rem; }

/* ==== Reviews ==== */
.reviews { background: hsl(20 14% 4%); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  padding: 1.8rem; border-radius: var(--radius);
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
}
.stars { color: hsl(var(--neon)); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.review-card blockquote { font-size: 1.05rem; line-height: 1.5; margin-bottom: 1rem; }
.review-author { font-size: 0.85rem; color: hsl(var(--muted-foreground)); }
.review-author strong { color: hsl(var(--foreground)); }

/* ==== App promo ==== */
.app-promo {
  margin: 4rem auto; max-width: 1200px;
  padding: 3rem 2rem; border-radius: calc(var(--radius) * 1.5);
  background: var(--gradient-fire); color: hsl(var(--primary-foreground));
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
  box-shadow: var(--shadow-fire); position: relative; overflow: hidden;
}
.app-promo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, hsl(0 0% 0% / 0.3), transparent 50%);
}
.app-promo > * { position: relative; }
@media (min-width: 800px) { .app-promo { grid-template-columns: 1.4fr 1fr; padding: 4rem; } }
.app-promo h2 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; margin-bottom: 1rem; }
.app-promo p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 1.6rem; max-width: 480px; }
.app-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.app-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.4rem; border-radius: 14px;
  background: hsl(20 14% 6%); color: hsl(var(--foreground));
  font-weight: 600; transition: transform .2s;
}
.app-btn:hover { transform: translateY(-2px); }
.app-btn small { display: block; font-size: 0.7rem; opacity: 0.7; }
.app-btn strong { display: block; font-size: 1rem; }
.phone-mock {
  aspect-ratio: 9/16; max-width: 220px; margin: 0 auto;
  background: hsl(20 14% 6%); border-radius: 32px; padding: 14px;
  border: 4px solid hsl(0 0% 0% / 0.3); box-shadow: 0 30px 60px hsl(0 0% 0% / 0.5);
}
.phone-mock div {
  width: 100%; height: 100%; border-radius: 22px;
  background: var(--gradient-ember), hsl(var(--card));
  display: grid; place-items: center; font-family: 'Bebas Neue', sans-serif;
  color: hsl(var(--primary)); font-size: 2rem; text-align: center;
}

/* ==== Contact ==== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 2rem; border-radius: var(--radius);
  background: hsl(var(--card)); border: 1px solid hsl(var(--border)); text-align: center;
}
.contact-card .ico {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1rem;
  background: hsl(var(--primary) / 0.12); color: hsl(var(--primary));
  display: grid; place-items: center; font-size: 1.5rem;
}
.contact-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; margin-bottom: 0.4rem; }
.contact-card p { color: hsl(var(--muted-foreground)); font-size: 0.95rem; }

/* ==== Footer ==== */
.footer {
  background: hsl(20 14% 4%); padding: 3.5rem 0 1.5rem;
  border-top: 1px solid hsl(var(--border));
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h5 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer ul a { color: hsl(var(--muted-foreground)); font-size: 0.9rem; transition: color .2s; }
.footer ul a:hover { color: hsl(var(--primary)); }
.footer-about p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; max-width: 320px; margin-top: 0.6rem; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: hsl(var(--muted)); display: grid; place-items: center;
  transition: all .2s;
}
.socials a:hover { background: var(--gradient-fire); color: hsl(var(--primary-foreground)); }
.copyright {
  text-align: center; padding-top: 1.5rem; border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground)); font-size: 0.85rem;
}

/* ==== Sticky order ==== */
.sticky-order {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 40;
  display: flex; gap: 0.6rem;
}
.sticky-order .btn { flex: 1; box-shadow: 0 10px 30px hsl(0 0% 0% / 0.5); }
@media (min-width: 900px) { .sticky-order { display: none; } }

/* ==== Cart drawer ==== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: hsl(0 0% 0% / 0.7); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: 100%; max-width: 440px; background: hsl(var(--card));
  border-left: 1px solid hsl(var(--border));
  transform: translateX(100%); transition: transform .35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 1.4rem; border-bottom: 1px solid hsl(var(--border));
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; }
.cart-eta {
  margin: 1rem 1.4rem; padding: 0.9rem 1.1rem; border-radius: 14px;
  background: hsl(var(--primary) / 0.1); border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary-glow)); font-size: 0.9rem; display: flex; gap: 0.6rem; align-items: center;
}
.cart-items { flex: 1; overflow-y: auto; padding: 0 1.4rem; }
.cart-empty { text-align: center; color: hsl(var(--muted-foreground)); padding: 3rem 0; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border));
}
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 12px; }
.cart-item-body { flex: 1; }
.cart-item-name { font-weight: 700; }
.cart-item-price { color: hsl(var(--primary)); font-weight: 700; margin-top: 0.2rem; }
.qty-row { display: flex; gap: 0.4rem; align-items: center; margin-top: 0.5rem; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 8px; background: hsl(var(--muted));
  display: grid; place-items: center; font-weight: 700;
}
.cart-foot { padding: 1.4rem; border-top: 1px solid hsl(var(--border)); }
.promo-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.promo-row input {
  flex: 1; padding: 0.7rem 0.9rem; border-radius: 12px;
  background: hsl(var(--muted)); color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border)); font-family: inherit;
}
.promo-row input:focus { outline: none; border-color: hsl(var(--primary)); }
.cart-totals { margin-bottom: 1rem; }
.cart-line { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.95rem; }
.cart-line.total { padding-top: 0.7rem; border-top: 1px solid hsl(var(--border)); font-size: 1.2rem; font-weight: 700; }
.cart-line.total .price { color: hsl(var(--primary)); font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }

/* Toast */
.toast {
  position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 70; padding: 0.9rem 1.3rem; border-radius: 14px;
  background: hsl(var(--card)); border: 1px solid hsl(var(--primary)); color: hsl(var(--foreground));
  font-weight: 600; opacity: 0; transition: all .3s;
  box-shadow: var(--shadow-fire);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 900px) {
  .toast { bottom: 2rem; }
}
