:root {
  --red: #E8191A;
  --red-glow: rgba(232, 25, 26, 0.3);
  --dark: #0a0a0a;
  --darker: #050505;
  --card: rgba(20, 20, 20, 0.5);
  --gold: #F5C518;
  --white: #ffffff;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);
  --nav-bg: rgba(5, 5, 5, 0.92);
}

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

html {
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here — breaks position:sticky on nav */
}

body {
  background: var(--darker);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  /* Clip horizontal overflow only on body, not html */
  overflow-x: clip;
  /* Prevent mobile bounce from causing visible overflow */
  position: relative;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1rem;
  background: radial-gradient(circle at 50% 30%, rgba(232,25,26,0.18) 0%, var(--darker) 65%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* Top block: logo + text */
.hero-top {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(1rem, 4svh, 2.5rem);
  gap: clamp(0.3rem, 1svh, 0.8rem);
}

.hero-logo {
  width: clamp(60px, 12vw, 110px);
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) both;
  filter: drop-shadow(0 8px 20px var(--red-glow));
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 15vw, 10rem);
  line-height: 0.85;
  color: var(--white);
  animation: fadeUp 1s 0.1s cubic-bezier(0.16,1,0.3,1) both;
  text-shadow: 0 16px 32px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  word-break: keep-all;
}

.hero h1 span {
  color: var(--red);
  display: block;
  text-shadow: 0 0 40px var(--red-glow);
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.55rem, 2.8vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeUp 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

/* Sandwich image fills remaining space */
.hero-sandwich {
  grid-row: 2;
  width: min(480px, 85vw);
  max-height: 45svh;
  object-fit: contain;
  align-self: end;
  animation: float 6s ease-in-out infinite, fadeUp 1s 0.3s cubic-bezier(0.16,1,0.3,1) both;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.85));
  z-index: 2;
  position: relative;
}

.scroll-cta {
  grid-row: 3;
  justify-self: center;
  padding-bottom: clamp(0.8rem, 3svh, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1s 0.5s cubic-bezier(0.16,1,0.3,1) both;
  white-space: nowrap;
}

.mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--border-light);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 4px;
  height: 6px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 5px;
  animation: scrollWheel 2s infinite;
}

/* ===== LOCATION BAR ===== */
.location-bar {
  background: var(--red);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  width: 100%;
  overflow: hidden;
}

.location-bar span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

.location-sep {
  opacity: 0.5 !important;
}

/* ===== STICKY NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  /* Allow horizontal scroll WITHOUT affecting page width */
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Lock to viewport */
  width: 100%;
  /* Prevent content from making nav wider than viewport */
  max-width: 100vw;
}

nav::-webkit-scrollbar {
  display: none;
}

/* Padding using pseudo-element so flex children don't overflow */
nav::before,
nav::after {
  content: '';
  min-width: 1rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 32px;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

.nav-btn {
  padding: 1rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
}

.nav-btn.active {
  color: var(--white);
}

.nav-btn.active::after {
  transform: scaleX(0.8);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 1px;
}

.section-title span {
  color: var(--red);
}

.section-count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 1.2rem;
  border-left: 2px solid var(--red);
}

/* ===== GRID ===== */
/* Base: desktop — at least 300px per column */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 2rem 1.5rem;
  width: 100%;
}

/* Smaller items: garnituri/deserturi/sosuri/bauturi */
.grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
}

/* ===== CARD ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(232,25,26,0.05);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
  position: relative;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

/* For transparent PNG items (drinks, sauces, desserts) */
.card-img--contain {
  object-fit: contain;
  padding: 1rem;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.card:hover .card-img {
  transform: scale(1.07);
}

.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.card-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(30,30,30,0.8), rgba(10,10,10,0.8));
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.card-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
}

.card-weight {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
  align-self: flex-start;
}

.card-ingredients {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.card-price small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 2px;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(232,25,26,0.1);
  color: var(--red);
  border: 1px solid rgba(232,25,26,0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== LOCATII ===== */
#locatii {
  background: var(--dark);
  position: relative;
  padding-bottom: 2rem;
}

#locatii::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 1.5rem;
}

.loc-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.loc-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.loc-card:hover .location-img {
  transform: scale(1.05);
}

.loc-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.loc-city {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
  letter-spacing: 1px;
}

.loc-city span {
  color: var(--red);
}

.loc-address {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.loc-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #888;
}

.loc-row svg {
  flex-shrink: 0;
  color: var(--red);
}

