@font-face {
  font-family: "Barlow Condensed";
  src: url("/menu/assets/fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/menu/assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cw-red-700: #7a1118;
  --cw-red-800: #5f0d14;
  --cw-red-900: #43090f;
  --cw-gold-400: #f2b52b;
  --cw-gold-500: #d99a16;
  --cw-white: #ffffff;
  --cw-blush-50: #fff9f7;
  --cw-blush-100: #f8efec;
  --cw-ink-900: #23191b;
  --cw-ink-700: #52474a;
  --cw-ink-500: #74676a;
  --cw-line: #eadfdb;
  --cw-success: #24734c;
  --cw-danger: #a3262e;
  --cw-whatsapp: #1f9d55;
  --cw-whatsapp-shadow: rgba(31, 157, 85, 0.22);
  --cw-disabled: #d6d0ce;
  --cw-gold-soft: #ffe8a8;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-round: 999px;

  --shadow-low: 0 8px 22px rgba(67, 9, 15, 0.08);
  --shadow-mid: 0 18px 42px rgba(67, 9, 15, 0.14);
  --shadow-high: 0 28px 64px rgba(41, 8, 12, 0.2);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cw-blush-50);
  color: var(--cw-ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13.5ch;
  margin-bottom: var(--space-5);
  font-size: clamp(3.8rem, 8vw, 5.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  font-weight: 700;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
}

h4 {
  margin-bottom: var(--space-2);
  font-size: 1.06rem;
  line-height: 1.25;
}

p {
  max-width: 72ch;
  margin-bottom: var(--space-4);
  color: var(--cw-ink-700);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--cw-white);
  color: var(--cw-red-700);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:focus-visible {
  outline: 3px solid var(--cw-gold-400);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(95, 13, 20, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.topbar__inner,
.footer__inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--cw-red-800);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.brand__logo {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.brand__copy {
  white-space: nowrap;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.topbar__link {
  color: var(--cw-red-800);
  font-weight: 750;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 2px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button--primary {
  background: var(--cw-red-700);
  color: var(--cw-white);
  box-shadow: 0 8px 20px rgba(122, 17, 24, 0.18);
}

.button--primary:hover {
  background: var(--cw-red-800);
  box-shadow: 0 12px 24px rgba(122, 17, 24, 0.24);
}

.button--gold {
  background: var(--cw-gold-400);
  color: var(--cw-red-900);
  box-shadow: 0 10px 24px rgba(73, 37, 5, 0.18);
}

.button--gold:hover {
  background: #ffc43c;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--cw-white);
}

.button--outline-light:hover {
  border-color: var(--cw-white);
  background: rgba(255, 255, 255, 0.08);
}

.button.is-disabled {
  opacity: 0.52;
  pointer-events: none;
}

.button:focus-visible,
.topbar__link:focus-visible,
.brand:focus-visible,
.hero__cue:focus-visible,
.location-card:focus-visible,
.category-button:focus-visible,
.category-scroll-button:focus-visible,
.chat-product__add:focus-visible,
.selected-local__change:focus-visible {
  outline: 3px solid var(--cw-gold-400);
  outline-offset: 4px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  background: var(--cw-white);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 0;
  width: 64%;
  background-color: var(--cw-red-800);
  background-image: repeating-linear-gradient(
    132deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 2px,
    transparent 2px,
    transparent 13px
  );
  clip-path: polygon(0 0, 100% 0, 77% 100%, 0 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -8%;
  left: 56.6%;
  width: 5px;
  height: 122%;
  background: var(--cw-gold-400);
  content: "";
  transform: rotate(11.5deg);
  transform-origin: center;
}

.hero__inner {
  width: min(100% - 40px, var(--container));
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: var(--space-6);
  margin-inline: auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: var(--space-8) 12% var(--space-8) 0;
  color: var(--cw-white);
  animation: hero-arrive 640ms var(--ease-out) both;
}

.hero__copy::before {
  width: 76px;
  height: 6px;
  display: block;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-round);
  background: var(--cw-gold-400);
  content: "";
}

.hero__copy p {
  max-width: 55ch;
  margin-bottom: var(--space-6);
  color: #f8e9e8;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero__brand {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero__brand::before {
  position: absolute;
  z-index: -1;
  width: min(39vw, 470px);
  aspect-ratio: 1;
  border: 3px solid var(--cw-gold-400);
  border-radius: 50%;
  background: var(--cw-blush-50);
  box-shadow: var(--shadow-high);
  content: "";
}

.hero__brand img {
  width: min(48vw, 580px);
  filter: drop-shadow(0 18px 22px rgba(67, 9, 15, 0.16));
  transform: rotate(-2deg);
  animation: hero-arrive 720ms 90ms var(--ease-out) both;
}

.hero__orbit {
  position: absolute;
  border: 1px solid rgba(122, 17, 24, 0.18);
  border-radius: 50%;
}

.hero__orbit--one {
  width: min(45vw, 540px);
  aspect-ratio: 1;
}

.hero__orbit--two {
  width: min(31vw, 370px);
  aspect-ratio: 1;
}

.hero__cue {
  position: absolute;
  z-index: 3;
  bottom: var(--space-5);
  left: max(20px, calc((100vw - var(--container)) / 2));
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--cw-white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__cue .icon {
  color: var(--cw-gold-400);
}

@keyframes hero-arrive {
  from {
    opacity: 0.35;
    filter: blur(8px);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.section {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding-block: var(--space-9);
}

.section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.section__heading p,
.subsection-heading p {
  margin-bottom: 0;
}

.section__mark,
.subsection-heading__icon {
  width: 60px;
  height: 60px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cw-red-700);
  color: var(--cw-white);
  box-shadow: var(--shadow-low);
}

.section__mark .icon,
.subsection-heading__icon .icon {
  width: 27px;
  height: 27px;
}

.location-section {
  position: relative;
  z-index: 4;
  margin-top: -26px;
  padding-top: var(--space-8);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.location-card {
  min-height: 205px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--cw-white);
  color: var(--cw-ink-900);
  box-shadow: var(--shadow-low);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease,
    box-shadow var(--duration-base) var(--ease-out);
}

.location-card::after {
  position: absolute;
  right: -34px;
  bottom: -52px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(122, 17, 24, 0.12);
  border-radius: 50%;
  content: "";
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}

.location-card:active {
  transform: scale(0.985);
}

.location-card.is-selected {
  background: var(--cw-red-700);
  color: var(--cw-white);
  box-shadow: var(--shadow-mid);
}

.location-card.is-selected::after {
  border-color: rgba(255, 255, 255, 0.22);
}

.location-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cw-blush-100);
  color: var(--cw-red-700);
}

.location-card.is-selected .location-card__icon {
  background: var(--cw-gold-400);
  color: var(--cw-red-900);
}

.location-card__icon .icon {
  width: 23px;
  height: 23px;
}

.location-card__content {
  min-width: 0;
}

.location-card__title {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.location-card__meta {
  display: block;
  color: var(--cw-ink-700);
  font-size: 0.9rem;
  line-height: 1.45;
}

.location-card.is-selected .location-card__meta {
  color: #f6dfde;
}

.location-card__action {
  grid-column: 1 / -1;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  color: var(--cw-red-700);
  font-weight: 850;
}

.location-card.is-selected .location-card__action {
  color: var(--cw-gold-400);
}

.location-card__action .icon {
  width: 1rem;
  transition: transform var(--duration-fast) var(--ease-out);
}

.location-card:hover .location-card__action .icon {
  transform: translateX(4px);
}

.location-skeleton {
  min-height: 205px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 45%, transparent 78%),
    var(--cw-blush-100);
  background-size: 240% 100%;
  animation: skeleton-shift 1.4s ease-in-out infinite;
}

@keyframes skeleton-shift {
  to {
    background-position: -180% 0;
  }
}

.menu-section {
  padding-top: var(--space-8);
}

.selected-local {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background-color: var(--cw-red-800);
  background-image: repeating-linear-gradient(
    132deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 13px
  );
  color: var(--cw-white);
  box-shadow: var(--shadow-mid);
  overflow: hidden;
}

.selected-local::after {
  position: absolute;
  right: 15%;
  bottom: -86px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(242, 181, 43, 0.24);
  border-radius: 50%;
  content: "";
}

.selected-local h2 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-2);
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
}

.selected-local p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #f6dfde;
}

.selected-local__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cw-gold-400);
  color: var(--cw-red-900);
}

.selected-local__icon .icon {
  width: 28px;
  height: 28px;
}

.selected-local__change {
  position: relative;
  z-index: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  color: var(--cw-white);
  font-weight: 800;
  text-decoration: none;
}

.promotions-wrap {
  margin-bottom: var(--space-8);
}

.subsection-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.subsection-heading__line {
  height: 2px;
  flex: 1;
  background: var(--cw-line);
}

.subsection-heading--menu {
  justify-content: space-between;
  margin-top: var(--space-8);
  margin-bottom: var(--space-5);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.promo-card {
  position: relative;
  min-height: 190px;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--cw-red-700);
  color: var(--cw-white);
  box-shadow: var(--shadow-mid);
  overflow: hidden;
}

.promo-card::before {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(242, 181, 43, 0.35);
  border-radius: 50%;
  content: "";
}

.promo-card h4 {
  max-width: 22ch;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.promo-card p {
  position: relative;
  max-width: 48ch;
  color: #f8e9e8;
}

.promo-card__price {
  position: relative;
  color: var(--cw-gold-400);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
}

.menu-content {
  width: min(100%, 980px);
  margin-inline: auto;
}

.menu-chat {
  border-radius: var(--radius-lg);
  background: var(--cw-white);
  box-shadow: var(--shadow-high);
  overflow: hidden;
}

.menu-chat__topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 82px;
  padding: var(--space-3) var(--space-5);
  background-color: var(--cw-red-800);
  background-image: repeating-linear-gradient(
    132deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 2px,
    transparent 2px,
    transparent 16px
  );
  color: var(--cw-white);
}

.menu-chat__avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cw-white);
  box-shadow: 0 6px 16px rgba(32, 3, 7, 0.22);
  overflow: hidden;
}

