:root {
  --cocoa: #24120f;
  --cocoa-soft: #51302a;
  --cream: #fff8ee;
  --cream-deep: #f6e7d7;
  --blush: #f3a7b5;
  --rose: #c75165;
  --berry: #8e1f39;
  --gold: #c89530;
  --mint: #8fae82;
  --ink: #201512;
  --muted: #6f5650;
  --line: rgba(107, 66, 50, 0.18);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(76, 38, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(243, 167, 181, 0.24), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(200, 149, 48, 0.18), transparent 24rem),
    linear-gradient(135deg, #fffaf4 0%, #fff3f5 46%, #f7ecdc 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 18, 15, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 68%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(107, 66, 50, 0.16);
  box-shadow: 0 14px 34px rgba(76, 38, 28, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.menu-section,
.product-row,
.footer {
  scroll-margin-top: 96px;
}

#sabores-title {
  scroll-margin-top: 96px;
}

.scroll-header--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.scroll-header__brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-header__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(93, 46, 36, 0.14));
}

.scroll-header__copy {
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(107, 66, 50, 0.18);
}

.scroll-header__name,
.scroll-header__tagline,
.scroll-header__aside {
  margin: 0;
}

.scroll-header__name {
  color: var(--cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.scroll-header__tagline,
.scroll-header__aside {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-header__tagline {
  margin-top: 8px;
}

.scroll-header__aside {
  padding: 10px 14px;
  border: 1px solid rgba(199, 81, 101, 0.18);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 244, 246, 0.72);
  white-space: nowrap;
}

.scroll-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.scroll-header__cta,
.mobile-order-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fffdfa;
  background: linear-gradient(135deg, var(--berry), var(--rose) 55%, #b77b23);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(142, 31, 57, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  cursor: pointer;
}

.scroll-header__cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.scroll-header__cta:hover,
.scroll-header__cta:focus-visible,
.mobile-order-cta:hover,
.mobile-order-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(142, 31, 57, 0.28);
  filter: saturate(1.08);
}

.scroll-header__cta:focus-visible,
.mobile-order-cta:focus-visible {
  outline: 3px solid rgba(200, 149, 48, 0.5);
  outline-offset: 4px;
}

.mobile-order-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  min-height: 54px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.mobile-order-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 clamp(22px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98), rgba(255, 247, 242, 0.9)),
    #fff8ee;
}

.hero::before {
  display: none;
}

.hero-desktop {
  position: relative;
  width: min(1180px, calc(100% - 64px));
  height: clamp(620px, 82svh, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 44px;
  padding: 48px 0;
}

.hero-desktop__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-desktop .brand-bar {
  gap: 13px;
  margin-bottom: 42px;
}

.hero-desktop .brand-bar__logo {
  width: 76px;
  height: 76px;
}

.hero-desktop .brand-bar__name {
  font-size: 1.46rem;
}

.hero-desktop .brand-bar__tagline {
  font-size: 0.76rem;
  letter-spacing: 0;
}

.hero-desktop__kicker {
  margin: 0 0 16px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-desktop h1 {
  max-width: 590px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
}

.hero-desktop .hero__text {
  max-width: 590px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero-desktop .hero__actions {
  margin-top: 30px;
}

.hero-desktop__visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  background-image: url("hero-desktop.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 28px 34px rgba(118, 61, 43, 0.14));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-art {
  position: relative;
  width: 100%;
  margin: 0;
  display: none;
  overflow: hidden;
  background: transparent;
}

.hero-art__cta {
  position: absolute;
  left: 10.3%;
  top: 55.05%;
  width: 31.7%;
  height: 3.75%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.8vw, 12px);
  color: #fffefa;
  background: linear-gradient(180deg, #f58a96 0%, #e96f82 58%, #df657b 100%);
  border: 1px solid rgba(177, 126, 32, 0.86);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 0 0 1px rgba(255, 219, 146, 0.5),
    0 12px 22px rgba(150, 52, 71, 0.2);
  cursor: pointer;
  font-size: clamp(0.56rem, 1.42vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  white-space: nowrap;
}

.hero-art__cta:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 0 0 1px rgba(255, 219, 146, 0.62),
    0 16px 28px rgba(150, 52, 71, 0.26);
  filter: saturate(1.06);
}

.hero-art__cta span {
  font-size: 1.08em;
  line-height: 1;
}

.hero-art__cta:focus-visible {
  outline: 3px solid rgba(200, 149, 48, 0.65);
  outline-offset: 5px;
}

.brand-bar {
  position: static;
  z-index: 30;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 74px);
}

.brand-bar__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(93, 46, 36, 0.18));
}

