/* ══════════════════════════════════════
   8 BITES CHAO FAN — style.css
   ══════════════════════════════════════ */

:root {
  --red:        #C0392B;
  --red-dark:   #96281B;
  --red-light:  #E74C3C;
  --black:      #111111;
  --dark:       #1a1a1a;
  --dark2:      #222222;
  --white:      #ffffff;
  --offwhite:   #F8F8F6;
  --gray:       #e8e8e8;
  --gray2:      #666666;
  --green:      #27AE60;
  --green-dark: #1E8449;
  --shadow:     0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.2);
  --radius:     12px;
  --radius-sm:  8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--offwhite);
  color: var(--dark);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(192,57,43,0.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text .b1 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-brand-text .b2 {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--red-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--red);
}

.nav-order-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}

.nav-order-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ══════════════════════════════════════
   MOBILE NAV DRAWER
   ══════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: 0.2s;
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(192,57,43,0.15);
  border-left-color: var(--red);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(192,57,43,0.08) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--red-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title .accent {
  color: var(--red-light);
  display: block;
}

.hero-tagline {
  font-size: 1rem;
  color: #999;
  margin-bottom: 28px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.hero-desc {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--red-light);
  color: var(--red-light);
  background: rgba(192,57,43,0.08);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--red-light); display: block; }
.stat-label { font-size: 0.75rem; color: #777; letter-spacing: 0.5px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
}

.hero-logo-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--red);
  box-shadow: 0 0 60px rgba(192,57,43,0.4), 0 0 120px rgba(192,57,43,0.15);
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.2);
  animation: expandRing 3s ease-in-out infinite;
}

.hero-ring-1 { width: 380px; height: 380px; animation-delay: 0s; }
.hero-ring-2 { width: 450px; height: 450px; animation-delay: 0.5s; }
.hero-ring-3 { width: 520px; height: 520px; animation-delay: 1s; }

@keyframes expandRing {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.03); }
}

/* ══════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════ */
section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  color: var(--gray2);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════
   MENU SECTION
   ══════════════════════════════════════ */
#menu { background: var(--white); }

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.menu-tab {
  background: var(--gray);
  color: var(--gray2);
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: 0.3px;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--red);
  color: var(--white);
}

.menu-group { display: none; }
.menu-group.active { display: block; }

.menu-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.menu-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.menu-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.menu-card-desc {
  font-size: 0.8rem;
  color: var(--gray2);
  margin-bottom: 12px;
  line-height: 1.5;
  flex: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
}

.menu-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.tag-original { background: #e8f5e9; color: var(--green-dark); }
.tag-spicy    { background: #fdecea; color: var(--red); }
.tag-garlic   { background: #fff8e1; color: #b7860b; }

/* Toppings list style */
.toppings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.topping-card {
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.topping-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.topping-card-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.topping-card-info {
  padding: 14px;
  flex: 1;
}

.topping-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.topping-note {
  font-size: 0.75rem;
  color: var(--gray2);
  margin-bottom: 6px;
}

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

/* ══════════════════════════════════════
   NEW ITEM HIGHLIGHT
   ══════════════════════════════════════ */
#newitem {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#newitem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.25) 0%, transparent 60%);
}

.newitem-inner {
  max-width: 1100px;
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.newitem-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.newitem-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red-light);
  margin-bottom: 16px;
}

.newitem-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.newitem-img-wrap {
  position: relative;
}

.newitem-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.newitem-img-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--red);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(192,57,43,0.5);
  line-height: 1.3;
}

/* ══════════════════════════════════════
   BEVERAGES
   ══════════════════════════════════════ */
#beverages { background: var(--offwhite); }

.bev-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.bev-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bev-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.bev-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bev-body { padding: 18px; }
.bev-name { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.bev-price { font-size: 1.3rem; font-weight: 800; color: var(--red); }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-logo-img {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--red);
  box-shadow: var(--shadow-lg);
  margin: auto;
  display: block;
}

.about-text .section-title { margin-bottom: 20px; }

.about-desc {
  color: var(--gray2);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}

.about-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-feature-text h4 { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.about-feature-text p  { font-size: 0.82rem; color: var(--gray2); line-height: 1.5; }

/* ══════════════════════════════════════
   LOCATION
   ══════════════════════════════════════ */
#location { background: var(--offwhite); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-map {
  background: linear-gradient(135deg, #1a2a1a, #0d1f0d);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--green);
  padding: 36px;
  gap: 12px;
}

.location-map .map-icon { font-size: 3rem; }
.location-map h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.location-map p  { color: #aaa; font-size: 0.88rem; line-height: 1.6; }
.location-map a  { color: var(--green); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: 8px; display: inline-block; }
.location-map a:hover { color: #2ecc71; text-decoration: underline; }

.location-info { display: flex; flex-direction: column; gap: 16px; }

.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--gray);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.loc-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.loc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.loc-text h4 { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.loc-text p  { font-size: 0.85rem; color: var(--gray2); line-height: 1.5; }
.loc-text a  { color: var(--red); text-decoration: none; font-weight: 600; font-size: 0.88rem; }
.loc-text a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { background: var(--dark); position: relative; overflow: hidden; }

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(192,57,43,0.15) 0%, transparent 60%);
}

.contact-inner {
  max-width: 700px;
  margin: auto;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-inner .section-label { color: var(--red-light); }
.contact-inner .section-title { color: var(--white); }
.contact-inner .section-divider { margin: 0 auto 12px; }
.contact-inner .section-sub { color: #888; margin: 0 auto 48px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--red);
  background: rgba(192,57,43,0.1);
}

.contact-card-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card-label { font-size: 0.75rem; font-weight: 600; color: var(--red-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.contact-card-value { font-size: 0.95rem; font-weight: 600; color: var(--white); line-height: 1.5; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 24px;
  text-align: center;
  color: #555;
  font-size: 0.82rem;
}

footer span { color: var(--red-light); }

/* ══════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
  z-index: 500;
  transition: background 0.2s, transform 0.15s;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-order-btn { display: none; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 40px 24px; }
  .hero-visual { order: -1; }
  .hero-logo-img { width: 220px; height: 220px; }
  .hero-ring-1 { width: 260px; height: 260px; }
  .hero-ring-2 { width: 310px; height: 310px; }
  .hero-ring-3 { width: 360px; height: 360px; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }

  .newitem-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .menu-cards { grid-template-columns: 1fr; }
  .toppings-grid { grid-template-columns: 1fr; }
  .bev-cards { grid-template-columns: 1fr 1fr; }
}