.menu-chat__avatar img {
  width: 49px;
  height: 38px;
  object-fit: contain;
}

.menu-chat__identity {
  min-width: 0;
}

.menu-chat__identity h4 {
  margin-bottom: 1px;
  color: var(--cw-white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.menu-chat__identity p {
  margin-bottom: 0;
  color: #f6dedc;
  font-size: 0.84rem;
  line-height: 1.35;
}

.menu-chat__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cw-gold-400);
}

.menu-chat__icon .icon {
  width: 23px;
  height: 23px;
}

.menu-chat__body {
  position: relative;
  min-height: 380px;
  padding: var(--space-6);
  background-color: #f4ece8;
  background-image: repeating-linear-gradient(
    132deg,
    rgba(122, 17, 24, 0.025) 0,
    rgba(122, 17, 24, 0.025) 2px,
    transparent 2px,
    transparent 28px
  );
}

.chat-message {
  position: relative;
  width: fit-content;
  max-width: min(78%, 680px);
  padding: var(--space-4);
  border-radius: 5px var(--radius-md) var(--radius-md) var(--radius-md);
  background: var(--cw-white);
  box-shadow: var(--shadow-low);
}

.chat-message::before {
  position: absolute;
  top: 0;
  left: -9px;
  width: 14px;
  height: 14px;
  background: var(--cw-white);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  content: "";
}