.brand-bar__name,
.brand-bar__tagline,
.eyebrow,
.hero__text,
.hero__note,
.menu-card p,
.product-row p,
.footer p {
  margin: 0;
}

.brand-bar__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cocoa);
}

.brand-bar__tagline {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(199, 81, 101, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cocoa);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(3rem, 6.15vw, 5.45rem);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-title span {
  display: block;
}

.hero-title__gold {
  color: #b9852a;
  text-shadow: 0 14px 34px rgba(185, 133, 42, 0.14);
}

.hero-title__pink {
  color: #df7f89;
  text-shadow: 0 14px 34px rgba(199, 81, 101, 0.12);
}

.hero-divider {
  width: min(320px, 76%);
  height: 18px;
  margin-top: 18px;
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  position: absolute;
  top: 9px;
  width: calc(50% - 18px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 48, 0.7));
}

.hero-divider::before {
  left: 0;
}

.hero-divider::after {
  right: 0;
  transform: scaleX(-1);
}

.hero-divider {
  background: radial-gradient(circle at center, rgba(243, 167, 181, 0.85) 0 4px, transparent 5px);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero__text {
  max-width: 620px;
  margin-top: 22px;
  color: var(--cocoa-soft);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  color: #fffdfa;
  background: linear-gradient(135deg, var(--berry), var(--rose) 54%, #b77b23);
  border: 1px solid rgba(142, 31, 57, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(142, 31, 57, 0.24);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  cursor: pointer;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(142, 31, 57, 0.3);
  filter: saturate(1.08);
}

.primary-cta:focus-visible {
  outline: 3px solid rgba(200, 149, 48, 0.5);
  outline-offset: 4px;
}

.primary-cta span {
  font-size: 1.2rem;
}

.hero__note {
  max-width: 280px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.hero__showcase {
  position: relative;
  min-width: 0;
}

.showcase-card {
  position: relative;
  min-height: clamp(500px, 54vw, 660px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(200, 149, 48, 0.28);
  border-radius: 8px;
  background: #fff6eb;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.2), rgba(255, 248, 238, 0.04) 50%, rgba(36, 18, 15, 0.08)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.65), transparent 26rem);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(200, 149, 48, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.showcase-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
  transform: scale(1.06);
  transform-origin: 58% 45%;
}

.showcase-card__label {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(36, 18, 15, 0.84);
  color: #fffaf4;
  backdrop-filter: blur(14px);
}

.showcase-card__label span,
.showcase-card__label strong {
  display: block;
  min-width: 0;
}

.showcase-card__label span {
  color: #f4d8d3;
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-card__label strong {
  font-size: 0.98rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: clamp(42px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 14px 40px rgba(76, 38, 28, 0.08);
}

.trust-strip div {
  min-height: 92px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.78);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--cocoa);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.93rem;
}

.menu-section {
  padding: 0 0 clamp(28px, 5vw, 54px);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 16px;
}

.menu-card,
.product-row article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 16px 36px rgba(76, 38, 28, 0.08);
}

.menu-card {
  min-height: 258px;
  padding: clamp(22px, 3vw, 30px);
}

.menu-card--featured {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(255, 240, 244, 0.8)),
    linear-gradient(90deg, rgba(200, 149, 48, 0.16), transparent);
}

.menu-card__kicker {
  width: fit-content;
  margin-bottom: 14px;
  color: var(--berry);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-card p {
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.pill-list,
.flavour-list,
.compact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.pill-list span,
.flavour-list span,
.compact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(199, 81, 101, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--cocoa-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.flavour-list,
.compact-list {
  display: grid;
}

.flavour-list span,
.compact-list span {
  justify-content: flex-start;
  width: 100%;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: clamp(30px, 5vw, 56px);
}

.product-row article {
  min-height: 190px;
  padding: 24px;
}

.product-row__mark {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.product-row__mark--pink {
  background: var(--rose);
}

.product-row__mark--green {
  background: var(--mint);
}

.product-row h3 {
  margin-bottom: 12px;
}

.product-row p {
  color: var(--muted);
  line-height: 1.62;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-style: normal;
}

.footer__contact a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--berry);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .scroll-header {
    height: 76px;
  }

  .scroll-header__inner {
    width: min(calc(100% - 24px), 720px);
  }

  .scroll-header__aside {
    display: none;
  }

  .page-shell {
    width: min(calc(100% - 24px), 720px);
  }

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

  .brand-bar {
    max-width: calc(100% - 24px);
    margin-bottom: 40px;
  }

  .hero__showcase {
    order: 0;
  }

  .showcase-card {
    min-height: 460px;
  }

  .showcase-card__photo {
    object-position: 55% 38%;
    transform: scale(1.02);
    transform-origin: 55% 38%;
  }

  .showcase-card__label {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip,
  .menu-grid,
  .product-row {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 26px;
  }
}

@media (min-width: 541px) and (max-width: 1080px) {
  .hero-desktop {
    width: min(940px, calc(100% - 48px));
    grid-template-columns: minmax(0, 0.95fr) minmax(370px, 1.05fr);
    gap: 28px;
  }

  .hero-desktop .brand-bar {
    margin-bottom: 32px;
  }

  .hero-desktop .brand-bar__logo {
    width: 64px;
    height: 64px;
  }

  .hero-desktop h1 {
    font-size: 3.2rem;
  }

  .hero-desktop .hero__text {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-desktop .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .scroll-header {
    display: none;
  }

  .hero {
    background: transparent;
  }

  .hero-desktop {
    display: none;
  }

  .hero-art {
    display: block;
    aspect-ratio: 941 / 1672;
    background-image: url("hero-mobile.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .hero-art__cta {
    left: 24.65%;
    top: 67.7%;
    width: 50.8%;
    height: 5.05%;
    z-index: 2;
    display: block;
    color: transparent;
    background-image: url("hero-mobile.webp");
    background-position: 50.1% 71.3%;
    background-repeat: no-repeat;
    background-size: 196.85% 1980.2%;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-size: 0;
    opacity: 1;
    transform-origin: center;
    animation: hero-mobile-cta-pulse 1.9s ease-in-out infinite;
  }

  .hero-art__cta:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }

  .page-shell {
    width: calc(100% - 32px);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-bottom: 20px;
  }

  .brand-bar {
    gap: 11px;
    margin-bottom: 30px;
  }

  .brand-bar__logo {
    width: 52px;
    height: 52px;
  }

  .brand-bar__name {
    font-size: 1.26rem;
  }

  .brand-bar__tagline {
    font-size: 0.72rem;
  }

  .eyebrow {
    width: 100%;
    text-align: center;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(2.1rem, 9.4vw, 2.62rem);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero__actions {
    align-items: stretch;
    gap: 13px;
  }

  .primary-cta {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }

  .hero__note {
    max-width: none;
  }

  .showcase-card {
    min-height: 420px;
  }

  .showcase-card__label {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 0 auto 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip div,
  .menu-card,
  .product-row article {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .footer__content,
  .footer__contact {
    flex-direction: column;
    gap: 6px;
  }

  .footer__contact {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer__contact a {
    overflow-wrap: anywhere;
  }
}

@keyframes hero-mobile-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.035);
    filter: brightness(1.08) saturate(1.04);
  }
}

@media (min-width: 541px) {
  .mobile-order-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
