:root {
  --color-primary: #E63329;
  --color-primary-dark: #C22318;
  --color-accent: #F59E42;
  --color-yellow: #FFD23F;
  --color-just-eat: #FF8000;
  --color-deliveroo: #00CCBC;
  --color-instagram: #E1306C;
  --color-tiktok: #111111;
  --color-tiktok-cyan: #25F4EE;
  --color-tiktok-pink: #FE2C55;
  --color-bg: #FBEEDF;
  --color-bg-soft: #FDF6EC;
  --color-surface: #FFFFFF;
  --dish-pink: #E88C8C;
  --dish-orange: #F0913A;
  --dish-green: #7CC24E;
  --dish-purple: #8A7BE0;
  --color-text: #2B2118;
  --color-text-muted: #7A6F63;
  --color-dark: #1F1711;
  --color-gray-card: #E9E9E9;
  --shadow-card: 0 10px 30px rgba(43, 33, 24, 0.08);
  --shadow-strong: 0 18px 46px rgba(43, 33, 24, 0.14);
  --shadow-red: 0 16px 34px rgba(230, 51, 41, 0.24);
  --shadow-accent: 0 16px 34px rgba(245, 158, 66, 0.24);
  --border-soft: rgba(43, 33, 24, 0.10);
  --overlay-dark: rgba(43, 33, 24, 0.58);
  --drop-shadow: rgba(43, 33, 24, 0.22);
  --radius-card: 20px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-pad-y: 48px;
  --container-max: 1200px;
  --container-pad: 20px;
  --header-height: 72px;
  --focus-ring: 0 0 0 3px rgba(230, 51, 41, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 10px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

section {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.app-promo,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-block-size: 720px;
}

.container {
  width: min(100% - (var(--container-pad) * 2), var(--container-max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  background: var(--color-dark);
  color: var(--color-surface);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 160;
  background: var(--color-bg);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-red);
}

.brand-icon svg {
  width: 27px;
  height: 27px;
}

.brand-icon path:first-child {
  fill: var(--color-surface);
}

.brand-icon path:nth-child(2) {
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-width: 2;
}

.brand-icon circle {
  fill: var(--color-primary);
}

.brand > span:last-child {
  font-size: 18px;
  white-space: nowrap;
}

.main-nav {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 220;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 96px 24px 112px;
  background: var(--color-bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  width: min(100%, 360px);
  gap: 12px;
}

.mobile-menu a {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.mobile-menu a::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 34px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  content: "";
  opacity: 0;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu a[aria-current="page"] {
  border-color: rgba(230, 51, 41, 0.20);
  color: var(--color-primary);
}

.mobile-menu a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-red);
}

.button-accent {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-accent);
}

.txt-red {
  color: var(--color-primary);
}

.txt-orange {
  color: var(--color-accent);
}

.hero {
  position: relative;
  padding: 30px 0 24px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-text {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero-food {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-floating-stage {
  --hero-scroll: 0;
  min-height: 360px;
  align-items: center;
  padding: 18px 0 24px;
  isolation: isolate;
  perspective: 1000px;
}

.hero-floating-stage::before {
  position: absolute;
  z-index: -3;
  width: min(88vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 210, 63, 0.58) 0 34%, rgba(245, 158, 66, 0.18) 35% 56%, transparent 57%),
    radial-gradient(circle at 18% 24%, rgba(230, 51, 41, 0.12), transparent 44%);
  content: "";
}

.hero-floating-stage::after {
  position: absolute;
  right: 16%;
  bottom: 30px;
  z-index: -2;
  width: min(58vw, 300px);
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(43, 33, 24, 0.22), rgba(43, 33, 24, 0) 70%);
  content: "";
  opacity: 0.82;
  transform: rotate(-8deg) scaleX(calc(1 - (var(--hero-scroll) * 0.12)));
}

.floating-taco {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(88vw, 430px);
  transform:
    translate3d(0, calc(var(--hero-scroll) * -34px), 0)
    rotate(calc(-8deg + (var(--hero-scroll) * 18deg)))
    rotateY(calc(var(--hero-scroll) * 24deg))
    scale(calc(1 + (var(--hero-scroll) * 0.03)));
  transform-style: preserve-3d;
  will-change: transform;
}

.floating-taco img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: tacoFloat 5.6s ease-in-out infinite;
}

.hero-float-orb {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.hero-float-orb-red {
  top: 12%;
  left: 10%;
  width: 18px;
  aspect-ratio: 1;
  background: var(--color-primary);
}

.hero-float-orb-yellow {
  top: 20%;
  right: 10%;
  width: 44px;
  aspect-ratio: 1;
  background: var(--color-yellow);
}

.hero-float-orb-orange {
  right: 18%;
  bottom: 18%;
  width: 24px;
  aspect-ratio: 1;
  background: var(--color-accent);
}

.hero-float-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 116px;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.hero-float-badge strong,
.hero-float-badge span {
  display: block;
  line-height: 1.12;
}

.hero-float-badge strong {
  font-size: 15px;
  font-weight: 800;
}

.hero-float-badge span {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-float-badge-halal {
  top: 12px;
  right: 2%;
  min-width: 96px;
  background: var(--color-yellow);
}

.hero-float-badge-sauce {
  bottom: 74px;
  left: 0;
  transform: rotate(-4deg);
}

.hero-float-badge-delivery {
  right: 0;
  bottom: 22px;
  min-width: 150px;
  transform: rotate(3deg);
}

@keyframes tacoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -13px, 0);
  }
}


.sauce-carousel,
.categories,
.locations,
.app-promo {
  padding: var(--section-pad-y) 0;
}

.sauce-carousel {
  padding-top: 24px;
}

.sauce-section-head {
  max-width: 620px;
  margin: 0 auto 22px;
  text-align: center;
}

.sauce-section-head h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.16;
}