.chat-message--welcome {
  margin-bottom: var(--space-4);
}

.chat-message--outgoing {
  margin: 0 0 var(--space-6) auto;
  border-radius: var(--radius-md) 5px var(--radius-md) var(--radius-md);
  background: var(--cw-red-800);
  color: var(--cw-white);
  box-shadow: 0 10px 24px rgba(67, 9, 15, 0.16);
}

.chat-message--outgoing::before {
  right: -9px;
  left: auto;
  background: var(--cw-red-800);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.chat-message.chat-message--outgoing p {
  color: var(--cw-white);
  font-weight: 700;
}

.chat-skeleton {
  width: min(72%, 600px);
  height: 106px;
  margin-bottom: var(--space-3);
  border-radius: 5px var(--radius-md) var(--radius-md) var(--radius-md);
  background: linear-gradient(100deg, #e8ddda 20%, #f8f3f0 42%, #e8ddda 64%);
  background-size: 220% 100%;
  animation: skeleton-sheen 1.2s ease-in-out infinite;
}

.chat-skeleton--short {
  width: min(55%, 460px);
  height: 82px;
}

.chat-message__author {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--cw-red-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.chat-message p {
  margin-bottom: 0;
  color: var(--cw-ink-700);
}

.menu-chat__replies {
  margin: 0 0 var(--space-7) clamp(20px, 7vw, 72px);
}

@keyframes skeleton-sheen {
  to {
    background-position-x: -220%;
  }
}

.category-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
}

.category-scroll-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cw-red-800);
  color: var(--cw-gold-400);
  box-shadow: 0 7px 18px rgba(67, 9, 15, 0.14);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) ease;
}

