/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --fire: #ff4500;
  --fire-dark: #cc3300;
  --gold: #ffcc00;
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #888;
  --green: #22c55e;
  --red: #f56565;
  --radius: 14px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

/* ── NAV ── */
nav {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid var(--fire);
  box-shadow: 0 4px 30px rgba(255, 69, 0, 0.15);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 1px;
}

.logo::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url('logo.PNG') center/cover no-repeat;
  flex-shrink: 0;
}

.logo span { color: var(--fire); }

nav ul { list-style: none; display: flex; gap: 1.8rem; }
nav ul a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
  transition: color .2s;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
nav ul a:hover,
nav ul a.active { color: var(--text); border-bottom-color: var(--fire); }

.cart-btn {
  background: var(--fire);
  color: #fff;
  padding: .5rem 1.3rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cart-btn:hover { background: var(--fire-dark); transform: scale(1.04); }

.cart-badge {
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: .72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 93vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('logo.PNG') center center / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.05);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-flame {
  font-size: 5rem;
  display: block;
  animation: flicker 1.8s ease-in-out infinite alternate;
}

@keyframes flicker {
  0%   { transform: scale(1) rotate(-2deg); filter: drop-shadow(0 0 10px #ff4500); }
  100% { transform: scale(1.12) rotate(2deg); filter: drop-shadow(0 0 30px #ff6600); }
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  margin: .5rem 0;
}

.t-fire { color: var(--fire); text-shadow: 0 0 40px rgba(255,69,0,.6); }
.t-gold { color: var(--gold); text-shadow: 0 0 40px rgba(255,204,0,.4); }

.hero-sub { font-size: 1.15rem; color: rgba(240,240,240,.85); margin: 1rem 0 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-fire { background: var(--fire); color: #fff; }
.btn-fire:hover { background: var(--fire-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,69,0,.35); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-dark { background: var(--card); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--fire); color: var(--fire); }
.btn-sm { padding: .4rem 1.1rem; font-size: .85rem; border-radius: 20px; }
.btn-block { width: 100%; text-align: center; display: block; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--dark); }

/* Menu section with menu.PNG as subtle background */
.section-menu {
  padding: 5rem 2rem;
  background:
    linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.92)),
    url('menu.PNG') center center / cover no-repeat fixed;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 2.5rem; }
.section-title.center { text-align: center; }
.section-title span { color: var(--fire); }

/* ── MENU GRID ── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.menu-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); border-color: var(--fire); box-shadow: 0 12px 30px rgba(255,69,0,.18); }

.menu-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1a0800, #2d1200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.menu-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.menu-card-body p { color: var(--muted); font-size: .82rem; flex: 1; margin-bottom: .9rem; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }

.price { color: var(--gold); font-weight: 800; font-size: 1.1rem; }

.badge { display: inline-block; font-size: .68rem; font-weight: 800; padding: .15rem .55rem; border-radius: 10px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .4rem; }
.badge-hot     { background: var(--fire); color: #fff; }
.badge-popular { background: #a855f7; color: #fff; }
.badge-new     { background: var(--green); color: #fff; }

.add-btn {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: .4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.add-btn:hover { background: var(--fire-dark); transform: scale(1.05); }

/* ── CATEGORY TABS ── */
.cat-tabs { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,69,0,.12);
  border: 2px solid rgba(255,69,0,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--fire);
  transition: background .2s, border-color .2s, transform .2s;
}
.step:hover .step-icon {
  background: rgba(255,69,0,.22);
  border-color: var(--fire);
  transform: scale(1.1);
}
.step h3 { font-weight: 700; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .88rem; }

/* ── PROMO BANNER ── */
.promo-banner {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
  background: url('prom.PNG') center center / cover no-repeat;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.82), rgba(204,51,0,0.88));
}

.promo-banner > * { position: relative; z-index: 1; }

.promo-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.promo-banner p { font-size: 1.1rem; margin: .5rem 0 1.5rem; color: rgba(255,255,255,.9); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .2s;
}
.testimonial-card:hover { border-color: var(--fire); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .6rem; }
.testimonial-card p { color: var(--muted); font-size: .9rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-card strong { font-size: .9rem; }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px; max-width: 100vw;
  height: 100vh;
  background: var(--dark);
  border-left: 2px solid var(--fire);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 { font-size: 1.2rem; font-weight: 800; }
.close-btn { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; transition: color .2s; }
.close-btn:hover { color: var(--fire); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-info { flex: 1; }
.cart-info h4 { font-size: .9rem; font-weight: 700; }
.cart-info p { color: var(--muted); font-size: .8rem; }
.cart-item-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

.qty-btn {
  background: var(--border);
  border: none;
  color: var(--text);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.qty-btn:hover { background: var(--fire); }
.qty-num { font-weight: 700; min-width: 20px; text-align: center; font-size: .9rem; }
.item-price { color: var(--gold); font-weight: 800; font-size: .9rem; min-width: 50px; text-align: right; }
.remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1rem; transition: color .2s; }
.remove-btn:hover { color: var(--red); }

.cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: .4rem; color: var(--muted); font-size: .9rem; }
.cart-total-row.grand { color: var(--text); font-weight: 800; font-size: 1.1rem; border-top: 1px solid var(--border); padding-top: .8rem; margin-top: .5rem; margin-bottom: 1rem; }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.cart-empty .icon { font-size: 3rem; display: block; margin-bottom: .8rem; }

/* ── ORDER PAGE ── */
.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; max-width: 1050px; margin: 0 auto; align-items: start; }

.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--gold); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .82rem; color: var(--muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid var(--border);
  color: var(--text);
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .95rem;
  transition: border-color .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--fire); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.order-type-btns { display: flex; gap: .8rem; }