.sauce-section-head h2::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  content: "";
}

.sauce-section-head p:last-child {
  margin: 14px auto 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.dish-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 42px 0 26px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.dish-track {
  display: grid;
  grid-auto-columns: minmax(250px, 80vw);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 80px 18px 8px;
  scroll-behavior: smooth;
  scroll-padding-inline: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.dish-track::-webkit-scrollbar {
  display: none;
}

.dish-card {
  --dish-color: var(--dish-pink);
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  padding: 112px 18px 16px;
  background: var(--dish-color);
  color: var(--color-surface);
  text-align: center;
}

.dish-card-pink {
  --dish-color: var(--dish-pink);
}

.dish-card-orange {
  --dish-color: var(--dish-orange);
}

.dish-card-green {
  --dish-color: var(--dish-green);
}

.dish-card-purple {
  --dish-color: var(--dish-purple);
}

.dish-image {
  position: absolute;
  top: -78px;
  left: 50%;
  width: 188px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--color-surface);
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transform: translateX(-50%);
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-image-placeholder {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--color-bg-soft), var(--color-surface));
}

.dish-image-placeholder span {
  color: var(--dish-color);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.dish-card h2,
.dish-card h3 {
  display: grid;
  flex: 1;
  min-height: 52px;
  margin: 0;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.dish-card a {
  display: inline-flex;
  margin-top: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  background: var(--color-surface);
  color: var(--dish-color);
  font-weight: 800;
}

.dish-card a::after {
  margin-left: 8px;
  content: "→";
}

.dish-card-empty {
  min-height: 220px;
  justify-content: center;
  padding-top: 42px;
}

.dish-loading {
  display: grid;
  min-height: 220px;
  place-items: center;
  border-radius: var(--radius-card);
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-weight: 800;
}

.carousel-arrow {
  display: none;
}

.categories-grid {
  display: grid;
  gap: 34px;
}

.category-collage {
  display: grid;
  gap: 16px;
}

.yellow-promo {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 22px;
  background: var(--color-yellow);
  color: var(--color-text);
}

.yellow-promo p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin: 0 0 10px;
  border-radius: var(--radius-pill);
  padding: 6px 11px;
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.yellow-promo h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 9ch;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.98;
}

.yellow-promo .promo-floating-taco {
  position: absolute;
  right: 18px;
  bottom: -6px;
  z-index: 0;
  width: 88%;
  max-width: 400px;
  transform: scaleX(-1) rotate(8deg);
}

.yellow-promo .promo-floating-taco img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.promo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promo-stack > img,
.dark-tile img {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.dark-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.dark-tile::after {
  display: none;
}

.category-list {
  display: grid;
  align-content: center;
  gap: 22px;
}

.title-with-bar {
  position: relative;
  padding-left: 18px;
}

.title-with-bar::before {
  position: absolute;
  top: 2px;
  bottom: 4px;
  left: 0;
  width: 4px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  content: "";
}

.title-with-bar h2,
.app-promo h2,
.center-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.category-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}

.category-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-surface);
}

