:root {
  --bg: #11100f;
  --bg-deep: #0a0a09;
  --surface: #191714;
  --surface-light: #211e1a;
  --cream: #fff4de;
  --cream-soft: #eadfca;
  --muted: #aaa193;
  --red: #d24016;
  --red-bright: #eb5127;
  --gold: #fab51b;
  --green: #0d8136;
  --border: rgba(255, 244, 222, 0.12);
  --border-strong: rgba(255, 244, 222, 0.24);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 0%, rgba(210, 64, 22, 0.07), transparent 28rem),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #000 1px, transparent 2px),
    repeating-linear-gradient(95deg, transparent 0 3px, rgba(255, 255, 255, 0.025) 4px);
  background-size:
    7px 7px,
    11px 11px;
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  padding: 10px 16px;
  color: var(--bg);
  background: var(--gold);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 102;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 5px 24px;
  color: var(--cream);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement p,
.announcement a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.announcement a {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.announcement svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(250, 181, 27, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(17, 16, 15, 0.82);
  backdrop-filter: blur(18px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(10, 10, 9, 0.94);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  min-height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 61px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 3px 6px;
  overflow: hidden;
  background: #f8eacb;
  border: 1px solid rgba(250, 181, 27, 0.42);
  border-radius: 15px;
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.2);
}

.brand-mark img {
  width: 58px;
  height: auto;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.brand-type small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.primary-navigation a {
  position: relative;
  padding: 12px 0;
  color: var(--cream-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-navigation a:hover {
  color: var(--cream);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-link {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.cart-link:hover {
  border-color: var(--border-strong);
  background: var(--surface-light);
}

.cart-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(210, 64, 22, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.button:hover {
  background: var(--red-bright);
  box-shadow: 0 16px 38px rgba(210, 64, 22, 0.34);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 200ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
  font-size: 10px;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

.button-dark {
  color: var(--cream);
  background: var(--bg);
  border-color: var(--bg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.button-dark:hover {
  color: var(--bg);
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 70px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 4%;
  left: 49%;
  z-index: -1;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(250, 181, 27, 0.08);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 480px;
  height: 480px;
  filter: blur(10px);
  border-radius: 50%;
  opacity: 0.18;
}

.hero-glow-one {
  top: -220px;
  right: 12%;
  background: radial-gradient(circle, var(--red), transparent 68%);
}

.hero-glow-two {
  bottom: -300px;
  left: -220px;
  background: radial-gradient(circle, var(--gold), transparent 68%);
  opacity: 0.08;
}

.hero-grid {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 28px 0 52px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span:first-child,
.section-kicker span {
  color: var(--gold);
}

.eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--border-strong);
}

.hero h1,
.section-heading h2,
.lunch-copy h2,
.story-copy h2,
.center-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(82px, 9vw, 142px);
}

.hero h1 span,
.section-heading h2 em,
.lunch-copy h2 em,
.story-copy h2 em,
.center-heading h2 em,
.contact-intro h2 em {
  color: var(--red-bright);
  font-style: normal;
}

.hero-intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--cream-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--cream);
  border-bottom: 1px solid var(--border-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  background: var(--surface-light);
  border: 2px solid var(--bg);
  border-radius: 50%;
  font-size: 15px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-trust p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.4;
}

.hero-trust strong {
  font-size: 11px;
  letter-spacing: 0.03em;
}

.hero-trust p span {
  color: var(--muted);
  font-size: 10px;
}

.hero-art {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-disc {
  position: absolute;
  width: min(39vw, 510px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 34% 30%, rgba(250, 181, 27, 0.2), transparent 18%),
    radial-gradient(circle, #29241d 0 55%, #151310 56% 69%, transparent 70%);
  border: 1px solid rgba(250, 181, 27, 0.13);
  border-radius: 50%;
  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.3),
    0 55px 90px rgba(0, 0, 0, 0.44);
}

.hero-orbit {
  position: absolute;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 244, 222, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: min(45vw, 590px);
  animation: spin 35s linear infinite;
}

.orbit-two {
  width: min(50vw, 660px);
  border-style: solid;
  border-color: rgba(255, 244, 222, 0.05);
}

.hero-pizza {
  position: relative;
  z-index: 2;
  width: min(37vw, 485px);
  filter: drop-shadow(0 38px 32px rgba(0, 0, 0, 0.47));
  animation: pizza-float 6s ease-in-out infinite;
}

.hero-price {
  position: absolute;
  right: 0;
  bottom: 72px;
  z-index: 4;
  min-width: 180px;
  padding: 18px 22px;
  background: rgba(25, 23, 20, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}

.hero-price span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-price strong {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-badge {
  position: absolute;
  top: 14px;
  left: 4px;
  z-index: 4;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border: 6px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.hero-badge svg {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  animation: spin 22s linear infinite reverse;
}

.hero-badge text {
  fill: currentColor;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.hero-badge > span {
  font-family: var(--display);
  font-size: 46px;
}

.ingredient {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.34));
}

.ingredient-leaf {
  top: 62px;
  right: 4%;
  width: 55px;
  transform: rotate(28deg);
}

.ingredient-leaf path:first-child {
  fill: var(--green);
}

.ingredient-leaf path:last-child {
  fill: none;
  stroke: #6ac172;
  stroke-width: 3;
}

.ingredient-chili {
  bottom: 35px;
  left: 6%;
  width: 90px;
  transform: rotate(-16deg);
}

.ingredient-chili path:first-child {
  fill: var(--red-bright);
}

.ingredient-chili path:last-child {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 6;
}

.quick-facts {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  background: rgba(25, 23, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(12px);
}

.quick-facts > div {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid var(--border);
}

.quick-facts > div:last-child {
  border-right: 0;
}

.fact-number,
.fact-icon {
  min-width: 48px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.fact-icon {
  font-size: 38px;
}

.quick-facts p {
  max-width: 130px;
  margin: 0;
  color: var(--cream-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--bg);
  background: var(--gold);
  border-block: 1px solid rgba(0, 0, 0, 0.12);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.favorites-section {
  position: relative;
  padding: 150px 0 130px;
}

.favorites-section-alt {
  background:
    radial-gradient(circle at 100% 20%, rgba(250, 181, 27, 0.05), transparent 26rem),
    var(--bg-deep);
}

.indian-section {
  background:
    radial-gradient(circle at 0% 50%, rgba(13, 129, 54, 0.09), transparent 32rem),
    var(--surface);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2,
.lunch-copy h2,
.story-copy h2,
.center-heading h2,
.contact-intro h2 {
  max-width: 800px;
  font-size: clamp(55px, 6vw, 86px);
}

.section-kicker {
  margin-bottom: 17px;
}

.section-kicker span {
  display: inline-flex;
  min-width: 28px;
}

.section-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.section-link span {
  color: var(--red-bright);
  font-size: 18px;
  transition: transform 180ms ease;
}

.section-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.section-link:hover span {
  transform: translate(3px, -3px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.favorites-section-alt .product-card {
  background: var(--surface-light);
}

.product-card:hover {
  border-color: rgba(250, 181, 27, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.product-card.featured {
  transform: translateY(-13px);
}

.product-card.featured:hover {
  transform: translateY(-21px);
}

.product-card.featured::after {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 100px;
  height: 100px;
  content: "";
  background: var(--gold);
  filter: blur(48px);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.product-image {
  position: relative;
  height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(250, 181, 27, 0.14), transparent 33%),
    linear-gradient(145deg, #24211c, #151310);
  border-bottom: 1px solid var(--border);
}

.product-image::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(255, 244, 222, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.38));
  transition: transform 430ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.07) rotate(3deg);
}

.pasta-image img {
  width: 82%;
  height: 82%;
}

.photo-image {
  display: block;
}

.photo-image::before {
  z-index: 2;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(10, 10, 9, 0.78));
  border: 0;
  border-radius: 0;
}

.photo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 2%;
  filter: none;
}

.product-card:hover .photo-image img {
  transform: scale(1.06);
}

.indian-grid .photo-image img {
  object-position: center top;
  transform: scale(1.28);
  transform-origin: 62% top;
}

.indian-grid .product-card:hover .photo-image img {
  transform: scale(1.34);
}

.product-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 7px 11px;
  color: var(--bg);
  background: var(--gold);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-chip-red {
  color: #fff;
  background: var(--red);
}

.product-content {
  padding: 25px 25px 22px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-title-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.product-title-row strong {
  flex: none;
  color: var(--gold);
  font-size: 15px;
}

.product-content > p {
  min-height: 51px;
  margin: 14px 0 21px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.product-bottom > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.round-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border-radius: 50%;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.round-link:hover {
  color: var(--bg);
  background: var(--gold);
  transform: rotate(-8deg);
}

.round-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lunch-offer {
  position: relative;
  color: var(--bg);
  background:
    radial-gradient(circle at 85% 50%, rgba(210, 64, 22, 0.13), transparent 25rem),
    var(--gold);
  overflow: hidden;
}

.lunch-offer::before,
.lunch-offer::after {
  position: absolute;
  left: -2%;
  width: 104%;
  height: 45px;
  content: "";
  background: var(--bg);
  border-radius: 0 0 50% 50%;
}

.lunch-offer::before {
  top: -31px;
}

.lunch-offer::after {
  bottom: -31px;
  border-radius: 50% 50% 0 0;
}

.lunch-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
  padding-block: 90px;
}

.lunch-art {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.lunch-art::before {
  position: absolute;
  width: 340px;
  height: 340px;
  content: "";
  background: var(--bg);
  border-radius: 50%;
  box-shadow: 0 32px 65px rgba(0, 0, 0, 0.22);
}

.lunch-art img {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  object-fit: cover;
  object-position: center 12%;
  clip-path: circle(43% at 50% 50%);
  transform: rotate(-8deg);
}

.lunch-sticker {
  position: absolute;
  right: 7%;
  bottom: 35px;
  z-index: 3;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 6px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  transform: rotate(9deg);
}

.lunch-copy .section-kicker {
  color: rgba(17, 16, 15, 0.66);
}

.lunch-copy .section-kicker span {
  color: var(--red);
}

.lunch-copy h2 {
  max-width: 650px;
}

.lunch-copy h2 em {
  color: var(--red);
}

.lunch-copy > p {
  max-width: 640px;
  margin: 26px 0;
  color: rgba(17, 16, 15, 0.72);
  font-size: 15px;
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.offer-meta span {
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid rgba(17, 16, 15, 0.16);
  border-radius: 13px;
  font-size: 10px;
}

.offer-meta strong {
  font-size: 11px;
  text-transform: uppercase;
}

.more-menu {
  padding: 140px 0;
  background: var(--bg-deep);
}

.compact-heading {
  margin-bottom: 46px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.category-card-large {
  grid-column: span 5;
  grid-row: span 2;
}

.category-card-wide {
  grid-column: span 3;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 9%;
  filter: saturate(0.84) brightness(0.74);
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 400ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(to top, rgba(10, 10, 9, 0.95), rgba(10, 10, 9, 0.05) 72%),
    linear-gradient(120deg, rgba(210, 64, 22, 0.14), transparent 55%);
}

.category-card:hover img {
  filter: saturate(1.05) brightness(0.86);
  transform: scale(1.07);
}

.category-card > div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.category-card p {
  margin: 0 0 3px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.category-count {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: rgba(10, 10, 9, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-arrow {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.category-card:hover .category-arrow {
  color: var(--bg);
  background: var(--gold);
  transform: rotate(8deg);
}

.story {
  padding: 140px 0;
  background: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.story-image {
  position: relative;
  min-height: 580px;
}

.story-image::before {
  position: absolute;
  top: -20px;
  right: 30px;
  bottom: 30px;
  left: -20px;
  content: "";
  border: 1px solid rgba(250, 181, 27, 0.28);
  border-radius: 42% 18% 34% 20%;
  transform: rotate(-3deg);
}

.story-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 42% 18% 34% 20%;
  box-shadow: var(--shadow);
}

.story-label {
  position: absolute;
  right: -25px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  padding: 20px 26px;
  color: var(--bg);
  background: var(--gold);
  border-radius: 17px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.27);
  transform: rotate(-3deg);
}

.story-label span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-label strong {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.story-copy > p:not(.section-kicker) {
  margin: 27px 0 35px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.story-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.story-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}

.story-points li > span {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 22px;
}

.story-points strong {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-points p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.how-it-works {
  padding: 140px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(210, 64, 22, 0.08), transparent 28rem),
    var(--bg);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto 65px;
  text-align: center;
}

.center-heading .section-kicker {
  justify-content: center;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps-grid::before {
  position: absolute;
  top: 57px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(
    to right,
    var(--border-strong) 0 7px,
    transparent 7px 14px
  );
}

.steps-grid article {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 32px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.steps-grid article > svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 25px;
  padding: 10px;
  color: var(--gold);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 20px;
}

.steps-grid h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.steps-grid p {
  max-width: 260px;
  margin: auto;
  color: var(--muted);
  font-size: 12px;
}

.steps-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.contact-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(210, 64, 22, 0.96), rgba(171, 43, 11, 0.96)),
    url("assets/images/hero-milano.jpg") center / cover;
}

.contact-section::before {
  position: absolute;
  top: -210px;
  right: -150px;
  width: 560px;
  height: 560px;
  content: "";
  border: 80px solid rgba(250, 181, 27, 0.12);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.contact-intro .section-kicker {
  color: rgba(255, 244, 222, 0.7);
}

.contact-intro .section-kicker span {
  color: var(--gold);
}

.contact-intro h2 {
  font-size: clamp(62px, 7vw, 94px);
}

.contact-intro h2 em {
  color: var(--gold);
}

.contact-intro > p {
  max-width: 520px;
  margin: 25px 0 30px;
  color: rgba(255, 244, 222, 0.79);
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-buttons .button {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.contact-buttons .button:hover {
  background: var(--cream);
}

.contact-card {
  padding: 12px 35px;
  color: var(--cream);
  background: rgba(17, 16, 15, 0.91);
  border: 1px solid rgba(255, 244, 222, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.contact-card-block {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card-block:last-child {
  border-bottom: 0;
}

.contact-card-block > span,
.contact-card-row span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card-block > a {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact-card-block > a:hover,
.contact-card-row a:hover {
  color: var(--gold);
}

.contact-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--cream-soft);
  font-size: 11px;
}

.contact-card dt {
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.contact-card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-card-row a {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.site-footer {
  padding: 55px 0 28px;
  background: var(--bg-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-social a:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 25px;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.mobile-order {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid [data-reveal]:nth-child(2),
.category-grid [data-reveal]:nth-child(2),
.steps-grid [data-reveal]:nth-child(2) {
  transition-delay: 100ms;
}

.product-grid [data-reveal]:nth-child(3),
.category-grid [data-reveal]:nth-child(3),
.steps-grid [data-reveal]:nth-child(3) {
  transition-delay: 200ms;
}

.category-grid [data-reveal]:nth-child(4) {
  transition-delay: 300ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    z-index: 110;
    min-height: calc(100dvh - 84px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
    padding: 40px 24px 120px;
    visibility: hidden;
    background: rgba(10, 10, 9, 0.98);
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.03em;
  }

  .primary-navigation a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    padding-top: 35px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(72px, 10vw, 112px);
  }

  .hero-disc {
    width: min(42vw, 455px);
  }

  .hero-pizza {
    width: min(40vw, 435px);
  }

  .hero-price {
    right: -15px;
  }

  .quick-facts > div {
    padding-inline: 18px;
  }

  .product-image {
    height: 235px;
  }

  .product-title-row {
    display: block;
  }

  .product-title-row strong {
    display: block;
    margin-top: 8px;
  }

  .category-card {
    grid-column: span 6;
  }

  .category-card-large {
    grid-column: span 6;
    grid-row: span 2;
  }

  .category-card-wide {
    grid-column: span 6;
  }

  .story-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement {
    justify-content: space-between;
  }

  .announcement p {
    white-space: nowrap;
  }

  .announcement a {
    padding-left: 0;
    border-left: 0;
    font-size: 0;
  }

  .announcement a svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 0;
    padding-top: 45px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 20px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(82px, 17vw, 126px);
  }

  .hero-art {
    width: 100%;
    min-height: min(80vw, 600px);
  }

  .hero-disc {
    width: min(68vw, 500px);
  }

  .hero-pizza {
    width: min(64vw, 470px);
  }

  .orbit-one {
    width: min(76vw, 560px);
  }

  .orbit-two {
    width: min(82vw, 620px);
  }

  .hero-badge {
    top: 8%;
    left: 9%;
  }

  .hero-price {
    right: 5%;
    bottom: 12%;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }

  .quick-facts > div {
    border-bottom: 1px solid var(--border);
  }

  .quick-facts > div:nth-child(2) {
    border-right: 0;
  }

  .quick-facts > div:nth-child(3),
  .quick-facts > div:nth-child(4) {
    border-bottom: 0;
  }

  .favorites-section,
  .more-menu,
  .story,
  .how-it-works,
  .contact-section {
    padding-block: 105px;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    margin-top: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card,
  .product-card.featured,
  .product-card.featured:hover {
    transform: none;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .product-image {
    height: 100%;
    min-height: 270px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .product-content {
    align-self: center;
  }

  .lunch-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 110px;
  }

  .lunch-art {
    min-height: 330px;
  }

  .lunch-art::before {
    width: 290px;
    height: 290px;
  }

  .lunch-art img {
    width: 330px;
    height: 330px;
  }

  .lunch-copy {
    max-width: 620px;
  }

  .category-grid {
    grid-auto-rows: 235px;
  }

  .category-card-large {
    grid-row: span 1;
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 650px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .contact-intro {
    max-width: 650px;
  }
}

@media (max-width: 580px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 78px;
  }

  .announcement {
    min-height: 31px;
    padding-inline: 16px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 47px;
  }

  .brand-mark img {
    width: 52px;
  }

  .brand-type strong {
    font-size: 21px;
  }

  .brand-type small {
    font-size: 8px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .primary-navigation {
    top: 72px;
    min-height: calc(100dvh - 72px);
  }

  .hero {
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(71px, 24vw, 105px);
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .hero-trust {
    margin-top: 28px;
  }

  .hero-art {
    min-height: 410px;
  }

  .hero-disc {
    width: min(86vw, 390px);
  }

  .hero-pizza {
    width: min(81vw, 370px);
  }

  .orbit-one {
    width: min(95vw, 430px);
  }

  .orbit-two {
    width: min(104vw, 470px);
  }

  .hero-badge {
    top: 4%;
    left: 0;
    width: 91px;
    height: 91px;
  }

  .hero-badge text {
    font-size: 9px;
  }

  .hero-badge > span {
    font-size: 35px;
  }

  .hero-price {
    right: 0;
    bottom: 8%;
    min-width: 145px;
    padding: 13px 16px;
  }

  .hero-price strong {
    font-size: 24px;
  }

  .ingredient-leaf {
    right: 0;
  }

  .ingredient-chili {
    left: 0;
    bottom: 2%;
    width: 72px;
  }

  .quick-facts {
    width: 100%;
    margin-top: 24px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .quick-facts > div {
    min-height: 90px;
    padding: 16px;
  }

  .fact-number,
  .fact-icon {
    min-width: 37px;
    font-size: 34px;
  }

  .quick-facts p {
    font-size: 8px;
  }

  .marquee-track {
    padding-block: 12px;
    font-size: 18px;
  }

  .favorites-section,
  .more-menu,
  .story,
  .how-it-works,
  .contact-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .lunch-copy h2,
  .story-copy h2,
  .center-heading h2,
  .contact-intro h2 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .product-card {
    display: block;
  }

  .product-image {
    height: 255px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .product-content {
    padding: 22px;
  }

  .product-title-row {
    display: flex;
  }

  .product-title-row h3 {
    font-size: 27px;
  }

  .product-title-row strong {
    display: block;
    margin-top: 0;
  }

  .lunch-grid {
    width: min(calc(100% - 32px), var(--container));
    padding-block: 90px;
  }

  .lunch-art {
    min-height: 270px;
  }

  .lunch-art::before {
    width: 235px;
    height: 235px;
  }

  .lunch-art img {
    width: 275px;
    height: 275px;
  }

  .lunch-sticker {
    right: 1%;
    bottom: 15px;
    width: 78px;
    height: 78px;
    font-size: 22px;
  }

  .offer-meta {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .category-card,
  .category-card-large,
  .category-card-wide {
    grid-column: 1;
  }

  .category-card-large {
    grid-row: span 1;
  }

  .story-image,
  .story-image img {
    min-height: 410px;
    height: 410px;
  }

  .story-label {
    right: -5px;
    bottom: 18px;
  }

  .story-grid {
    gap: 55px;
  }

  .steps-grid article {
    min-height: 240px;
  }

  .contact-buttons {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    padding-inline: 23px;
    border-radius: 25px;
  }

  .contact-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-card dd {
    text-align: left;
  }

  .contact-card-row {
    grid-template-columns: 1fr;
  }

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

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .mobile-order {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px 10px 20px;
    color: #fff;
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  }

  .mobile-order span {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-order small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
  }

  .mobile-order svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