.category-scroll-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.category-scroll-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.category-scroll-button.is-hidden {
  display: none;
}

.category-scroll-button .icon {
  width: 19px;
  height: 19px;
}

.category-nav {
  min-width: 0;
  display: flex;
  gap: var(--space-3);
  padding: 3px 2px var(--space-3);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-button {
  min-width: clamp(132px, 18vw, 168px);
  min-height: 112px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--cw-red-800);
  color: var(--cw-white);
  box-shadow: 0 10px 24px rgba(67, 9, 15, 0.18);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) ease;
}

.category-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(67, 9, 15, 0.22);
}

.category-button > span:last-child {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-button.is-active {
  background: var(--cw-red-800);
  color: var(--cw-gold-400);
  box-shadow:
    inset 0 0 0 3px var(--cw-gold-400),
    0 14px 28px rgba(67, 9, 15, 0.22);
}

.menu-catalog {
  display: grid;
  gap: var(--space-6);
}

.menu-group {
  scroll-margin-top: 104px;
}

.menu-group[hidden] {
  display: none;
}

.menu-group__heading {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 auto var(--space-4);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-round);
  background: rgba(67, 9, 15, 0.08);
  color: var(--cw-red-800);
}

.menu-group__heading h4 {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.2;
}

.menu-group__heading .category-emoji {
  font-size: 1rem;
}

.menu-group__heading span {
  color: var(--cw-ink-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.menu-group__heading span::before {
  margin-right: var(--space-2);
  color: var(--cw-gold-500);
  content: "•";
}

.menu-group__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.chat-message--product {
  min-width: min(68%, 500px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
}

.chat-product__icon {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-product__icon .category-emoji {
  font-size: 1.9rem;
}

.chat-product__icon .category-emoji--combo {
  font-size: 1.3rem;
}

.chat-product__media {
  position: relative;
  width: 96px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cw-blush-100);
}

.chat-product__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-out);
}

.chat-product__media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.chat-product__media-fallback .category-emoji {
  font-size: 1.9rem;
}

.chat-message--product:hover .chat-product__media img {
  transform: scale(1.035);
}

.chat-product__media figcaption {
  position: absolute;
  z-index: 2;
  right: 6px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(67, 9, 15, 0.86);
  color: var(--cw-white);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.chat-product__media.is-image-unavailable img,
.chat-product__media.is-image-unavailable figcaption {
  display: none;
}

.chat-product__content {
  min-width: 0;
}

.chat-product__add {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 17, 24, 0.24);
  border-radius: var(--radius-sm);
  background: var(--cw-white);
  color: var(--cw-red-700);
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.chat-product__add:hover {
  background: var(--cw-red-700);
  color: var(--cw-white);
  transform: translateY(-2px);
}

.chat-product__add:active {
  transform: scale(0.96);
}

.chat-product__add.is-disabled {
  opacity: 0.38;
}

.chat-product__add .icon {
  width: 22px;
  height: 22px;
}

.chat-message--product h4 {
  margin-bottom: var(--space-1);
  color: var(--cw-red-800);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.05;
}

.chat-message--product p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-message__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-3);
}