.category-orange {
  background: var(--color-accent);
}

.category-purple {
  background: var(--dish-purple);
}

.category-green {
  background: var(--dish-green);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.category-row h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
}

.category-row p,
.app-promo p,
.site-footer p,
.locations article p,
.locations article span {
  margin: 0;
  color: var(--color-text-muted);
}

.menu-shop {
  margin-top: 42px;
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.menu-shop-head {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.menu-shop-head h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  margin: -10px -18px 18px;
  padding: 14px 18px 26px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  position: relative;
  min-height: 46px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 0 18px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-weight: 800;
  box-shadow: var(--shadow-card);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-tab:nth-child(even):not(.is-active) {
  transform: translateY(5px) rotate(1deg);
}

.menu-tab:nth-child(odd):not(.is-active) {
  transform: rotate(-1deg);
}

.menu-tab.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.menu-browser-layout {
  display: grid;
  gap: 22px;
}

.menu-product-grid {
  display: grid;
  gap: 18px;
  margin: -6px -8px 0;
  padding: 6px 8px 12px;
}

.menu-product-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 112px;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  padding: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: border-color 180ms ease, transform 180ms ease;
}

.menu-product-card.is-selected {
  border-color: var(--color-primary);
}

.menu-card-image,
.menu-detail-image {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--color-surface);
  border-radius: 50%;
  background: var(--color-bg-soft);
  box-shadow: 0 12px 22px rgba(43, 33, 24, 0.16);
}

.menu-card-image img,
.menu-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-floating-image {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-floating-image::after {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: 62%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(43, 33, 24, 0.24), rgba(43, 33, 24, 0) 70%);
  content: "";
  transform: translateX(-50%);
}

.menu-floating-image img {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 86%;
  object-fit: contain;
  transform: translateY(-5%) rotate(-3deg);
}

.menu-detail-image.menu-floating-image img {
  width: 92%;
  height: 92%;
}

.menu-card-placeholder,
.menu-detail-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--color-yellow);
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 800;
}

.menu-card-body {
  min-width: 0;
}

.menu-card-tags,
.menu-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.menu-tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0 9px;
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 800;
}

.menu-tag-halal {
  background: var(--color-primary);
  color: var(--color-surface);
}

.menu-tag-vegetariano {
  background: var(--dish-green);
  color: var(--color-surface);
}

.menu-tag-piccante {
  background: var(--color-accent);
  color: var(--color-surface);
}

.menu-tag-men-disponibile,
.menu-tag-novit {
  background: var(--color-yellow);
  color: var(--color-text);
}

.menu-product-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
}

.menu-card-desc {
  display: none;
  margin: 7px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.menu-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}

.menu-card-price,
.menu-detail-price {
  color: var(--color-primary);
  font-weight: 800;
}

.menu-card-menu-price,
.menu-detail-menu-price {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.menu-detail {
  scroll-margin-top: calc(var(--header-height) + 10px);
  border-radius: var(--radius-card);
  padding: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.menu-detail-inner {
  display: grid;
  gap: 18px;
}

.menu-detail-image {
  width: min(68vw, 220px);
  margin-inline: auto;
  border-width: 5px;
}

.menu-detail-image.menu-floating-image {
  width: min(72vw, 240px);
  border-width: 0;
}

.menu-detail h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.menu-detail-desc,
.menu-detail-note {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.menu-detail-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-top: 12px;
}

.menu-detail h4 {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-detail ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
}

.menu-detail .button {
  margin-top: 18px;
}

.menu-loading,
.menu-error {
  border-radius: var(--radius-card);
  padding: 18px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  box-shadow: var(--shadow-card);
}

.center-title {
  margin-bottom: 34px;
  text-align: center;
}

.center-title h2::after {
  display: block;
  width: 60px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  content: "";
}

.locations-grid {
  display: grid;
  max-width: 920px;
  margin-inline: auto;
  gap: 18px;
}

.location-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.location-placeholder {
  position: relative;
  display: grid;
  min-height: 154px;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background:
    linear-gradient(135deg, rgba(230, 51, 41, 0.16), rgba(245, 158, 66, 0.18)),
    var(--color-bg-soft);
  color: var(--color-text);
  padding: 14px;
}

.location-placeholder::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.location-placeholder::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, rgba(43, 33, 24, 0), rgba(43, 33, 24, 0.28));
  content: "";
  pointer-events: none;
}