.loc-row strong {
  color: var(--white);
  font-weight: 700;
}

/* Buttons container */
.loc-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

/* Row of secondary buttons */
.loc-actions-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* All buttons share base */
.loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
  /* Allow text to wrap if needed, avoid overflow */
  white-space: normal;
  text-align: center;
  flex: 1;
  min-width: 70px;
}

.loc-btn-call {
  background: var(--red);
  color: #fff;
  width: 100%;
  flex: none;
}

.loc-btn-call:hover {
  background: #f02526;
  box-shadow: 0 8px 24px rgba(232,25,26,0.4);
}

.loc-btn-waze {
  background: rgba(39,174,96,0.1);
  color: #2ecc71;
  border-color: rgba(39,174,96,0.2);
}

.loc-btn-waze:hover { background: rgba(39,174,96,0.2); }

.loc-btn-maps {
  background: rgba(232,25,26,0.1);
  color: var(--red);
  border-color: rgba(232,25,26,0.2);
}

.loc-btn-maps:hover { background: rgba(232,25,26,0.2); }

.loc-btn-review {
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  border-color: rgba(245,197,24,0.2);
}

.loc-btn-review:hover { background: rgba(245,197,24,0.2); }

/* ===== MAP ===== */
.map-wrap {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  width: 100%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(88%) hue-rotate(180deg) contrast(1.1);
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

footer img {
  width: 80px;
  opacity: 0.8;
  margin: 0 auto 1.2rem;
  transition: opacity 0.3s;
}

footer img:hover { opacity: 1; }

footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

footer a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
}

.socials a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.socials a:hover { color: var(--white); }
.socials a:hover::after { width: 100%; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.8deg); }
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 1rem;
  }

  .section-header {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
  }

  .section-count {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--red);
    padding-top: 0.4rem;
  }

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

  .grid-sm {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

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

  .hero-logo {
    width: 110px;
  }

  .hero-sub {
    letter-spacing: 0.15em;
  }

  .nav-btn {
    padding: 0.9rem 0.9rem;
    font-size: 0.75rem;
  }

  .map-wrap {
    height: 280px;
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(3rem, 20vw, 4.5rem);
  }

  .hero-logo {
    width: 95px;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .card-name {
    font-size: 1rem;
  }

  .card-price {
    font-size: 1.7rem;
  }

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

  .loc-city {
    font-size: 1.7rem;
  }

  .loc-btn {
    font-size: 0.65rem;
    padding: 0.65rem 0.5rem;
  }

  .location-bar {
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
  }

  .location-bar span {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .map-wrap {
    height: 240px;
  }
}

/* ===== DARK ALTERNATING SECTIONS ===== */
.dark-section {
  background: var(--dark);
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

.dark-section > * {
  position: relative;
  z-index: 1;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 800px;
  max-height: 92svh;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
@media (min-width: 640px) {
  .modal-overlay { align-items: center; padding: 1.5rem; }
  .modal-box { border-radius: 20px; grid-template-columns: 300px 1fr; max-height: 85svh; }
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: var(--red); transform: rotate(90deg); }
.modal-img-col {
  position: relative; background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; border-radius: 20px 20px 0 0; overflow: hidden;
}
@media (min-width: 640px) {
  .modal-img-col { border-radius: 20px 0 0 20px; min-height: 380px; }
}
.modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-img.contain { object-fit: contain; padding: 1.5rem; }
.modal-price-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--red); color: white; border-radius: 10px;
  padding: 0.4rem 0.8rem; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: baseline; gap: 0.3rem;
  box-shadow: 0 4px 20px rgba(232,25,26,0.5);
}
.modal-price-badge small { font-family: 'Outfit',sans-serif; font-size: 0.75rem; font-weight: 700; opacity: 0.85; }
.modal-info-col { padding: 1.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.modal-meta-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.modal-tag { background: var(--red); color: white; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 6px; }
.modal-tag:empty { display: none; }
.modal-weight { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; }
.modal-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem,5vw,2.2rem); color: var(--white); line-height: 1; letter-spacing: 1px; }
.modal-section { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 0.8rem; }
.modal-section-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.5rem; }
.modal-section-title small { font-size: 0.65rem; opacity: 0.7; text-transform: none; letter-spacing: 0; }
.modal-text { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.modal-nutri-text { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.modal-allergens-text { color: #fbbf24; font-weight: 600; font-size: 0.82rem; }
.card { cursor: pointer; }
