/* ============================================================
   RADOST PIZZA KEBAB — Main Stylesheet
   ============================================================ */

/* Variables */
:root {
  --bg: #0D0D0D;
  --bg-2: #111111;
  --bg-card: #181818;
  --bg-card-hover: #202020;
  --gold: #D4A853;
  --gold-light: #E8C07A;
  --gold-dark: #B8922E;
  --white: #FFFFFF;
  --gray: #999999;
  --gray-dark: #555555;
  --border: rgba(212, 168, 83, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 32px rgba(212, 168, 83, 0.35);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.7);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.375rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-radost {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.logo-kebab {
  font-family: var(--font-body);
  font-size: 0.58rem;
  color: var(--gray);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.btn-order {
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  display: inline-block;
}
.btn-order:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--gold); }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--gold);
  color: var(--bg);
  padding: 0.875rem 2.5rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.55);
  transition: all var(--transition);
  white-space: nowrap;
}
.sticky-cta:hover {
  background: var(--gold-light);
  transform: translateX(-50%) translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background-image: url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.65) 55%,
    rgba(13, 13, 13, 0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) forwards 0.2s;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) forwards 0.45s;
  letter-spacing: 0.01em;
}
.hero-title .gold { color: var(--gold); }
.hero-title .block { display: block; }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.75rem;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) forwards 0.65s;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) forwards 0.85s;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.05rem 2.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.hero-cta i { font-size: 0.9rem; }
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.hero-cta-ghost:hover { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll i { font-size: 1rem; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.section-title span { color: var(--gold); }
.section-line {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-eyebrow { text-align: left; }
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.about-heading span { color: var(--gold); }
.about-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.875rem;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.feature-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}
.about-visual { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}
.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,13,13,0.85) 100%);
}
.about-stat-card {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 2;
  background: var(--gold);
  color: var(--bg);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ============================================================
   MENU
   ============================================================ */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--gray);
  padding: 0.5rem 1.375rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 700;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 0 1px rgba(212,168,83,0.3), var(--shadow-card);
}
.menu-card.hidden { display: none; }
.card-img {
  position: relative;
  height: 185px;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.menu-card:hover .card-img img { transform: scale(1.08); }
.card-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.card-body { padding: 1.125rem; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.card-top h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}
.price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}
.card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
.size-toggle {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}
.size-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--gray);
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.size-btn.active, .size-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-subtle);
}
.allergens { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.allergen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 4px;
  background: rgba(212,168,83,0.09);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
}
.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cart:hover { background: var(--gold-light); transform: scale(1.04); }
.btn-cart.added { background: #27ae60; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0) 0%, rgba(212,168,83,0.15) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border-subtle);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}
.contact-info { display: flex; flex-direction: column; gap: 1.875rem; }
.contact-item { display: flex; gap: 1.125rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(212,168,83,0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1.25rem;
  font-size: 0.875rem;
}
.hours-day { color: var(--gray); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-time.closed { color: #e74c3c; }
.phone-link {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  letter-spacing: 0.02em;
}
.phone-link:hover { color: var(--gold) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070707;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-brand p {
  margin-top: 0.875rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.footer-col i { color: var(--gold); width: 14px; flex-shrink: 0; margin-top: 3px; }
.social-icons { display: flex; gap: 0.625rem; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray);
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }
.fade-in:nth-child(7) { transition-delay: 0.48s; }
.fade-in:nth-child(8) { transition-delay: 0.56s; }
.fade-in:nth-child(9) { transition-delay: 0.64s; }

/* ============================================================
   RESPONSIVE — 375px (mobile)
   ============================================================ */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .btn-order { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }

  .hero-bg { background-attachment: scroll; }
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrapper { height: 300px; }

  .menu-grid { grid-template-columns: 1fr; gap: 1rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-container { height: 280px; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.25rem 1rem; }
}

/* ============================================================
   RESPONSIVE — 768px (tablet)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1279px) {
  .hamburger { display: none; }
  .nav-links { display: flex; gap: 1.25rem; }
  .nav-link { font-size: 0.72rem; }

  .about-grid { gap: 2.5rem; }
  .about-img-wrapper { height: 420px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-container { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 1280px (desktop)
   ============================================================ */
@media (min-width: 1280px) {
  .hamburger { display: none; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   MENU CARD — item number badge
   ============================================================ */
.card-number {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
  line-height: 1;
}

/* card-footer without cart — just allergens */
.card-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

/* Allergen legend below menu grid */
.allergen-legend {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #666;
}
.allergen-legend strong { color: var(--gold); }

/* ============================================================
   HERO — delivery row
   ============================================================ */
.hero-delivery {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.hero-delivery span {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.delivery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.delivery-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: default;
  text-decoration: none;
}
.phone-badge {
  background: var(--gold);
  color: var(--bg) !important;
}
.phone-badge:hover { background: var(--gold-light); }
.foodora-badge { background: #e91e8c; color: #fff; }
.wolt-badge    { background: #009de0; color: #fff; }
.bolt-badge    { background: #34d186; color: #fff; }