.location-placeholder-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-caption {
  position: relative;
  z-index: 2;
  display: grid;
  justify-self: start;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(43, 33, 24, 0.12);
  line-height: 1.2;
}

.location-caption strong {
  font-size: 17px;
  font-weight: 800;
}

.location-caption small {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-number {
  position: relative;
  z-index: 2;
  align-self: start;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 10px rgba(43, 33, 24, 0.22);
  box-shadow: 0 10px 24px rgba(43, 33, 24, 0.16);
}

.location-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.locations h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.locations p {
  margin: 0;
}

.locations a {
  color: var(--color-primary);
  font-weight: 800;
}

.location-phone {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
}

.location-hours {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.hours-row {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  padding: 6px 9px;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: 12px;
}

.hours-row strong {
  color: var(--color-text);
  font-size: 12px;
  text-align: right;
}

.hours-row.is-closed strong {
  color: var(--color-primary);
}

.locations-map {
  position: relative;
  min-height: 340px;
  height: min(64vw, 430px);
  margin-top: 26px;
  overflow: hidden;
  border: 10px solid var(--color-surface);
  border-radius: var(--radius-xl);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.locations-map::before {
  position: absolute;
  inset: 0;
  z-index: 500;
  border: 2px solid rgba(230, 51, 41, 0.20);
  border-radius: calc(var(--radius-xl) - 10px);
  content: "";
  pointer-events: none;
}

.locations-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  font-family: var(--font-sans);
}

.locations-map .leaflet-container {
  background: var(--color-bg-soft);
  font-family: var(--font-sans);
}

.draben-map-marker {
  display: grid;
  place-items: center;
}

.draben-map-marker span {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--color-surface);
  border-radius: 50% 50% 50% 0;
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-red);
  transform: rotate(-45deg);
}

.draben-map-marker em {
  color: inherit;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  transform: rotate(45deg);
}