.order-type-btn {
  flex: 1;
  padding: .8rem;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #0d0d0d;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  font-size: .95rem;
  font-family: inherit;
}
.order-type-btn.active { border-color: var(--fire); color: var(--text); background: rgba(255,69,0,.1); }

.summary-item { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.summary-item span:last-child { color: var(--gold); font-weight: 700; }
.summary-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; padding-top: .8rem; margin-top: .3rem; }
.summary-total span:last-child { color: var(--gold); }

/* ── SUCCESS ── */
.success-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}
.success-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.success-box h2 { font-size: 2rem; margin-bottom: .5rem; }
.success-box p { color: var(--muted); margin-bottom: .4rem; }
.order-ref { color: var(--gold); font-size: 1.5rem; font-weight: 900; margin: 1rem 0; display: block; }
.order-items-list { text-align: left; margin: 1.5rem 0; border-top: 1px solid var(--border); }

/* ── ALERT ── */
.alert { padding: .9rem 1.2rem; border-radius: 10px; margin-bottom: 1.2rem; font-weight: 600; font-size: .9rem; }
.alert-error { background: rgba(245,101,101,.12); border: 1px solid var(--red); color: var(--red); }

/* ── ABOUT ── */
.about-hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('logo.PNG') center 30% / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.05);
  z-index: 0;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.92));
  z-index: 1;
}
.about-hero > * { position: relative; z-index: 2; }
.about-hero .big-emoji {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,69,0,.15);
  border: 2px solid rgba(255,69,0,.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--fire);
  animation: flicker 1.8s ease-in-out infinite alternate;
}
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
.about-hero p { color: var(--muted); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: var(--fire); transform: translateY(-4px); }
.value-card .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,69,0,.12);
  border: 1.5px solid rgba(255,69,0,.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--fire);
  transition: background .2s, transform .2s;
}
.value-card:hover .icon { background: rgba(255,69,0,.22); transform: scale(1.08); }
.value-card h3 { font-weight: 700; margin-bottom: .4rem; }
.value-card p { color: var(--muted); font-size: .88rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.team-card:hover { border-color: var(--fire); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,69,0,.2), rgba(255,204,0,.1));
  border: 2px solid rgba(255,69,0,.35);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: .8rem;
  color: var(--gold);
}
.team-card h3 { font-weight: 700; }
.team-card p { color: var(--fire); font-size: .85rem; font-weight: 600; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.info-row .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,69,0,.12);
  border: 1.5px solid rgba(255,69,0,.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--fire);
  flex-shrink: 0;
}
.info-row h4 { font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
.info-row p { color: var(--muted); font-size: .88rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .35rem 0; font-size: .88rem; }
.hours-table td:last-child { text-align: right; color: var(--muted); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--card);
  border: 1px solid var(--fire);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-emoji { margin-right: .4rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 2px solid var(--fire);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col .logo { font-size: 1.4rem; display: block; margin-bottom: .6rem; }
.footer-col p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.footer-col h4 { font-weight: 700; margin-bottom: .8rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--fire); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--fire);
    gap: .8rem;
  }
  nav ul.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100vw; }
  .hero { min-height: 80vh; }
  .section { padding: 3rem 1.2rem; }
  .form-box { padding: 1.4rem; }
  .order-type-btns { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .cart-item-right { gap: .3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-col .logo { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn, .hero-btns .btn-promo-hero { width: 100%; justify-content: center; }
  .promo-banner { padding: 3rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .menu-card-body { padding: .7rem; }
  .menu-card-body h3 { font-size: .85rem; }
  .price { font-size: .95rem; }
  .add-btn { padding: .35rem .7rem; font-size: .78rem; }
  .section-title { font-size: 1.5rem; }
  .success-box { padding: 2rem 1.2rem; }
  .cart-sidebar { width: 100vw; }
  nav { padding: 0 1rem; }
  .logo { font-size: 1.2rem; }
  .logo::before { width: 32px; height: 32px; }
  .toast { bottom: 1rem; right: 1rem; left: 1rem; max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
}