.chat-product__content .chat-message__footer {
  gap: var(--space-2);
}

.chat-message__status {
  display: inline-flex;
  align-items: center;
  color: var(--cw-success);
}

.chat-message__check {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.price {
  color: var(--cw-red-700);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.sauces-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  background-color: var(--cw-red-900);
  background-image: repeating-linear-gradient(
    132deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 2px,
    transparent 2px,
    transparent 13px
  );
}

.section__heading--light {
  color: var(--cw-white);
}

.section__heading--light p {
  color: #e9d1d2;
}

.section__mark--gold {
  background: var(--cw-gold-400);
  color: var(--cw-red-900);
  box-shadow: none;
}

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.sauce-card {
  min-height: 150px;
  position: relative;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--cw-white);
  box-shadow: 0 16px 34px rgba(18, 2, 4, 0.18);
  overflow: hidden;
}

.sauce-card::after {
  position: absolute;
  right: -26px;
  bottom: -40px;
  width: 90px;
  height: 90px;
  border: 12px solid var(--cw-blush-100);
  border-radius: 50%;
  content: "";
}

.sauce-card h3 {
  margin-bottom: var(--space-2);
  color: var(--cw-red-800);
  font-size: 1.65rem;
}

.sauce-card p {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3);
  font-size: 0.9rem;
}

.contact {
  width: min(100% - 40px, var(--container));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-7);
  margin-block: var(--space-8);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  background: var(--cw-red-800);
  color: var(--cw-white);
  box-shadow: var(--shadow-high);
}

.contact h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.contact p {
  margin-bottom: 0;
  color: #f6dfde;
}

.contact__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

.footer {
  background: #2d080c;
  color: var(--cw-white);
}

.footer__inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-5);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer__brand img {
  width: 86px;
  height: 58px;
  object-fit: contain;
}

.footer p {
  margin-bottom: 0;
  color: #e7cbcd;
  font-size: 0.86rem;
}

.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--cw-white);
  color: var(--cw-ink-700);
  text-align: center;
}

.error-state p {
  margin: 0;
}

.retry-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-4);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--cw-red-700);
  color: var(--cw-white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-low);
}