.locations-map .leaflet-popup-content-wrapper {
  border-radius: 16px;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.locations-map .leaflet-popup-content {
  display: grid;
  min-width: 190px;
  gap: 5px;
  margin: 14px 16px;
  font-family: var(--font-sans);
}

.locations-map .leaflet-popup-content strong {
  font-size: 14px;
  font-weight: 800;
}

.locations-map .leaflet-popup-content span {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.locations-map .leaflet-popup-content a {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.locations-map .leaflet-control-attribution {
  font-size: 10px;
}

.app-promo {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.delivery-panel {
  display: grid;
  gap: 26px;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.delivery-head {
  margin-bottom: 0;
}

.delivery-head h2 {
  color: var(--color-text);
}


.delivery-actions {
  display: grid;
  gap: 14px;
}

.delivery-option {
  display: grid;
  min-height: 156px;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(43, 33, 24, 0.08);
  border-radius: var(--radius-card);
  padding: 20px;
  background: var(--color-bg-soft);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.delivery-option span {
  width: max-content;
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-option strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.delivery-option small {
  color: rgba(43, 33, 24, 0.76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.delivery-option--justeat {
  background: var(--color-just-eat);
  box-shadow: 0 16px 34px rgba(255, 128, 0, 0.24);
}

.delivery-option--deliveroo {
  background: var(--color-deliveroo);
  box-shadow: 0 16px 34px rgba(0, 204, 188, 0.22);
}

.delivery-option--local {
  background: var(--color-dark);
  color: var(--color-surface);
}

.delivery-option--local span {
  background: var(--color-yellow);
  color: var(--color-text);
}

.delivery-option--local small {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 46px 0 92px;
  background: var(--color-bg-soft);
}

.footer-main {
  display: grid;
  gap: 22px;
}

.footer-brand-block {
  display: grid;
  max-width: 390px;
  gap: 12px;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-brand-block p {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
}

.footer-social {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 8px 13px;
  background: transparent;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.footer-social--instagram {
  border-color: rgba(225, 48, 108, 0.26);
  color: var(--color-instagram);
}

.footer-social--tiktok {
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--color-tiktok);
}

.social-icon--instagram {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-icon--tiktok {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tiktok-accent-cyan,
.tiktok-accent-pink,
.tiktok-main {
  fill: none;
  stroke-width: 2.4;
}

.tiktok-accent-cyan {
  stroke: var(--color-tiktok-cyan);
  transform: translate(-1px, 1px);
}

.tiktok-accent-pink {
  stroke: var(--color-tiktok-pink);
  transform: translate(1px, -1px);
}

.tiktok-main {
  stroke: currentColor;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-weight: 750;
}

.footer-links a:hover,
.footer-social:hover {
  color: var(--color-primary);
}

.site-footer h3 {
  margin: 0 0 2px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.mobile-order-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 140;
}

.mobile-order-bar a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-surface);
  font-weight: 800;
  box-shadow: var(--shadow-red);
}

@media (min-width: 480px) {
  :root {
    --container-pad: 24px;
  }

  .dish-track {
    grid-auto-columns: minmax(260px, 42vw);
  }
}

@media (min-width: 768px) {
  :root {
    --section-pad-y: 72px;
  }

  body {
    font-size: 16px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
  }

  .main-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 3px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a[aria-current="page"] {
    color: var(--color-text);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }


  .menu-toggle,
  .mobile-menu,
  .mobile-order-bar {
    display: none;
  }

  .hero {
    padding: 52px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 55fr 45fr;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-floating-stage {
    min-height: 480px;
    padding: 18px 0 28px;
  }

  .floating-taco {
    width: min(39vw, 470px);
  }

  .hero-floating-stage::before {
    width: min(43vw, 500px);
  }

  .hero-float-badge-halal {
    top: 28px;
    right: 4%;
  }

  .hero-float-badge-sauce {
    bottom: 126px;
    left: 2%;
  }

  .hero-float-badge-delivery {
    right: 2%;
    bottom: 70px;
  }

  .sauce-carousel {
    padding-top: 44px;
  }

  .dish-carousel {
    padding: 48px;
  }

  .dish-track {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
    padding: 56px 0 0;
    scroll-padding-inline: 0;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    transform: translateY(-50%);
  }

  .carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
  }

  .carousel-arrow-prev {
    left: -24px;
  }

  .carousel-arrow-next {
    right: -24px;
  }

  .categories-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .category-collage {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .promo-stack {
    grid-template-columns: 1fr;
  }


  .delivery-panel {
    padding: 38px;
  }

  .delivery-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-shop-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .menu-tabs {
    flex-wrap: wrap;
    overflow: visible;
    margin-bottom: 24px;
  }

  .menu-browser-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
  }

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

  .menu-product-card {
    grid-template-columns: 96px 1fr;
    min-height: 138px;
  }

  .menu-card-desc {
    display: block;
  }

  .menu-detail {
    position: sticky;
    top: calc(var(--header-height) + 22px);
  }

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

  .location-hours {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hours-row strong {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: minmax(280px, 1.55fr) repeat(2, minmax(150px, 0.72fr));
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-pad-y: 96px;
  }

  .main-nav {
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .sauce-carousel {
    padding-top: 52px;
  }

  .dish-track {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    grid-template-columns: none;
    overflow-x: auto;
  }

  .dish-card {
    min-height: 248px;
  }

  .title-with-bar h2,
  .app-promo h2,
  .center-title h2,
  .menu-shop-head h2 {
    font-size: 36px;
  }

  .location-placeholder {
    min-height: 166px;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .floating-taco {
    transform: rotate(-8deg) !important;
  }
}