.retry-button .icon {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.retry-button:hover {
  transform: translateY(-2px);
}

.error-state {
  background: #fff0f1;
  color: var(--cw-danger);
}

.content-enter {
  animation: content-enter 420ms var(--ease-out) both;
}

@keyframes content-enter {
  from {
    opacity: 0.45;
    clip-path: inset(0 0 18% 0 round 16px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 16px);
    transform: translateY(0);
  }
}

.hidden,
[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .hero::before {
    width: 68%;
  }

  .hero::after {
    left: 60.4%;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  }

  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sauce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .topbar__inner {
    min-height: 72px;
  }

  .brand__logo {
    width: 74px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
  }

  .brand__copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .topbar__link {
    display: none;
  }

  .topbar .button {
    min-height: 44px;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    width: 100%;
    height: 82%;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 94%);
  }

  .hero::after {
    top: 67%;
    left: 51%;
    width: 4px;
    height: 50%;
    transform: rotate(47deg);
  }

  .hero__inner {
    width: min(100% - 32px, var(--container));
    min-height: 700px;
    display: block;
  }

  .hero__copy {
    width: 100%;
    max-width: 540px;
    padding: var(--space-7) 8% 0 0;
  }

  .hero__copy::before {
    width: 58px;
    height: 5px;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(3.55rem, 16vw, 5rem);
  }

  .hero__copy p {
    width: 76%;
    max-width: 28ch;
    font-size: 1rem;
  }

  .hero__brand {
    position: absolute;
    right: 16px;
    bottom: 18px;
    width: min(64vw, 280px);
    min-height: 230px;
  }

  .hero__brand::before {
    width: min(54vw, 238px);
  }

  .hero__brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero__orbit--one {
    width: min(60vw, 264px);
  }

  .hero__orbit--two {
    width: min(42vw, 184px);
  }

  .hero__cue {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding-block: var(--space-8);
  }

  .location-section {
    margin-top: 0;
    padding-top: var(--space-7);
  }

  .section__heading {
    align-items: flex-start;
  }

  .section__mark,
  .subsection-heading__icon {
    width: 50px;
    height: 50px;
  }

  .location-grid,
  .promo-grid,
  .sauce-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 176px;
  }

  .selected-local {
    grid-template-columns: auto 1fr;
    margin-bottom: var(--space-7);
    padding: var(--space-5);
  }

  .selected-local__change {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .sauces-section {
    width: 100%;
    padding-inline: 16px;
  }

  .contact {
    width: min(100% - 32px, var(--container));
    margin-block: var(--space-6);
    padding: var(--space-6);
  }

  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact__actions .button {
    width: 100%;
  }

  .footer__inner {
    width: min(100% - 32px, var(--container));
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .topbar__inner {
    width: min(100% - 24px, var(--container));
  }

  .topbar .button .icon {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero__copy {
    padding-top: var(--space-6);
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.25rem);
  }

  .hero__brand {
    right: 12px;
    bottom: 16px;
    width: min(62vw, 248px);
    min-height: 210px;
  }

  .hero__brand::before {
    width: min(53vw, 212px);
  }

  .hero__orbit--one {
    width: min(59vw, 236px);
  }

  .hero__orbit--two {
    width: min(41vw, 164px);
  }

  .section__mark {
    display: none;
  }

  .section__heading {
    margin-bottom: var(--space-6);
  }

  .menu-chat__topbar {
    padding-inline: var(--space-3);
  }

  .menu-chat__body {
    padding: var(--space-4);
  }

  .menu-chat__icon {
    display: none;
  }

  .menu-chat__replies {
    margin-left: var(--space-3);
  }

  .chat-message {
    max-width: 92%;
  }

  .chat-message--product {
    min-width: 92%;
    grid-template-columns: auto minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .chat-product__icon {
    min-width: 44px;
    min-height: 44px;
  }

  .chat-product__icon .category-emoji {
    font-size: 1.65rem;
  }

  .chat-product__icon .category-emoji--combo {
    font-size: 1.12rem;
  }

  .chat-product__media {
    width: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__copy,
  .hero__brand img,
  .content-enter,
  .location-skeleton,
  .chat-skeleton {
    animation: none !important;
  }

  .order-cart-button.is-bumping {
    transform: none;
  }
}

/* Caja de pedido */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
body.cart-open { overflow: hidden; }
.order-cart-button { position: fixed; right: 24px; bottom: 24px; z-index: 48; display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 8px 18px 8px 9px; border: 1px solid rgba(242,181,43,.5); border-radius: var(--radius-round); background: var(--cw-red-700); color: var(--cw-white); box-shadow: 0 16px 36px rgba(67,9,15,.3); cursor: pointer; transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) ease; }
.order-cart-button:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(67,9,15,.36); }
.order-cart-button.is-bumping { transform: scale(1.06); }
.order-cart-button__icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cw-gold-400); font-size: 1.25rem; }
.order-cart-button strong, .order-cart-button small { display: block; text-align: left; line-height: 1.2; }
.order-cart-button strong { font-size: .84rem; }
.order-cart-button small { margin-top: 3px; color: var(--cw-gold-soft); font-weight: 700; }
.order-cart-backdrop { position: fixed; inset: 0; z-index: 54; background: rgba(30,7,10,.46); opacity: 0; transition: opacity 180ms ease; }
.cart-open .order-cart-backdrop { opacity: 1; }
.order-cart { position: fixed; top: 0; right: 0; bottom: 0; z-index: 55; display: flex; width: min(430px,100%); flex-direction: column; background: var(--cw-white); box-shadow: -24px 0 60px rgba(36,7,10,.24); transform: translateX(105%); visibility: hidden; transition: transform 220ms var(--ease-out), visibility 220ms; }
.cart-open .order-cart { transform: translateX(0); visibility: visible; }
.order-cart__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid var(--cw-line); background: var(--cw-red-800); color: var(--cw-white); }
.order-cart__eyebrow { color: var(--cw-gold-400); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.order-cart__header h2 { margin: 2px 0 0; font-size: 2rem; }
.order-cart__close { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--cw-white); font-size: 2rem; line-height: 1; cursor: pointer; }
.order-cart__location { margin: 0; padding: 13px 24px; background: var(--cw-blush-100); color: var(--cw-red-700); font-size: .88rem; font-weight: 700; }
.order-cart__items { overflow-y: auto; padding: 10px 24px; }
.order-cart__empty { margin: auto; padding: 34px 28px; color: var(--cw-ink-500); text-align: center; }
.order-cart__empty > span { display: block; margin-bottom: 10px; font-size: 3rem; }
.order-cart__empty strong { color: var(--cw-ink-900); font-size: 1.12rem; }
.order-cart__empty p { max-width: 26ch; margin: 5px auto 0; }
.order-cart-item { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px 16px; padding: 16px 0; border-bottom: 1px solid var(--cw-line); }
.order-cart-item__copy strong, .order-cart-item__copy span { display: block; }
.order-cart-item__copy strong { color: var(--cw-ink-900); }
.order-cart-item__copy span { margin-top: 2px; color: var(--cw-ink-500); font-size: .8rem; }
.order-cart-item__controls { display: flex; align-items: center; gap: 4px; }
.order-cart-item__controls button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--cw-line); border-radius: 50%; background: var(--cw-blush-50); color: var(--cw-red-700); font-size: 1.2rem; cursor: pointer; }
.order-cart-item__controls span { min-width: 28px; text-align: center; font-weight: 800; }
.order-cart-item__subtotal { align-self: center; color: var(--cw-red-700); }
.order-cart__footer { margin-top: auto; padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--cw-line); background: var(--cw-white); box-shadow: 0 -10px 30px rgba(67,9,15,.06); }
.order-cart__total { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.order-cart__total span { color: var(--cw-ink-700); font-weight: 700; }
.order-cart__total strong { color: var(--cw-red-700); font-family: var(--font-display); font-size: 2rem; }
.order-cart__footer > p { margin: 0 0 14px; color: var(--cw-ink-500); font-size: .76rem; }
.order-cart__confirm { width: 100%; min-height: 52px; border-radius: var(--radius-md); background: var(--cw-whatsapp); color: var(--cw-white); font-weight: 800; cursor: pointer; box-shadow: 0 9px 20px var(--cw-whatsapp-shadow); }
.order-cart__confirm:disabled { background: var(--cw-disabled); color: var(--cw-ink-500); box-shadow: none; cursor: not-allowed; }
.order-cart-button:focus-visible, .order-cart__close:focus-visible, .order-cart-item__controls button:focus-visible, .order-cart__confirm:focus-visible { outline: 3px solid var(--cw-gold-400); outline-offset: 3px; }
@media (max-width: 560px) { .order-cart-button { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); } .order-cart__header { padding: 20px; } .order-cart__items, .order-cart__footer { padding-inline: 20px; } }
