:root {
  color-scheme: dark;
  --bg: #0d1318;
  --panel: #131d24;
  --panel-strong: #18242d;
  --line: #30414d;
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #fff8e8;
  --muted: #b9c2bf;
  --accent: #e2a64f;
  --accent-strong: #f1bd63;
  --green: #75cdb8;
  --danger: #e07b73;
  --shadow: rgba(0, 0, 0, 0.34);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(13, 19, 24, 0.88), #0d1318 42rem),
    url("https://images.unsplash.com/photo-1514517220035-9c3d9ca0d3b9?auto=format&fit=crop&w=1800&q=74") center top / cover fixed;
  color: var(--text);
}

body.cart-open {
  overflow: hidden;
}

body.confirm-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(226, 166, 79, 0.16), transparent 34rem),
    linear-gradient(180deg, #0d1318, #090d11);
}

html.is-ios body.cart-open {
  width: 100%;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 46rem);
}

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

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

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

.delivery-confirm-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.delivery-confirm-card {
  width: min(34rem, 100%);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 19, 24, 0.92);
  box-shadow: 0 24px 80px -50px #000;
}

.delivery-confirm-logo {
  width: 8rem;
  max-width: 45vw;
  justify-self: center;
}

.delivery-confirm-card h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.95;
}

.delivery-confirm-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(226, 166, 79, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(241, 189, 99, 0.5);
  outline: none;
}

.policy-page {
  background:
    radial-gradient(circle at 75% 10%, rgba(226, 166, 79, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(13, 19, 24, 0.94), #0d1318 36rem),
    url("/assets/media/lanches/completao.png") center top / cover fixed;
}

.policy-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 2rem;
}

.policy-hero,
.policy-card {
  border: 1px solid rgba(226, 166, 79, 0.28);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.88);
  box-shadow: 0 24px 90px -60px #000;
}

.policy-hero {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.policy-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--text);
}

.policy-hero p,
.policy-card p,
.policy-list {
  color: var(--muted);
  line-height: 1.65;
}

.policy-hero p {
  max-width: 58rem;
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.policy-card {
  padding: 1rem;
}

.policy-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.policy-card p {
  margin: 0;
}

.policy-card p + p {
  margin-top: 0.75rem;
}

.policy-card-highlight {
  background:
    linear-gradient(135deg, rgba(226, 166, 79, 0.13), rgba(117, 205, 184, 0.08)),
    rgba(13, 19, 24, 0.92);
}

.policy-card-full {
  grid-column: 1 / -1;
}

.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}

.policy-list li + li {
  margin-top: 0.45rem;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.policy-actions .primary-action,
.policy-actions .ghost-action {
  min-height: 3rem;
  padding: 0.75rem 1rem;
}

.policy-header-action {
  justify-content: center;
  min-width: 8rem;
}

.delivery-confirm-card form {
  display: grid;
  gap: 0.85rem;
}

.delivery-confirm-card label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.delivery-confirm-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.95rem 1rem;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.delivery-confirm-result {
  min-height: 2.65rem;
  display: grid;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.delivery-confirm-result:empty {
  display: none;
}

.delivery-confirm-result[data-tone="success"] {
  color: var(--green);
  border-color: rgba(117, 205, 184, 0.3);
}

.delivery-confirm-result[data-tone="error"] {
  color: var(--danger);
  border-color: rgba(224, 123, 115, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  background: rgba(13, 19, 24, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 12rem;
}

.brand-mark img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.2rem;
}

.brand-mark span {
  display: grid;
  line-height: 1;
}

.brand-mark strong,
.brand-mark small,
h1,
h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
}

.brand-mark strong {
  font-size: 1.45rem;
}

.brand-mark small {
  color: var(--accent);
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.site-nav a,
.header-cart,
.ghost-action,
.primary-action,
.product-card button,
.copy-action,
.icon-button,
.floating-cart {
  border: 0;
  cursor: pointer;
}

.site-nav a {
  padding: 0.62rem 0.9rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cart,
.floating-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  color: #06110f;
  background: var(--green);
  font-weight: 800;
  padding: 0.7rem 0.95rem;
}

.header-cart strong,
.floating-cart span {
  min-width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

main {
  position: relative;
  z-index: 1;
}

.hero-section {
  width: min(1180px, calc(100% - 2rem));
  min-height: 84vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.78fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: 6.7rem;
  line-height: 0.92;
  max-width: 9ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 43rem;
}

.hero-text span {
  display: block;
}

.hero-subline {
  margin-top: 0.08rem;
}

.hero-actions,
.product-bottom,
.drawer-footer,
.modal-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-action-icon {
  display: none;
}

.app-action-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin-icon {
  position: relative;
}

.map-pin-icon::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  display: block;
  border: 2px solid rgba(255, 241, 214, 0.92);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #f8b451, #df7c36);
  transform: rotate(-45deg);
}

.map-pin-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: #1b1207;
  transform: translate(-50%, -50%);
}

.primary-action,
.ghost-action,
.copy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 850;
}

.primary-action {
  background: var(--accent-strong);
  color: #1b1207;
  box-shadow: 0 14px 34px -24px var(--accent-strong);
}

.ghost-action,
.copy-action {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border: 1px solid var(--line-soft);
}

.primary-action.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.7rem 0 0;
}

.hero-facts div,
.quick-strip article,
.product-card,
.steps-grid article,
.drawer-panel,
.modal-panel,
.about-section {
  border: 1px solid var(--line-soft);
  background: rgba(19, 29, 36, 0.84);
  border-radius: 8px;
  box-shadow: 0 18px 44px -34px var(--shadow);
}

.hero-facts div {
  padding: 0.85rem;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(226, 166, 79, 0.32);
  background: #101820;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  display: block;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 19, 24, 0.86), transparent 58%);
}

.hero-plate {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.82);
  border: 1px solid var(--line-soft);
}

.hero-plate span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-plate strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.3rem;
}

.quick-strip,
.menu-section,
.steps-section,
.order-status-section,
.about-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-strip article {
  padding: 1rem;
}

.quick-strip span {
  display: block;
  color: var(--green);
  font-weight: 900;
  font-size: 1.7rem;
}

.quick-strip strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-section,
.steps-section,
.order-status-section {
  padding: 3rem 0 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading.compact {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-size: 3.9rem;
  line-height: 1;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.menu-tabs button {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 850;
  cursor: pointer;
}

.menu-tabs button.is-active {
  background: rgba(117, 205, 184, 0.18);
  color: var(--green);
  border-color: rgba(117, 205, 184, 0.45);
}

.menu-content {
  min-height: 20rem;
}

body:not(.desktop-order-workspace-open):not(.menu-workspace-open) .menu-section {
  display: none;
}

.menu-heading {
  align-items: start;
}

.menu-close-button {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0.58rem 0.92rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 180, 81, 0.28);
  background: rgba(255, 244, 221, 0.06);
  color: #fff3dc;
  font-weight: 900;
}

body.launch-popup-open {
  overflow: hidden;
}

.launch-popup {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.launch-popup.is-open {
  display: flex;
}

.launch-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 3, 1, 0.72);
  backdrop-filter: blur(12px);
}

.launch-popup-panel {
  position: relative;
  width: min(80vw, 56rem);
  max-height: 80vh;
  display: grid;
  gap: 0.75rem;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(248, 180, 81, 0.38);
  background: linear-gradient(180deg, rgba(22, 13, 8, 0.98), rgba(7, 4, 3, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  padding: 1rem;
  text-align: center;
}

.launch-popup-panel h2 {
  margin: 0;
  color: #fff4df;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.launch-popup-panel img {
  width: 100%;
  max-height: min(44vh, 33rem);
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.launch-popup-panel .primary-action {
  width: min(100%, 20rem);
  margin-inline: auto;
  justify-content: center;
}

.launch-popup-close {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 180, 81, 0.34);
  background: rgba(8, 5, 4, 0.82);
  color: #fff4df;
  font-size: 1rem;
  font-weight: 950;
}

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

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

.product-card {
  min-height: 11rem;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 1rem;
}

.product-main h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.22;
}

.product-main p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-main .brand-line {
  color: var(--green);
  font-weight: 800;
}

.menu-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.7rem;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  background: rgba(226, 166, 79, 0.18);
  color: var(--accent-strong);
  font-weight: 900;
}

.product-bottom {
  justify-content: space-between;
  margin-top: 1rem;
}

.product-bottom strong {
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.product-card button {
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(117, 205, 184, 0.18);
  color: var(--green);
  font-weight: 900;
}

.beverage-group {
  margin-bottom: 1.2rem;
}

.group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
}

.group-title h3 {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1.35rem;
}

.group-title span {
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(226, 166, 79, 0.16);
  color: var(--accent-strong);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.steps-grid article {
  padding: 1.1rem;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #1b1207;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 1rem 0 0.45rem;
}

.steps-grid p,
.about-section p {
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.3rem;
  margin-bottom: 6rem;
}

.about-section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  gap: 0.22rem;
  padding: 1rem;
  border: 1px solid rgba(226, 166, 79, 0.34);
  border-radius: 8px;
  background: rgba(226, 166, 79, 0.08);
  color: var(--text);
  text-decoration: none;
}

.location-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  font-size: 1.1rem;
}

.location-card small {
  color: var(--green);
  font-weight: 800;
}

.floating-cart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 57;
  display: none;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  min-width: min(22rem, calc(100vw - 2rem));
  padding: 0.42rem 0.62rem 0.42rem 0.42rem;
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.98), rgba(223, 124, 54, 0.98));
  color: #1a1008;
  box-shadow: 0 16px 32px -18px var(--shadow);
}

body.cart-has-items .floating-cart {
  display: grid;
}

.floating-cart img {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 22px -16px rgba(0, 0, 0, 0.8);
}

.floating-cart span {
  min-width: 0;
  height: auto;
  display: grid;
  place-items: initial;
  border-radius: 0;
  background: transparent;
  line-height: 1.05;
}

.floating-cart small {
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.floating-cart strong {
  font-size: 1.02rem;
  line-height: 1;
}

.floating-cart em {
  min-width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 16, 8, 0.16);
  font-style: normal;
  font-weight: 950;
}

.bag-toast {
  position: fixed;
  left: 50%;
  bottom: 5.35rem;
  z-index: 59;
  width: min(calc(100vw - 1.25rem), 27rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.42rem;
  align-items: center;
  padding: 0.58rem;
  border: 1px solid rgba(248, 180, 81, 0.36);
  border-radius: 8px;
  background: rgba(19, 13, 9, 0.96);
  color: #fff3dc;
  box-shadow: 0 18px 48px -26px rgba(0, 0, 0, 0.95);
  transform: translate(-50%, 0.55rem);
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.bag-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.bag-toast span {
  font-weight: 900;
}

.bag-toast button {
  min-height: 2.2rem;
  padding: 0.45rem 0.65rem;
  border-radius: 7px;
  border: 1px solid rgba(248, 180, 81, 0.25);
  background: rgba(255, 244, 221, 0.06);
  color: #fff3dc;
  font-weight: 900;
}

.bag-toast button:last-child {
  background: linear-gradient(135deg, #f8b451, #df7c36);
  color: #1a1008;
}

.cart-drawer,
.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

body.customize-open {
  overflow: hidden;
}

body.customize-open .customize-modal {
  z-index: 120;
}

body.customize-open .floating-cart,
body.customize-open .site-chat-public {
  display: none;
  pointer-events: none;
}

.cart-drawer.is-open,
.customize-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(29.5rem, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  padding: 0.82rem;
  background: #101820;
  border-radius: 0;
  transform: translateX(104%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
  font-size: 1.9rem;
}

.icon-button {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.7rem;
}

.cart-items {
  overflow: auto;
  padding: 0.65rem 0;
  min-height: 21rem;
  -webkit-overflow-scrolling: touch;
}

.cart-items .empty-state {
  min-height: 21rem;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 0.68rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 0.7rem;
}

.cart-row h3 {
  margin: 0;
  font-size: 0.94rem;
}

.cart-row p {
  margin: 0.25rem 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-row ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem;
  align-items: center;
  justify-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  height: 2.3rem;
}

.qty-control button,
.remove-button {
  border: 0;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  font-weight: 900;
}

.remove-button {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--danger);
  padding: 0;
}

.order-form {
  border-top: 1px solid var(--line-soft);
  width: 100%;
  min-width: 0;
  padding-top: 0.64rem;
  display: grid;
  gap: 0.64rem;
  max-height: 32vh;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 0.94em;
  -webkit-overflow-scrolling: touch;
}

.order-form *,
.order-form *::before,
.order-form *::after {
  min-width: 0;
}

.order-window-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem;
  border: 1px solid rgba(226, 166, 79, 0.3);
  border-radius: 8px;
  background: rgba(226, 166, 79, 0.08);
}

.order-window-card strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.order-window-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.order-window-card[data-mode="open"],
.order-window-card[data-mode="preorder"] {
  border-color: rgba(97, 211, 155, 0.42);
  background: rgba(97, 211, 155, 0.09);
}

.order-window-card[data-mode="open"] strong,
.order-window-card[data-mode="preorder"] strong,
[data-api-status][data-tone="open"] {
  color: var(--green);
}

.order-window-card[data-mode="closed"] strong,
[data-api-status][data-tone="closed"] {
  color: var(--danger);
}

.scheduled-order-fields {
  display: grid;
  gap: 0.28rem;
  padding: 0.68rem;
  border: 1px solid rgba(226, 166, 79, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.scheduled-order-fields[hidden] {
  display: none;
}

.scheduled-order-fields small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.order-form legend,
.order-form label {
  font-size: 0.79rem;
}

.choice-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.36rem;
  margin-top: 0.4rem;
  max-width: 100%;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 4rem;
  overflow: visible;
}

.choice-grid {
  overflow: hidden;
}

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

.service-availability-note {
  margin: 0.45rem 0 0;
  border: 1px solid rgba(117, 205, 184, 0.28);
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.16);
  color: #f8fff9;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 760;
}

.service-availability-note[data-mode="retirada"],
.service-availability-note[data-mode="entrega"] {
  background: rgba(117, 205, 184, 0.22);
}

.payment-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.payment-choice-grid label,
.payment-choice-grid span {
  display: grid;
  visibility: visible;
}

.payment-choice-grid label[hidden],
.payment-choice-grid span[hidden] {
  display: grid !important;
}

.choice-grid label {
  position: relative;
  overflow: hidden;
}

.choice-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 2.34rem;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding-inline: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.choice-grid input:checked + span {
  border-color: rgba(117, 205, 184, 0.55);
  background: rgba(117, 205, 184, 0.16);
  color: var(--green);
}

label {
  display: grid;
  gap: 0.38rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0.79rem 0.87rem;
  outline: none;
}

.order-form input,
.order-form select,
.order-form textarea {
  max-width: 100%;
  padding: 0.72rem 0.78rem;
  font-size: 0.94em;
}

.order-form select {
  appearance: none;
  padding-right: 1.55rem;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.72rem) 50%;
  background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(226, 166, 79, 0.72);
}

.delivery-fields {
  display: grid;
  gap: 0.66rem;
}

.delivery-rule-notice {
  display: grid;
  place-items: center;
  min-height: 2.46rem;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #2fa772, #207d57);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px -22px rgba(47, 167, 114, 0.78);
}

.cash-change-fields {
  display: grid;
  gap: 0.5rem;
  padding: 0.62rem;
  border: 1px solid rgba(226, 166, 79, 0.32);
  border-radius: 8px;
  background: rgba(226, 166, 79, 0.08);
}

.cash-change-fields[hidden],
.cash-change-input[hidden],
.cash-change-fields p[hidden] {
  display: none !important;
}

.split-payment-panel {
  display: grid;
  gap: 0.62rem;
  padding: 0.7rem;
  border: 1px solid rgba(248, 180, 81, 0.28);
  border-radius: 8px;
  background: rgba(248, 180, 81, 0.075);
}

.split-payment-panel[hidden] {
  display: none !important;
}

.split-payment-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.split-payment-panel header div {
  display: grid;
  gap: 0.15rem;
}

.split-payment-panel header strong {
  color: var(--text);
  font-size: 0.9rem;
}

.split-payment-panel header span,
.split-payment-balance {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.split-payment-list {
  display: grid;
  gap: 0.5rem;
}

.split-payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.12fr) minmax(6rem, 0.72fr) auto;
  gap: 0.42rem;
  align-items: end;
  padding: 0.55rem;
  border: 1px solid rgba(255, 244, 221, 0.09);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.7);
}

.split-payment-row label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.split-payment-row input {
  min-height: 2.35rem;
  padding: 0.5rem 0.58rem;
  font-size: 0.86rem;
}

.split-payment-row .remove-button {
  min-height: 2.35rem;
  padding-inline: 0.58rem;
}

.split-payment-balance {
  margin: 0;
  padding: 0.52rem 0.62rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.split-payment-balance[data-tone="ok"] {
  color: var(--green);
  background: rgba(117, 205, 184, 0.12);
}

.split-payment-balance[data-tone="warning"] {
  color: var(--accent-strong);
}

.cash-change-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.42rem;
}

.cash-change-question > span {
  color: var(--text);
  font-weight: 900;
  font-size: 0.83rem;
}

.cash-change-question label {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.28rem;
  color: var(--text);
  font-size: 0.78rem;
}

.cash-change-question input {
  width: 0.92rem;
  height: 0.92rem;
  padding: 0;
  accent-color: var(--accent);
}

.cash-change-fields p {
  margin: 0;
  color: #ffd082;
  font-size: 0.82rem;
  font-weight: 900;
}

.cash-change-fields p[data-tone="error"] {
  color: #ffb0a9;
}

.location-picker {
  display: grid;
  gap: 0.44rem;
  padding: 0.68rem;
  border: 1px solid rgba(117, 205, 184, 0.22);
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.07);
}

.location-action {
  min-height: 2.57rem;
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.2);
  color: var(--green);
  font-weight: 900;
}

.location-picker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.795rem;
  line-height: 1.45;
}

.location-picker p[data-tone="success"] {
  color: var(--green);
}

.location-picker p[data-tone="error"] {
  color: var(--danger);
}

.location-picker p[data-tone="loading"] {
  color: var(--accent);
}

.drawer-footer {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.7rem;
}

.drawer-footer div {
  flex: 1;
  display: grid;
}

.drawer-footer span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.drawer-footer strong {
  font-size: 1.25rem;
}

.drawer-step-tabs,
.cart-step-intro,
.mobile-next-action {
  display: none;
}

.drawer-step-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.5rem 0 0.35rem;
}

.drawer-step-tabs button {
  min-height: 2.34rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
  color: rgba(255, 232, 195, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
}

.drawer-step-tabs button.is-active {
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.28), rgba(223, 124, 54, 0.2));
  color: #fff1d6;
  border-color: rgba(248, 180, 81, 0.36);
}

.drawer-step-tabs button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.cart-step-intro {
  gap: 0.1rem;
  padding: 0.54rem 0.64rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
}

.cart-step-intro strong {
  color: #fff1d6;
  font-size: 0.9rem;
}

.cart-step-intro span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.cart-drawer[data-step="items"] .cart-step-intro-items,
.cart-drawer[data-step="details"] .cart-step-intro-details {
  display: grid;
}

.cart-drawer[data-step="items"] .order-form,
.cart-drawer[data-step="items"] .cart-step-intro-details,
.cart-drawer[data-step="details"] .cart-items,
.cart-drawer[data-step="details"] .cart-step-intro-items {
  display: none;
}

.cart-drawer[data-step="details"] .order-form {
  display: grid;
  align-self: stretch;
  height: auto;
  max-height: none;
  overflow: auto;
  padding-bottom: 0.35rem;
}

.cart-drawer[data-step="items"] .drawer-footer .summary-action,
.cart-drawer[data-step="items"] .drawer-footer .whatsapp-confirm-action,
.cart-drawer[data-step="items"] .drawer-footer [data-send-site-order] {
  display: none;
}

.cart-drawer[data-step="items"] .mobile-next-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cart-drawer[data-step="details"] .mobile-next-action {
  display: none;
}

.cart-drawer[data-step="details"] .drawer-footer .summary-action,
.cart-drawer[data-step="details"] .drawer-footer .whatsapp-confirm-action {
  display: grid;
}

.summary-action,
.whatsapp-confirm-action {
  text-align: center;
}

.whatsapp-confirm-action {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.06rem;
  line-height: 1.04;
}

.whatsapp-confirm-action strong {
  font-size: 0.9rem;
}

.whatsapp-confirm-action small {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 950;
}

.order-summary-panel {
  width: min(34rem, calc(100% - 1.25rem));
}

.order-summary-body {
  min-height: 0;
  overflow: auto;
  padding: 0.85rem 0;
}

.order-summary-body pre {
  margin: 0;
  min-height: 18rem;
  max-height: min(58vh, 31rem);
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
  color: var(--text);
  font: 800 0.9rem/1.45 Inter, system-ui, sans-serif;
  padding: 0.88rem;
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58rem, calc(100% - 1rem));
  max-height: 92vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 1rem;
  background: #101820;
  transform: translate(-50%, -45%);
  transition: transform 180ms ease;
}

.customize-modal.is-open .modal-panel {
  transform: translate(-50%, -50%);
}

.modal-body {
  overflow: auto;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.modal-body label {
  grid-column: 1 / -1;
}

.modal-body h3 {
  margin: 0 0 0.65rem;
}

.option-list {
  display: grid;
  gap: 0.45rem;
}

.option-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.035);
}

.option-row input {
  width: 1rem;
}

.option-row strong {
  color: var(--text);
  font-size: 0.94rem;
}

.option-row span {
  color: var(--accent);
}

.option-row.option-cheddar strong,
.option-row.option-cheddar span {
  color: #ffc13d;
  text-shadow: 0 0 10px rgba(255, 193, 61, 0.32);
}

.option-row.option-catupiry strong,
.option-row.option-catupiry span {
  color: #fff7e8;
  text-shadow: 0 0 10px rgba(255, 247, 232, 0.28);
}

.modal-footer {
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.modal-footer strong {
  color: var(--accent-strong);
  font-size: 1.45rem;
}

.site-order-panel {
  width: min(34rem, calc(100% - 1rem));
}

.site-order-status {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 0.4rem;
}

.site-order-status strong {
  color: var(--green);
  font-size: 1.35rem;
}

.site-order-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-payment-links {
  display: grid;
  gap: 0.5rem;
}

.site-payment-links[hidden] {
  display: none !important;
}

.site-payment-links article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.45rem;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid rgba(248, 180, 81, 0.2);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
}

.site-payment-links article div {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.site-payment-links article strong,
.site-payment-links article span {
  font-size: 0.84rem;
}

.site-payment-links article strong {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-payment-links article span {
  color: var(--accent-strong);
  font-weight: 950;
}

.site-payment-links .copy-action,
.site-payment-links .primary-action {
  min-height: 2.25rem;
  padding: 0.5rem 0.62rem;
  border-radius: 8px;
  font-size: 0.76rem;
}

.order-status-section {
  display: grid;
  gap: 1rem;
}

.status-shortcut-section {
  padding-top: 2.8rem;
}

.status-shortcut-card {
  min-height: 7rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(248, 180, 81, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(19, 29, 36, 0.92), rgba(34, 23, 16, 0.82));
  box-shadow: 0 22px 64px -48px #000;
  color: var(--text);
  text-decoration: none;
}

.status-shortcut-card:hover {
  border-color: rgba(248, 180, 81, 0.5);
  transform: translateY(-1px);
}

.status-shortcut-card img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.status-shortcut-card span {
  display: grid;
  gap: 0.2rem;
}

.status-shortcut-card small {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-shortcut-card strong {
  color: var(--text);
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
}

.status-shortcut-card em {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8b451, #df7c36);
  color: #1b1207;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.status-lookup-card,
.status-empty-card,
.status-order-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(19, 29, 36, 0.78);
  box-shadow: 0 18px 44px -34px var(--shadow);
}

.status-lookup-card {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto;
  align-items: end;
  gap: 0.8rem;
  padding: 1rem;
}

.status-lookup-card .primary-action {
  border: 0;
}

.status-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}

.status-empty-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 8rem;
  padding: 1rem;
}

.status-empty-card img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.status-empty-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1.05rem;
}

.status-empty-card span {
  color: var(--muted);
  line-height: 1.5;
}

.status-empty-card.is-error {
  border-color: rgba(224, 123, 115, 0.45);
}

.status-order-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.status-order-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.status-order-card header span,
.status-metrics span,
.status-metrics small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-order-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
}

.status-order-card header > strong {
  color: var(--accent-strong);
  font-size: 1rem;
  text-align: right;
}

.status-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.2rem, 1fr));
  gap: 0.6rem;
}

.status-roadmap::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 1.95rem;
  border-top: 2px dashed rgba(248, 180, 81, 0.36);
}

.status-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--muted);
  text-align: center;
}

.status-step-icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(248, 180, 81, 0.18);
  background: #100d0a;
  box-shadow: 0 10px 28px -24px #000;
}

.status-step-icon img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.status-step strong {
  font-size: 0.82rem;
}

.status-step.is-done,
.status-step.is-active,
.status-step.is-ready {
  color: var(--text);
}

.status-step.is-active .status-step-icon,
.status-step.is-ready .status-step-icon {
  border-color: rgba(248, 180, 81, 0.72);
  background: rgba(248, 180, 81, 0.16);
}

.status-step.is-ready .status-step-icon {
  animation: statusBellRing 850ms ease-in-out infinite;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.status-metrics > div {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.status-metrics strong {
  color: var(--green);
  font-size: 1.35rem;
}

.status-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.status-items {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-items li {
  display: flex;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 700;
}

.status-items strong {
  color: var(--accent-strong);
}

.status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 6%, rgba(226, 166, 79, 0.24), transparent 26rem),
    linear-gradient(180deg, rgba(13, 19, 24, 0.78), #0b0f13 38rem),
    url("../assets/media/lanches/completao.png") center top / cover fixed;
}

.status-page::before {
  mask-image: linear-gradient(to bottom, black, transparent 52rem);
}

.status-page-header .site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(226, 166, 79, 0.16);
  border-radius: 999px;
}

.status-header-action {
  min-width: auto;
  color: var(--text);
}

.status-page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0 2.5rem;
  display: grid;
  gap: 0.85rem;
}

.status-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
  align-items: end;
  gap: 1rem;
  padding: 0.82rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.84);
  box-shadow: 0 24px 78px -56px #000;
  backdrop-filter: blur(18px);
}

.status-page-hero-copy {
  display: grid;
  gap: 0.32rem;
}

.status-page-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.5rem, 6.4vw, 5.4rem);
  line-height: 0.88;
}

.status-page-hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.status-page-lookup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: end;
  padding: 0.62rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
}

.status-page-lookup label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 900;
  font-size: 0.84rem;
  line-height: 1.2;
  text-transform: none;
}

.status-page-lookup input {
  width: 100%;
  min-height: 2.55rem;
  border: 1px solid rgba(248, 180, 81, 0.28);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.06);
  color: var(--text);
  padding: 0.62rem 0.75rem;
  font-weight: 900;
  outline: 0;
}

.status-page-lookup input:focus {
  border-color: rgba(248, 180, 81, 0.68);
  box-shadow: 0 0 0 3px rgba(248, 180, 81, 0.14);
}

.status-page-live-note {
  grid-column: 1 / -1;
  min-height: 2.1rem;
  display: grid;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(117, 205, 184, 0.22);
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.09);
  color: #d7fff2;
  font-weight: 800;
}

.status-map-live-note {
  position: absolute;
  right: 0.72rem;
  top: 0.72rem;
  left: auto;
  z-index: 520;
  grid-column: auto;
  min-height: auto;
  max-width: min(24rem, calc(100% - 13rem));
  padding: 0.45rem 0.65rem;
  background: rgba(13, 35, 32, 0.88);
  border-color: rgba(117, 205, 184, 0.36);
  box-shadow: 0 18px 42px -30px #000;
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
}

.status-page-results {
  display: grid;
  gap: 0.8rem;
}

.status-page-empty {
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.2rem;
  border: 1px solid rgba(248, 180, 81, 0.2);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.82);
  text-align: left;
}

.status-page-empty.is-error {
  border-color: rgba(224, 123, 115, 0.42);
}

.status-page-empty img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.status-page-empty strong,
.status-page-empty span {
  display: block;
}

.status-page-empty strong {
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1.2rem;
}

.status-page-empty span {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.5;
}

.status-page-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: 0.8rem;
  align-items: stretch;
}

.status-map-card,
.status-eta-card,
.status-page-roadmap,
.status-page-items,
.status-page-payments,
.status-page-recent {
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.86);
  box-shadow: 0 24px 78px -58px #000;
  overflow: hidden;
}

.status-map-card {
  position: relative;
  min-height: clamp(28rem, 58vh, 40rem);
  height: auto;
  align-self: stretch;
}

.status-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 244, 221, 0.04);
}

.status-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.82) contrast(0.92) brightness(0.82);
}

.status-map .leaflet-control-attribution {
  font-size: 0.62rem;
}

.status-map-fallback {
  min-height: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
  color: var(--muted);
  text-align: center;
}

.status-map-fallback img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.status-map-fallback strong {
  color: var(--text);
  font-size: 1.2rem;
}

.status-route-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 500;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.1rem 0.5rem;
  max-width: min(22rem, calc(100% - 2rem));
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(248, 180, 81, 0.26);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.88);
  color: var(--text);
  box-shadow: 0 16px 42px -28px #000;
  backdrop-filter: blur(14px);
}

.status-route-chip span,
.status-route-chip small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-route-chip small {
  grid-column: 1 / -1;
  text-transform: none;
}

.status-map-marker {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid #fff8e8;
  border-radius: 50%;
  background: #121a20;
  color: #fff8e8;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.status-map-marker.is-store {
  background: #df7c36;
}

.status-map-marker.is-customer {
  background: #111820;
}

.status-map-marker.is-moto {
  width: 54px;
  height: 54px;
  background: var(--accent-strong);
  color: #18100b;
  animation: statusMotoWiggle 380ms ease-in-out infinite alternate;
}

.status-live-stack {
  display: grid;
  gap: 0.7rem;
}

.status-eta-card {
  position: relative;
  padding: 0.82rem;
}

.status-eta-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(226, 166, 79, 0.16);
}

.status-eta-card header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.status-eta-card header span,
.status-eta-card header small,
.status-eta-main span,
.status-eta-main small,
.status-quick-metrics span,
.status-quick-metrics small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.status-eta-card h2 {
  margin: 0.2rem 0 0.05rem;
  font-size: 1.72rem;
  line-height: 0.95;
}

.status-eta-card header > strong {
  align-self: start;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(248, 180, 81, 0.28);
  border-radius: 999px;
  background: rgba(248, 180, 81, 0.12);
  color: var(--accent-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-eta-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  margin-top: 0.78rem;
}

.status-eta-body {
  position: relative;
  z-index: 1;
}

.status-eta-main strong {
  color: var(--text);
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(3.2rem, 5.6vw, 4.35rem);
  line-height: 0.9;
}

.status-quick-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.45rem;
  margin-top: 0.72rem;
}

.status-quick-metrics > div {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.62rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
}

.status-quick-metrics strong {
  color: var(--green);
  font-size: 1.3rem;
}

@media (min-width: 981px) {
  .status-eta-card {
    min-height: 10rem;
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    padding: 0.74rem 0.82rem;
  }

  .status-eta-card h2 {
    margin-top: 0.12rem;
  }

  .status-eta-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(8.3rem, 9.8rem);
    gap: 0.68rem;
    align-items: start;
    margin-top: 0.32rem;
  }

  .status-eta-main {
    margin-top: 0;
    align-self: start;
  }

  .status-eta-main strong {
    font-size: clamp(3rem, 4.3vw, 4.05rem);
  }

  .status-quick-metrics {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    margin-top: 0;
    align-self: start;
  }

  .status-quick-metrics > div {
    gap: 0.02rem;
    min-height: 0;
    padding: 0.42rem 0.5rem;
  }

  .status-quick-metrics span,
  .status-quick-metrics small {
    font-size: 0.66rem;
    line-height: 1.1;
  }

  .status-quick-metrics strong {
    font-size: 0.98rem;
    line-height: 1.08;
  }
}

.status-page-roadmap {
  display: grid;
  gap: 0.68rem;
  padding: 0.82rem;
}

.status-page-roadmap header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.status-page-roadmap header span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-page-roadmap header strong {
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.status-page-roadline {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 244, 221, 0.1);
}

.status-page-roadline-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #df7c36, var(--accent-strong));
  transition: width 420ms ease;
}

.status-page-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.6rem, 1fr));
  gap: 0.6rem;
}

.status-page-step {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  color: var(--muted);
  text-align: center;
}

.status-page-step span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 50%;
  background: #100d0a;
}

.status-page-step img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
}

.status-page-step strong {
  color: inherit;
  font-size: 0.82rem;
}

.status-page-step small {
  color: inherit;
  font-size: 0.68rem;
  line-height: 1.3;
}

.status-page-step.is-done,
.status-page-step.is-active,
.status-page-step.is-ready {
  color: var(--text);
}

.status-page-step.is-active span,
.status-page-step.is-ready span {
  border-color: rgba(248, 180, 81, 0.72);
  background: rgba(248, 180, 81, 0.16);
}

.status-page-step.is-active span {
  animation: statusPulse 1250ms ease-in-out infinite;
}

.status-page-step.is-ready span {
  animation: statusBellRing 850ms ease-in-out infinite;
}

.status-page-items {
  display: grid;
  gap: 0.52rem;
  padding: 0.78rem 0.85rem;
}

.status-page-items p,
.status-page-recent h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-page-items ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-page-items li {
  display: flex;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 800;
}

.status-page-items li strong {
  color: var(--accent-strong);
}

.status-page-items > span {
  color: var(--muted);
}

.status-page-payments {
  display: grid;
  gap: 0.62rem;
  padding: 0.78rem 0.85rem;
}

.status-page-payments header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.status-page-payments p {
  margin: 0 0 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-page-payments header strong {
  color: var(--green);
  font-size: 1rem;
}

.status-page-payments header > span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.status-payment-list {
  display: grid;
  gap: 0.45rem;
}

.status-payment-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.4rem;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid rgba(255, 244, 221, 0.09);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.045);
}

.status-payment-list article.is-paid {
  border-color: rgba(117, 205, 184, 0.24);
  background: rgba(117, 205, 184, 0.1);
}

.status-payment-list article div {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
}

.status-payment-list article strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-payment-list article span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.status-payment-list .copy-action,
.status-payment-list .primary-action {
  min-height: 2.2rem;
  padding: 0.48rem 0.62rem;
  border-radius: 8px;
  font-size: 0.74rem;
}

.status-page-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.4rem, 1fr));
  gap: 0.45rem;
  align-items: center;
}

.status-page-actions .primary-action,
.status-page-actions .copy-action {
  width: 100%;
  min-width: 0;
  min-height: 2.65rem;
  border-radius: 8px;
  padding: 0.66rem 0.72rem;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-page-actions .subtle {
  color: var(--muted);
}

.status-page-recent {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.status-page-recent > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.6rem;
}

.status-page-recent article {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.045);
}

.status-page-recent span,
.status-page-recent small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.status-page-recent strong {
  color: var(--text);
}

.status-mobile-actions {
  display: none;
}

@keyframes statusMotoWiggle {
  from {
    transform: rotate(-3deg) translateY(0);
  }
  to {
    transform: rotate(3deg) translateY(-1px);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(248, 180, 81, 0.26);
  }
  50% {
    box-shadow: 0 0 0 0.55rem rgba(248, 180, 81, 0);
  }
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 12rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.empty-state.small {
  min-height: 5rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  .hero-section,
  .section-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 4.8rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 26rem;
  }

  .product-grid,
  .product-grid.compact,
  .quick-strip,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.65rem;
  }

  .brand-mark {
    min-width: auto;
  }

  .brand-mark img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-mark strong {
    font-size: 1.2rem;
  }

  .header-cart span {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .hero-facts,
  .quick-strip,
  .product-grid,
  .product-grid.compact,
  .steps-grid,
  .form-grid,
  .choice-grid,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .floating-cart {
    display: none;
  }

  .drawer-panel {
    width: 100%;
  }

  .order-form {
    max-height: 34vh;
  }
}

/* Machado institutional skin */
:root {
  --bg: #100b08;
  --panel: rgba(24, 18, 15, 0.9);
  --panel-strong: rgba(37, 26, 20, 0.94);
  --line: rgba(252, 186, 86, 0.22);
  --line-soft: rgba(255, 223, 171, 0.13);
  --text: #fff3dc;
  --muted: rgba(255, 232, 195, 0.7);
  --accent: #df7c36;
  --accent-strong: #f8b451;
  --green: #8bd5b5;
  --danger: #ff8b78;
  --shadow: rgba(0, 0, 0, 0.58);
}

body {
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.2), #100b08 50rem),
    radial-gradient(circle at 50% 6rem, rgba(245, 125, 41, 0.22), transparent 24rem),
    radial-gradient(circle at 15% 40%, rgba(117, 42, 20, 0.24), transparent 22rem),
    #100b08;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 193, 113, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 193, 113, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 58rem);
}

.site-header {
  padding: 0.7rem 1.5rem;
  background: rgba(11, 8, 7, 0.8);
  border-bottom-color: rgba(248, 180, 81, 0.18);
}

.brand-mark {
  min-width: 0;
}

.brand-mark img {
  width: 5rem;
  height: 3.3rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.brand-mark strong,
.brand-mark small,
h1,
h2,
.group-title h3,
.product-main h3,
.steps-grid h3 {
  letter-spacing: 0;
}

.brand-mark strong {
  color: var(--text);
  font-size: 1.62rem;
}

.brand-mark small {
  color: var(--accent-strong);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.site-nav {
  background: rgba(255, 244, 221, 0.05);
  border-color: rgba(248, 180, 81, 0.18);
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.header-cart,
.floating-cart {
  background: linear-gradient(135deg, #ffc46c, #e77f32);
  color: #170d08;
  box-shadow: 0 12px 30px -18px rgba(248, 180, 81, 0.95);
}

@media (min-width: 981px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
    align-items: center;
  }

  .brand-mark {
    justify-self: start;
  }

  .site-nav {
    justify-self: center;
  }

  .header-cart {
    justify-self: end;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 78svh;
  margin: 0;
  padding: 5.2rem max(1.2rem, calc((100% - 1520px) / 2)) 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("media/lanches/completao.png") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(0.7);
}

.hero-video,
.hero-ember-layer {
  position: absolute;
  inset: 0;
}

.hero-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(0.58);
}

.hero-ember-layer {
  background:
    radial-gradient(circle at center, rgba(10, 6, 5, 0.54), rgba(10, 6, 5, 0.84) 68%),
    linear-gradient(90deg, rgba(10, 6, 5, 0.82), rgba(10, 6, 5, 0.56) 50%, rgba(10, 6, 5, 0.82)),
    linear-gradient(0deg, #100b08 0, rgba(16, 11, 8, 0.18) 28%, rgba(16, 11, 8, 0.24) 72%, rgba(16, 11, 8, 0.78) 100%);
}

.ember {
  position: absolute;
  width: 0.32rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(255, 157, 57, 0.74);
  box-shadow: 0 0 18px rgba(255, 115, 35, 0.7);
  transform: rotate(28deg);
  opacity: 0.74;
}

.ember-1 {
  left: 9%;
  top: 30%;
}

.ember-2 {
  right: 18%;
  top: 18%;
  height: 0.9rem;
}

.ember-3 {
  right: 12%;
  bottom: 24%;
  height: 1.1rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(54rem, 100%);
  margin: 0 auto;
}

.hero-logo {
  width: min(19rem, 72vw);
  display: block;
  margin: 0 auto 0.7rem;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  max-width: none;
  margin: 0 auto;
  color: #fff0cf;
  font-size: clamp(3.65rem, 6.35vw, 6.9rem);
  line-height: 0.9;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.75);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span + span {
  margin-top: 0.08em;
  color: #ffd59a;
  font-size: 0.82em;
}

.hero-text {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 239, 210, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-text strong {
  color: var(--accent-strong);
}

.hero-callout {
  display: block;
  margin-top: 0.38rem;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.primary-action {
  background: linear-gradient(135deg, #ffc56f, #e5762f);
  color: #170d08;
}

.ghost-action,
.copy-action {
  background: rgba(255, 244, 221, 0.055);
  border-color: rgba(248, 180, 81, 0.22);
}

.hero-facts {
  max-width: 43rem;
  display: none;
}

.hero-facts div,
.quick-strip article,
.product-card,
.steps-grid article,
.drawer-panel,
.modal-panel,
.about-section {
  background:
    linear-gradient(180deg, rgba(255, 245, 226, 0.055), rgba(255, 245, 226, 0.02)),
    var(--panel);
  border-color: rgba(248, 180, 81, 0.18);
  box-shadow: 0 22px 52px -38px rgba(0, 0, 0, 0.9);
}

.hero-facts dt,
.quick-strip strong {
  color: rgba(255, 232, 195, 0.64);
}

.hero-facts dd {
  color: var(--accent-strong);
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.quick-strip article {
  padding: 1.15rem 1.2rem;
}

.quick-strip span {
  color: var(--accent-strong);
}

.brand-story-section,
.menu-poster-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.brand-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 4rem 0 2rem;
}

.brand-story-copy,
.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story-copy h2,
.poster-copy h2,
.about-section h2,
.section-heading h2 {
  color: #fff0cf;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.44);
}

.brand-story-copy h2,
.poster-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 0.92;
}

.brand-story-copy p,
.poster-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.brand-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 0.8rem;
}

.brand-story-media img,
.brand-story-media video,
.poster-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-story-media img,
.brand-story-media video {
  min-height: 28rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 180, 81, 0.22);
}

.brand-story-media img:last-child {
  object-position: center top;
}

.section-heading {
  align-items: center;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.menu-section,
.steps-section,
.order-status-section {
  padding-top: 4.2rem;
}

.menu-tabs {
  justify-content: center;
  margin-bottom: 1.3rem;
}

.menu-tabs button {
  min-width: 10rem;
  background: rgba(255, 244, 221, 0.052);
  border-color: rgba(248, 180, 81, 0.2);
}

.menu-tabs button.is-active {
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.22), rgba(223, 124, 54, 0.18));
  color: #ffd28c;
  border-color: rgba(248, 180, 81, 0.5);
}

.menu-inline-close-button {
  display: none;
}

.product-grid {
  gap: 1rem;
}

.product-grid.snack-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-inline: 10px;
}

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

.beverage-group .product-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 0;
}

.product-photo {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(248, 180, 81, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.product-grid.snack-grid .product-photo {
  aspect-ratio: 12 / 10;
}

.product-photo-placeholder {
  display: none;
  place-items: center;
}

.product-photo-placeholder span {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(248, 180, 81, 0.16);
  color: #fff5e4;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(248, 180, 81, 0.55);
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.product-grid.snack-grid .product-photo img {
  transform: scale(1.08);
}

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

.product-grid.snack-grid .product-card:hover .product-photo img {
  transform: scale(1.12);
}

.product-main,
.product-bottom {
  padding-left: 1rem;
  padding-right: 1rem;
}

.product-main {
  padding-top: 1rem;
}

.product-bottom {
  padding-bottom: 1rem;
}

.product-main h3 {
  color: #fff0cf;
  font-size: 1.55rem;
}

.product-main p {
  color: rgba(255, 232, 195, 0.68);
}

.menu-number {
  background: rgba(248, 180, 81, 0.18);
  color: #ffc46c;
}

.product-bottom strong {
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.product-card button {
  background: rgba(248, 180, 81, 0.16);
  color: #ffd08c;
  border: 1px solid rgba(248, 180, 81, 0.22);
}

.group-title {
  border-color: rgba(248, 180, 81, 0.16);
}

.group-title h3 {
  color: var(--accent-strong);
  font-size: 1.65rem;
}

.group-title span {
  background: rgba(248, 180, 81, 0.16);
  color: #ffd08c;
}

.menu-poster-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(18rem, 0.9fr);
  gap: 1.4rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.poster-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(248, 180, 81, 0.24);
  box-shadow: 0 30px 70px -45px #000;
}

.poster-frame img {
  object-fit: contain;
  background: #100b08;
}

.steps-grid span {
  background: linear-gradient(135deg, #ffc56f, #e5762f);
  color: #170d08;
}

.steps-grid p,
.about-section p {
  color: rgba(255, 232, 195, 0.7);
}

.about-section {
  margin-bottom: 7rem;
}

.drawer-panel,
.modal-panel {
  background: #14100d;
}

input,
select,
textarea {
  background: rgba(255, 244, 221, 0.055);
  border-color: rgba(248, 180, 81, 0.18);
}

@media (max-width: 980px) {
  .hero-section {
    min-height: 82svh;
    padding-top: 7rem;
  }

  .brand-story-section,
  .menu-poster-section {
    grid-template-columns: 1fr;
  }

  .brand-story-media {
    grid-template-columns: 1fr;
  }

  .brand-story-media img {
    min-height: 22rem;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
  }

  .brand-mark img {
    width: 3.3rem;
    height: 2.25rem;
  }

  .brand-mark {
    min-width: 0;
  }

  .site-nav {
    display: none;
  }

  .hero-section {
    width: 100%;
    max-width: 100%;
    min-height: 86svh;
    padding: 5.8rem 1rem 8.4rem;
    justify-content: center;
    text-align: center;
  }

  .hero-copy,
  .hero-text {
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-text {
    font-size: 0.98rem;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    width: min(16.5rem, 76vw);
    margin: 0 auto 0.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.42rem, 10.6vw, 3.55rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom) + 0.65rem);
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    border: 1px solid rgba(248, 180, 81, 0.24);
    border-radius: 8px;
    background: rgba(20, 13, 9, 0.9);
    box-shadow: 0 18px 48px -26px #000;
    backdrop-filter: blur(16px);
    animation: appMenuRise 320ms ease both;
  }

  .hero-actions .primary-action,
  .hero-actions .ghost-action {
    min-height: 4.15rem;
    padding: 0.4rem 0.25rem;
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    justify-items: center;
    align-content: center;
    font-size: 0.75rem;
    line-height: 1.15;
    white-space: normal;
  }

  .app-action-icon {
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 244, 221, 0.14);
    color: #fff1d6;
    font-size: 1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -2.8rem;
  }

  .brand-story-section,
  .menu-poster-section,
  .menu-section,
  .steps-section,
  .order-status-section,
  .about-section,
  .quick-strip {
    width: min(100% - 1rem, 1180px);
  }

  body.menu-workspace-open {
    overflow: hidden;
  }

  body.menu-workspace-open .menu-section {
    position: fixed;
    inset: 0;
    z-index: 55;
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0.76rem;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 0, rgba(248, 180, 81, 0.18), transparent 18rem),
      rgba(16, 11, 8, 0.98);
  }

  body.menu-workspace-open .menu-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    margin-bottom: 0.62rem;
    padding-top: env(safe-area-inset-top);
    padding-right: 4.8rem;
  }

  body.menu-workspace-open .menu-close-button {
    display: none;
  }

  body.menu-workspace-open .menu-heading h2 {
    font-size: 2.25rem;
  }

  body.menu-workspace-open .menu-heading p[data-menu-helper] {
    display: none;
  }

  body.menu-workspace-open .menu-tabs {
    position: sticky;
    top: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 3.15rem;
    gap: 0.45rem;
    margin-bottom: 0.62rem;
  }

  body.menu-workspace-open .menu-tabs button {
    min-width: 0;
    padding: 0.62rem 0.7rem;
  }

  body.menu-workspace-open .menu-tabs .menu-inline-close-button {
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffb65a, #ed7f35);
    border-color: rgba(255, 214, 151, 0.72);
    color: #1c1008;
    font-size: 1.15rem;
    font-weight: 1000;
    box-shadow: 0 12px 34px -24px rgba(248, 180, 81, 0.9);
  }

  body.menu-workspace-open .menu-content {
    min-height: 0;
    overflow: auto;
    padding: 0 0.08rem 6rem;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: 1fr;
  }

  .beverage-group .product-grid.compact {
    grid-template-columns: 1fr;
  }

  .product-grid.snack-grid,
  .beverage-group .product-grid.compact {
    grid-template-columns: 1fr;
    margin-inline: 0;
    gap: 0.55rem;
  }

  .product-grid.snack-grid .snack-card,
  .beverage-group .product-grid.compact .beverage-card {
    min-height: 8rem;
    display: grid;
    grid-template-columns: 6.25rem minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "media main"
      "media bottom";
    column-gap: 0.78rem;
    row-gap: 0.42rem;
    align-items: start;
    padding: 0.68rem;
    border-color: rgba(248, 180, 81, 0.26);
    background:
      linear-gradient(135deg, rgba(255, 244, 221, 0.055), transparent 48%),
      rgba(19, 29, 36, 0.9);
  }

  .product-grid.snack-grid .snack-card .product-photo,
  .beverage-group .product-grid.compact .beverage-card .product-photo {
    grid-area: media;
    display: grid;
    width: 6.25rem;
    height: 6.25rem;
    min-height: 0;
    margin: 0;
    aspect-ratio: 1 / 1;
    align-self: start;
    justify-self: start;
    border: 1px solid rgba(248, 180, 81, 0.16);
    border-radius: 8px;
  }

  .product-grid.snack-grid .snack-card .product-photo img,
  .product-grid.snack-grid .snack-card:hover .product-photo img,
  .beverage-group .product-grid.compact .beverage-card .product-photo img,
  .beverage-group .product-grid.compact .beverage-card:hover .product-photo img {
    transform: none;
    object-fit: cover;
  }

  .product-grid.snack-grid .snack-card .product-photo img {
    object-position: center 62%;
  }

  .beverage-group .product-grid.compact .beverage-card .product-photo img {
    object-position: center;
  }

  .product-grid.snack-grid .snack-card .product-main,
  .product-grid.snack-grid .snack-card .product-bottom,
  .beverage-group .product-grid.compact .beverage-card .product-main,
  .beverage-group .product-grid.compact .beverage-card .product-bottom {
    min-width: 0;
    padding: 0;
  }

  .product-grid.snack-grid .snack-card .product-main,
  .beverage-group .product-grid.compact .beverage-card .product-main {
    grid-area: main;
    display: grid;
    align-content: start;
    gap: 0.2rem;
    padding-top: 0.05rem;
    justify-self: stretch;
  }

  .product-grid.snack-grid .snack-card .menu-number {
    display: none;
  }

  .product-grid.snack-grid .snack-card .product-main h3,
  .beverage-group .product-grid.compact .beverage-card .product-main h3 {
    font-family: Inter, system-ui, sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.12;
  }

  .product-grid.snack-grid .snack-card .product-main p,
  .beverage-group .product-grid.compact .beverage-card .product-main p {
    display: -webkit-box;
    margin-top: 0.08rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 9px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-grid.snack-grid .snack-card .product-bottom,
  .beverage-group .product-grid.compact .beverage-card .product-bottom {
    grid-area: bottom;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }

  .product-grid.snack-grid .snack-card .product-bottom strong,
  .beverage-group .product-grid.compact .beverage-card .product-bottom strong {
    color: var(--accent-strong);
    font-size: 0.92rem;
    line-height: 1;
  }

  .product-grid.snack-grid .snack-card button,
  .beverage-group .product-grid.compact .beverage-card button {
    width: 100%;
    min-height: 2.35rem;
    border-radius: 7px;
    background: linear-gradient(135deg, #f8b451, #df7c36);
    color: #1b1207;
    border-color: rgba(255, 215, 145, 0.38);
    box-shadow: 0 14px 30px -24px rgba(248, 180, 81, 0.9);
    font-size: 0.84rem;
    font-weight: 950;
  }

  .product-grid.snack-grid .snack-card .ingredient-glow {
    font-weight: 900;
    text-shadow: 0 0 8px currentColor;
  }

  .product-grid.snack-grid .snack-card .ingredient-ervilha {
    color: #69f68f;
  }

  .product-grid.snack-grid .snack-card .ingredient-milho,
  .product-grid.snack-grid .snack-card .ingredient-batata {
    color: #ffe268;
  }

  .product-grid.snack-grid .snack-card .ingredient-calabresa,
  .product-grid.snack-grid .snack-card .ingredient-ketchup,
  .product-grid.snack-grid .snack-card .ingredient-salsicha {
    color: #ff5e5e;
  }

  .product-grid.snack-grid .snack-card .ingredient-bacon {
    color: #ff7656;
  }

  .product-grid.snack-grid .snack-card .ingredient-costela {
    color: #c65b42;
  }

  .product-grid.snack-grid .snack-card .ingredient-cheddar {
    color: #ffc13d;
  }

  .product-grid.snack-grid .snack-card .ingredient-catupiry,
  .product-grid.snack-grid .snack-card .ingredient-maionese {
    color: #fff7e8;
  }

  .product-grid.snack-grid .snack-card .ingredient-maionese-verde {
    color: #b8ff9a;
  }

  .product-grid.snack-grid .snack-card .ingredient-frango {
    color: #ffb154;
  }

  .product-grid.snack-grid .snack-card .ingredient-molho-caipira {
    color: #ff534b;
  }

  .product-grid.snack-grid .snack-card .ingredient-alface {
    color: #7dff6b;
  }

  .product-grid.snack-grid .snack-card .ingredient-mostarda {
    color: #ffdd45;
  }

  .product-grid.snack-grid .snack-card .ingredient-pure,
  .product-grid.snack-grid .snack-card .ingredient-pao {
    color: #f5c884;
  }

  .cart-drawer {
    overscroll-behavior: contain;
  }

  .drawer-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: calc(env(safe-area-inset-top) + 0.7rem) 0.7rem calc(env(safe-area-inset-bottom) + 0.7rem);
    grid-template-rows: auto minmax(34vh, 1fr) auto auto;
    transform: translateY(104%);
  }

  .cart-drawer.is-open .drawer-panel {
    transform: translateY(0);
  }

  .cart-items,
  .order-form {
    min-height: 0;
    overscroll-behavior: contain;
  }

  .cart-items {
    min-height: 34vh;
  }

  .cart-items .empty-state {
    min-height: calc(34vh - 1.3rem);
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 0.58rem;
    padding: 0.7rem;
  }

  .cart-row > div:first-child {
    min-width: 0;
  }

  .cart-row ul {
    margin-top: 0.38rem;
    padding-left: 0.85rem;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .qty-control {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .remove-button {
    width: 100%;
    justify-self: stretch;
    min-height: 2.08rem;
    border: 1px solid rgba(255, 139, 120, 0.24);
    border-radius: 8px;
    background: rgba(255, 139, 120, 0.1);
    color: #ffd5ce;
    font-size: 0.78rem;
  }

  .order-form {
    align-self: end;
    height: auto;
    max-height: min(39vh, 20rem);
    gap: 0.48rem;
  }

  .order-window-card {
    gap: 0.08rem;
    padding: 0.46rem 0.56rem;
  }

  .order-window-card span {
    display: none;
  }

  .order-form .service-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-form fieldset:not(:first-of-type) .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-form .choice-grid span {
    min-height: 2.08rem;
  }

  .cash-change-question {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .split-payment-panel header,
  .site-payment-links article {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .split-payment-row {
    grid-template-columns: 1fr;
  }

  .site-payment-links .copy-action,
  .site-payment-links .primary-action {
    width: 100%;
  }

  .order-form .form-grid {
    grid-template-columns: 1fr;
    min-height: 8rem;
    overflow: visible;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    padding-block: 0.66rem;
  }

  .drawer-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
    padding-top: 0.45rem;
  }

  .drawer-footer span {
    font-size: 0.68rem;
  }

  .drawer-footer strong {
    font-size: 1.08rem;
  }

  .drawer-footer .copy-action,
  .drawer-footer .primary-action {
    min-height: 2.34rem;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .drawer-footer div,
  .drawer-footer .primary-action.full {
    grid-column: 1 / -1;
  }

  .status-lookup-card,
  .status-metrics {
    grid-template-columns: 1fr;
  }

  .status-empty-card {
    align-items: flex-start;
  }

  html.is-ios .drawer-panel,
  html.is-safari .drawer-panel {
    height: 100svh;
    min-height: -webkit-fill-available;
    grid-template-rows: auto minmax(34vh, 1fr) auto auto;
  }

  .customize-modal .modal-panel {
    top: calc(env(safe-area-inset-top) + 0.62rem);
    bottom: calc(env(safe-area-inset-bottom) + 0.62rem);
    left: 0.62rem;
    right: 0.62rem;
    width: auto;
    max-height: none;
    padding: 0.78rem;
    transform: translateY(1.1rem);
  }

  .customize-modal.is-open .modal-panel {
    transform: translateY(0);
  }

  .customize-modal .modal-header {
    position: sticky;
    top: 0;
    z-index: 3;
    padding-top: 0.2rem;
    background: #101820;
  }

  .customize-modal .modal-body {
    grid-template-columns: 1fr;
    padding: 0.75rem 0;
  }

  .customize-modal .modal-footer {
    padding-bottom: max(0.2rem, env(safe-area-inset-bottom));
  }

  html.is-ios .order-form,
  html.is-safari .order-form {
    align-self: end;
    height: auto;
    max-height: min(39vh, 20rem);
    scroll-padding-top: 0.35rem;
  }
}

@media (max-width: 980px) {
  .drawer-panel {
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  }

  .drawer-step-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.5rem 0 0.35rem;
  }

  .drawer-step-tabs button {
    min-height: 2.34rem;
    border: 1px solid rgba(248, 180, 81, 0.18);
    border-radius: 8px;
    background: rgba(255, 244, 221, 0.055);
    color: rgba(255, 232, 195, 0.78);
    font-size: 0.78rem;
    font-weight: 950;
  }

  .drawer-step-tabs button.is-active {
    background: linear-gradient(135deg, rgba(248, 180, 81, 0.28), rgba(223, 124, 54, 0.2));
    color: #fff1d6;
    border-color: rgba(248, 180, 81, 0.36);
  }

  .drawer-step-tabs button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
  }

  .cart-step-intro {
    gap: 0.1rem;
    padding: 0.54rem 0.64rem;
    border: 1px solid rgba(248, 180, 81, 0.18);
    border-radius: 8px;
    background: rgba(255, 244, 221, 0.055);
  }

  .cart-step-intro strong {
    color: #fff1d6;
    font-size: 0.9rem;
  }

  .cart-step-intro span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .cart-drawer[data-step="items"] .cart-step-intro-items,
  .cart-drawer[data-step="details"] .cart-step-intro-details {
    display: grid;
  }

  .cart-drawer[data-step="items"] .order-form,
  .cart-drawer[data-step="items"] .cart-step-intro-details,
  .cart-drawer[data-step="details"] .cart-items,
  .cart-drawer[data-step="details"] .cart-step-intro-items {
    display: none;
  }

  .cart-drawer[data-step="details"] .order-form {
    display: grid;
    align-self: stretch;
    height: auto;
    max-height: none;
    overflow: auto;
    padding-bottom: 0.35rem;
  }

  .cart-drawer[data-step="items"] .drawer-footer .summary-action,
  .cart-drawer[data-step="items"] .drawer-footer .whatsapp-confirm-action,
  .cart-drawer[data-step="items"] .drawer-footer [data-send-site-order] {
    display: none;
  }

  .cart-drawer[data-step="items"] .mobile-next-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .cart-drawer[data-step="details"] .mobile-next-action {
    display: none;
  }

  .cart-drawer[data-step="details"] .drawer-footer .summary-action,
  .cart-drawer[data-step="details"] .drawer-footer .whatsapp-confirm-action {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand-mark img {
    width: 4.95rem;
    height: 3.38rem;
  }

  .site-header {
    min-height: calc(4.35rem + env(safe-area-inset-top));
  }
}

@media (min-width: 981px) {
  :root {
    --desktop-cart-width: min(31.25rem, 28vw);
  }

  body.desktop-order-workspace-open {
    overflow: hidden;
  }

  body:not(.desktop-order-workspace-open) .menu-section {
    display: none;
  }

  body.desktop-order-workspace-open .floating-cart {
    display: none;
  }

  body.desktop-order-workspace-open .cart-drawer.is-open {
    pointer-events: none;
  }

  body.desktop-order-workspace-open .cart-drawer.is-open .drawer-backdrop {
    display: none;
  }

  body.desktop-order-workspace-open .drawer-panel {
    width: var(--desktop-cart-width);
    pointer-events: auto;
    border-left: 1px solid rgba(248, 180, 81, 0.22);
    box-shadow: -24px 0 70px -50px rgba(0, 0, 0, 0.95);
  }

  body.desktop-order-workspace-open .menu-section {
    position: fixed;
    z-index: 61;
    top: 5.1rem;
    bottom: 0.9rem;
    left: 1rem;
    right: calc(var(--desktop-cart-width) + 1.85rem);
    width: auto;
    margin: 0;
    padding: 1rem;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(248, 180, 81, 0.22);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 245, 226, 0.07), rgba(255, 245, 226, 0.025)),
      rgba(16, 12, 10, 0.97);
    box-shadow: 0 28px 80px -46px rgba(0, 0, 0, 0.95);
  }

  body.desktop-order-workspace-open .menu-section .section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.28rem;
    align-items: start;
    margin-bottom: 0.75rem;
  }

  body.desktop-order-workspace-open .menu-close-button {
    display: none;
  }

  body.desktop-order-workspace-open .menu-section .section-heading h2 {
    font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  }

  body.desktop-order-workspace-open .menu-section .section-heading p[data-menu-helper] {
    max-width: 44rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  body.desktop-order-workspace-open .menu-tabs {
    margin-bottom: 0.75rem;
    justify-content: flex-start;
  }

  body.desktop-order-workspace-open .menu-tabs button {
    min-width: 8.5rem;
    padding: 0.62rem 0.9rem;
  }

  body.desktop-order-workspace-open .menu-content {
    min-height: 0;
    overflow: auto;
    padding: 0 0.25rem 0.15rem 0;
    overscroll-behavior: contain;
  }

  body.desktop-order-workspace-open .product-grid.snack-grid,
  body.desktop-order-workspace-open .beverage-group .product-grid.compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body.desktop-order-workspace-open .product-grid {
    gap: 0.7rem;
  }

  body.desktop-order-workspace-open .product-card {
    min-height: 12.2rem;
  }

  body.desktop-order-workspace-open .product-main,
  body.desktop-order-workspace-open .product-bottom {
    padding-left: 0.78rem;
    padding-right: 0.78rem;
  }

  body.desktop-order-workspace-open .product-main {
    padding-top: 0.78rem;
  }

  body.desktop-order-workspace-open .product-bottom {
    padding-bottom: 0.78rem;
  }

  body.desktop-order-workspace-open .product-main h3 {
    font-size: 1.24rem;
  }
}

.menu-content.is-test-locked,
.drawer-panel.is-test-locked {
  position: relative;
  overflow: hidden;
}

.menu-content.is-test-locked > :not(.site-test-overlay),
.drawer-panel.is-test-locked > :not(.site-test-overlay) {
  filter: blur(14px);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}

.site-test-overlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(248, 180, 81, 0.2), transparent 18rem),
    rgba(12, 8, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.drawer-panel .site-test-overlay {
  inset: 0.7rem;
  border-radius: 8px;
}

.site-test-card {
  width: min(24rem, 100%);
  display: grid;
  justify-items: center;
  gap: 0.62rem;
  padding: 1.2rem;
  border: 1px solid rgba(248, 180, 81, 0.42);
  border-radius: 8px;
  background: rgba(19, 12, 8, 0.92);
  color: var(--text);
  text-align: center;
  box-shadow: 0 22px 60px -30px var(--shadow);
}

.site-test-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-test-card strong {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.site-test-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-test-card a,
.site-test-close {
  display: inline-grid;
  justify-items: center;
  gap: 0.12rem;
  width: 100%;
  border: 1px solid rgba(248, 180, 81, 0.34);
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  background: linear-gradient(135deg, #f8b451, #df7c36);
  color: #1c0d07;
  font-weight: 950;
  text-decoration: none;
}

.site-test-card a small {
  font-size: 0.72rem;
}

.site-test-close {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 980px) {
  .status-page .site-nav {
    display: none;
  }

  .status-page-shell {
    width: min(100% - 1.4rem, 44rem);
    padding-top: 1.2rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + 6rem);
  }

  .status-page-hero,
  .status-page-dashboard {
    grid-template-columns: 1fr;
  }

  .status-page-hero {
    align-items: start;
  }

  .status-page-hero-copy {
    text-align: center;
  }

  .status-page-hero-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .status-page-lookup,
  .status-page-actions {
    grid-template-columns: 1fr;
  }

  .status-page-payments header,
  .status-payment-list article {
    display: grid;
    grid-template-columns: 1fr;
  }

  .status-page-live-note {
    text-align: center;
  }

  .status-map-card,
  .status-map,
  .status-map-fallback {
    min-height: 22rem;
  }

  .status-page-dashboard {
    gap: 0.8rem;
  }

  .status-map-card {
    order: 2;
  }

  .status-live-stack {
    order: 1;
  }

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

  .status-page-step {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    align-items: center;
  }

  .status-page-step span {
    grid-row: span 2;
  }

  .status-mobile-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom) + 0.65rem);
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    border: 1px solid rgba(248, 180, 81, 0.24);
    border-radius: 8px;
    background: rgba(20, 13, 9, 0.92);
    box-shadow: 0 18px 48px -26px #000;
    backdrop-filter: blur(16px);
    animation: appMenuRise 320ms ease both;
  }

  .status-mobile-actions a {
    min-height: 4.15rem;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.2rem;
    border: 1px solid rgba(248, 180, 81, 0.18);
    border-radius: 8px;
    background: rgba(255, 244, 221, 0.06);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.1;
  }

  .status-mobile-actions a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(248, 180, 81, 0.22), rgba(223, 124, 54, 0.18));
    color: #ffd28c;
  }

  .status-mobile-actions .app-action-icon {
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #ffd28c;
    background: radial-gradient(circle, rgba(248, 180, 81, 0.2), rgba(255, 244, 221, 0.05));
  }

  .status-mobile-actions .app-action-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .status-mobile-actions .map-pin-icon {
    background: rgba(255, 244, 221, 0.09);
  }
}

@media (max-width: 640px) {
  .site-footer {
    display: grid;
    justify-items: start;
    margin-bottom: 7rem;
  }

  .site-footer nav {
    gap: 0.55rem 0.8rem;
  }

  .policy-shell {
    padding-top: 5.7rem;
  }

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

  .policy-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .policy-actions {
    display: grid;
  }

  .policy-header-action {
    display: none;
  }

  .status-header-action {
    display: none;
  }

  .status-page-header {
    justify-content: center;
  }

  .status-page-hero-copy h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .status-page-empty {
    min-height: 16rem;
    flex-direction: column;
    text-align: center;
  }

  .status-eta-card header {
    display: grid;
  }

  .status-eta-card header > strong {
    justify-self: start;
  }

  .status-route-chip {
    left: 0.65rem;
    top: 0.65rem;
    max-width: calc(100% - 1.3rem);
  }

  .status-shortcut-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
  }

  .status-shortcut-card em {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@keyframes statusBellRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-8deg) scale(1.04);
  }

  45% {
    transform: rotate(8deg) scale(1.04);
  }

  70% {
    transform: rotate(-4deg) scale(1.02);
  }
}

@keyframes appMenuRise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.mesa-online-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(248, 180, 81, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(18, 10, 7, 0.94), #080b0d 34rem),
    url("../assets/media/lanches/completao.png") center top / cover fixed;
}

body.mesa-menu-open {
  overflow: hidden;
}

body.mesa-online-page::before {
  opacity: 0.55;
}

.mesa-header {
  position: sticky;
  top: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 4.8rem;
  padding: 0.65rem max(0.9rem, env(safe-area-inset-left)) 0.65rem max(0.9rem, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(248, 180, 81, 0.2);
  background: rgba(18, 10, 7, 0.94);
  box-shadow: 0 18px 40px -32px #000;
  backdrop-filter: blur(16px);
}

.mesa-brand {
  width: 4.8rem;
  display: grid;
}

.mesa-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.mesa-header > div {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.mesa-header span,
.mesa-session-strip span,
.mesa-form-message {
  color: var(--muted);
}

.mesa-header strong {
  color: var(--text);
  font-size: 1.04rem;
}

.mesa-bag-button {
  position: relative;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 180, 81, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, #f8b451, #df7c36);
  color: #180d08;
  box-shadow: 0 18px 40px -25px rgba(248, 180, 81, 0.75);
}

.mesa-bag-button img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.mesa-bag-button strong {
  position: absolute;
  right: -0.1rem;
  top: -0.12rem;
  min-width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4dd;
  color: #180d08;
  font-size: 0.78rem;
  box-shadow: 0 10px 22px -14px #000;
}

.mesa-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 1rem, 44rem);
  margin: 0 auto;
  padding: 0.8rem 0.5rem calc(env(safe-area-inset-bottom) + 5.4rem);
}

.mesa-online-page [hidden] {
  display: none !important;
}

.mesa-setup-card,
.mesa-order-area,
.mesa-session-strip,
.mesa-product-card,
.mesa-cart-panel,
.customize-backdrop .customize-modal {
  opacity: 1;
  pointer-events: auto;
  border: 1px solid rgba(248, 180, 81, 0.2);
  background: rgba(14, 22, 27, 0.92);
  box-shadow: 0 22px 60px -44px #000;
}

.mesa-setup-card,
.mesa-order-area {
  display: grid;
  gap: 0.85rem;
  border-radius: 8px;
  padding: 0.88rem;
}

.mesa-order-area > .mesa-tabs,
.mesa-order-area > .mesa-menu-content {
  display: none;
}

.mesa-setup-card h1 {
  margin: 0;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(3rem, 14vw, 5rem);
  line-height: 0.94;
  color: var(--text);
}

.mesa-setup-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mesa-mode-grid,
.mesa-tabs,
.cart-step-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.mesa-mode-grid button,
.mesa-tabs button,
.cart-step-tabs button {
  min-height: 3.05rem;
  border: 1px solid rgba(248, 180, 81, 0.22);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.06);
  color: var(--text);
  font-weight: 950;
}

.mesa-mode-grid button.is-active,
.mesa-tabs button.is-active,
.cart-step-tabs button.is-active {
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.96), rgba(223, 124, 54, 0.96));
  color: #180d08;
}

.mesa-session-form,
.mesa-confirm-form {
  display: grid;
  gap: 0.7rem;
}

.mesa-online-page .field span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.mesa-online-page input,
.mesa-online-page select,
.mesa-online-page textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(248, 180, 81, 0.24);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 244, 221, 0.08);
  color: var(--text);
  outline: none;
}

.mesa-online-page input:focus,
.mesa-online-page select:focus,
.mesa-online-page textarea:focus {
  border-color: rgba(248, 180, 81, 0.7);
  box-shadow: 0 0 0 3px rgba(248, 180, 81, 0.12);
}

.mesa-online-page .primary-action,
.mesa-online-page .ghost-action {
  min-height: 3.25rem;
  border-radius: 8px;
  font-weight: 950;
}

.mesa-online-page .primary-action {
  background: linear-gradient(135deg, #f8b451, #f07e32);
  color: #180d08;
}

.mesa-online-page .ghost-action {
  border: 1px solid rgba(248, 180, 81, 0.24);
  background: rgba(255, 244, 221, 0.06);
  color: var(--text);
}

.mesa-online-page .full {
  width: 100%;
}

.mesa-session-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem;
  border-radius: 8px;
}

.mesa-session-strip strong {
  display: block;
  color: var(--accent-strong);
  line-height: 1.2;
}

.mesa-order-hub {
  display: grid;
  gap: 0.86rem;
  padding: 0.78rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.045);
}

.mesa-order-hub h2 {
  margin: 0.12rem 0 0;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.12;
}

.mesa-order-hub p {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.mesa-order-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mesa-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  pointer-events: none;
}

.mesa-menu-modal.is-open {
  pointer-events: auto;
}

.mesa-menu-modal .drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  transition: opacity 160ms ease;
}

.mesa-menu-modal.is-open .drawer-backdrop {
  opacity: 1;
}

.mesa-menu-panel {
  position: absolute;
  inset: max(0.7rem, env(safe-area-inset-top)) max(0.7rem, env(safe-area-inset-right)) max(0.7rem, env(safe-area-inset-bottom)) max(0.7rem, env(safe-area-inset-left));
  width: min(58rem, calc(100% - 1.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0.76rem;
  padding: 0.82rem;
  border: 1px solid rgba(248, 180, 81, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(248, 180, 81, 0.14), transparent 19rem),
    rgba(14, 22, 27, 0.98);
  box-shadow: 0 28px 80px -38px #000;
  transform: translateY(1rem) scale(0.985);
  opacity: 0;
  transition: transform 170ms ease, opacity 170ms ease;
}

.mesa-menu-modal.is-open .mesa-menu-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mesa-menu-header {
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(248, 180, 81, 0.14);
}

.mesa-menu-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.mesa-menu-header-actions .ghost-action {
  min-width: 6.8rem;
  min-height: 2.55rem;
}

.mesa-menu-header-actions strong {
  display: inline-grid;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.35rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 180, 81, 0.18);
  color: var(--accent-strong);
}

.mesa-menu-panel .mesa-menu-content {
  min-height: 0;
  overflow: auto;
  padding-right: 0.12rem;
}

.mesa-menu-content {
  display: grid;
  gap: 0.85rem;
}

.mesa-product-list {
  display: grid;
  gap: 0.7rem;
}

.mesa-beverage-group {
  display: grid;
  gap: 0.62rem;
}

.mesa-beverage-group .group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.mesa-beverage-group h3 {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1.55rem;
}

.mesa-beverage-group .group-title span {
  min-width: 2rem;
  min-height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 180, 81, 0.18);
  color: var(--accent-strong);
  font-weight: 950;
}

.mesa-product-card.product-card {
  display: grid;
  grid-template-columns: 7.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  min-height: 8.8rem;
  padding: 0.72rem;
  border-radius: 8px;
  overflow: hidden;
}

.mesa-product-card .product-photo {
  align-self: center;
  width: 7.2rem;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.06);
}

.mesa-product-card .product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mesa-product-card .product-photo-placeholder {
  display: grid;
  place-items: center;
}

.mesa-product-card .product-photo-placeholder span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 180, 81, 0.22), rgba(255, 244, 221, 0.06));
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
}

.mesa-product-card .product-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(2.8rem, auto);
  align-content: center;
  gap: 0.22rem;
}

.mesa-product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.08;
}

.mesa-product-card p {
  margin: 0;
  color: #fff7e7;
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mesa-product-card strong {
  color: var(--accent-strong);
  font-size: 1.02rem;
}

.mesa-product-card button {
  width: 100%;
  min-height: 2.78rem;
  align-self: end;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8b451, #f07e32);
  color: #180d08;
  font-weight: 950;
}

.mesa-product-card .ingredient-ervilha {
  color: #6dff89;
  text-shadow: 0 0 9px rgba(109, 255, 137, 0.32);
}

.mesa-product-card .ingredient-milho,
.mesa-product-card .ingredient-batata {
  color: #ffe05f;
  text-shadow: 0 0 9px rgba(255, 224, 95, 0.32);
}

.mesa-product-card .ingredient-calabresa,
.mesa-product-card .ingredient-bacon {
  color: #ff7a61;
  text-shadow: 0 0 9px rgba(255, 122, 97, 0.32);
}

.mesa-product-card .ingredient-costela {
  color: #d58a62;
  text-shadow: 0 0 9px rgba(213, 138, 98, 0.32);
}

.mesa-product-card .ingredient-cheddar {
  color: #ffbc38;
  text-shadow: 0 0 9px rgba(255, 188, 56, 0.38);
}

.mesa-product-card .ingredient-catupiry {
  color: #fff8df;
  text-shadow: 0 0 9px rgba(255, 248, 223, 0.42);
}

.mesa-product-card .ingredient-maionese-verde {
  color: #b8ff9a;
  text-shadow: 0 0 9px rgba(184, 255, 154, 0.38);
}

.mesa-product-card .ingredient-frango {
  color: #ffb154;
  text-shadow: 0 0 9px rgba(255, 177, 84, 0.36);
}

.mesa-product-card .ingredient-molho-caipira {
  color: #ff534b;
  text-shadow: 0 0 9px rgba(255, 83, 75, 0.34);
}

.mesa-product-card .ingredient-alface {
  color: #7dff6b;
  text-shadow: 0 0 9px rgba(125, 255, 107, 0.34);
}

.mesa-cart {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.mesa-cart.is-open {
  pointer-events: auto;
}

.mesa-cart .drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 160ms ease;
}

.mesa-cart.is-open .drawer-backdrop {
  opacity: 1;
}

.mesa-cart-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(31rem, 100%);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 0.72rem;
  padding: 0.8rem;
  transform: translateX(104%);
  transition: transform 190ms ease;
}

.mesa-cart.is-open .mesa-cart-panel {
  transform: translateX(0);
}

.mesa-cart .drawer-header {
  padding-bottom: 0.7rem;
}

.cart-step-tabs button:disabled {
  opacity: 0.45;
}

.mesa-cart .cart-items {
  min-height: 0;
  padding: 0;
  overflow: auto;
}

.mesa-cart .cart-items .empty-state {
  min-height: 18rem;
}

.mesa-cart .cart-row {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.mesa-cart .cart-row-actions {
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) repeat(2, 2.4rem) auto;
  gap: 0.42rem;
  align-items: center;
}

.mesa-cart .cart-row-actions button {
  min-height: 2.35rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.06);
  color: var(--text);
}

.mesa-cart .remove-button {
  grid-column: auto;
  color: #ffd1cc;
}

.mesa-cart .mesa-confirm-form {
  min-height: 0;
  max-height: none;
  overflow: auto;
  border-top: 0;
  padding-top: 0;
}

.mesa-cart[data-step="items"] .mesa-confirm-form,
.mesa-cart[data-step="details"] .cart-items,
.mesa-cart[data-step="details"] .mobile-next-action {
  display: none;
}

.mesa-cart[data-step="details"] .mesa-confirm-form {
  display: grid;
}

.mesa-cart[data-step="items"] [data-submit-local-order] {
  display: none;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.62rem;
}

.mesa-form-message {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.mesa-form-message[data-tone="success"] {
  color: var(--green);
}

.mesa-form-message[data-tone="error"] {
  color: #ffafa8;
}

.customize-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: end center;
  padding: max(0.65rem, env(safe-area-inset-top)) 0.65rem max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.68);
}

.customize-backdrop[hidden] {
  display: none !important;
}

.customize-backdrop.is-open {
  display: grid;
}

.customize-backdrop .customize-modal {
  position: relative;
  inset: auto !important;
  z-index: 221;
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto !important;
  transform: none;
  width: min(100%, 34rem);
  max-height: min(86vh, 42rem);
  display: grid;
  gap: 0.75rem;
  overflow: auto;
  padding: 1rem;
  border-radius: 8px;
}

.customize-close {
  position: sticky;
  top: 0;
  justify-self: end;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(248, 180, 81, 0.24);
  border-radius: 50%;
  background: rgba(255, 244, 221, 0.08);
  color: var(--text);
  font-weight: 950;
}

.customize-price {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 950;
}

.customize-options {
  display: grid;
  gap: 0.72rem;
}

.customize-options section {
  display: grid;
  gap: 0.42rem;
}

.customize-options h3 {
  margin: 0;
  color: var(--accent-strong);
}

.option-row {
  min-height: 2.8rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.05);
}

.option-row input {
  width: 1.1rem;
  min-height: auto;
}

.site-chat-public {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 45;
  width: min(23rem, calc(100vw - 1.5rem));
  color: var(--text);
}

.site-chat-public.is-suggestion {
  z-index: 44;
}

.site-chat-public.is-conversation.is-open,
.site-chat-public:focus-within {
  z-index: 75;
}

.site-chat-public.is-minimized {
  z-index: 45;
}

.site-chat-public[hidden] {
  display: none;
}

.site-chat-public-pill,
.site-chat-public-panel {
  border: 1px solid rgba(248, 180, 81, 0.35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.site-chat-public-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42, 28, 14, 0.96), rgba(15, 20, 24, 0.96));
  color: var(--accent-strong);
  font-weight: 950;
}

.site-chat-public-panel {
  display: grid;
  grid-template-rows: auto minmax(8rem, 15rem) auto;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(14, 19, 23, 0.97);
  backdrop-filter: blur(18px);
}

.site-chat-public-panel header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.78rem;
  border-bottom: 1px solid rgba(248, 180, 81, 0.18);
}

.site-chat-public-panel header strong,
.site-chat-public-panel header small {
  display: block;
}

.site-chat-public-panel header small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-chat-public-panel header button {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(248, 180, 81, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 950;
}

.site-chat-public-avatar {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(248, 180, 81, 0.16);
  color: var(--accent-strong);
  font-weight: 950;
}

.site-chat-public-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-chat-public-messages {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0.72rem;
  overflow: auto;
}

.site-chat-public-message {
  max-width: 88%;
  display: grid;
  gap: 0.18rem;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(248, 180, 81, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.site-chat-public-message.operator {
  justify-self: start;
  background: rgba(248, 180, 81, 0.12);
}

.site-chat-public-message.visitor {
  justify-self: end;
  border-color: rgba(112, 211, 166, 0.26);
  background: rgba(112, 211, 166, 0.12);
}

.site-chat-public-message span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.site-chat-public-message p,
.site-chat-public-empty {
  margin: 0;
  line-height: 1.35;
}

.site-chat-public-empty {
  color: var(--muted);
  text-align: center;
  align-self: center;
}

.site-chat-public-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  padding: 0.72rem;
  border-top: 1px solid rgba(248, 180, 81, 0.18);
}

.site-chat-public-form input {
  min-height: 2.75rem;
  border: 1px solid rgba(248, 180, 81, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.55rem 0.7rem;
}

.site-chat-public-form button {
  min-height: 2.75rem;
  min-width: 5.2rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffc469, #f18232);
  color: #1d1208;
  padding: 0 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.site-chat-suggestion-panel {
  grid-template-rows: auto auto;
}

.site-chat-suggestion-form {
  display: grid;
  gap: 0.55rem;
  padding: 0.72rem;
}

.site-chat-suggestion-form textarea {
  min-height: 5.4rem;
  resize: vertical;
  border: 1px solid rgba(248, 180, 81, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.68rem 0.74rem;
  font: inherit;
}

.site-chat-suggestion-form button {
  min-height: 2.8rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffc469, #f18232);
  color: #1d1208;
  font-weight: 950;
  white-space: nowrap;
}

.bag-toast {
  z-index: 110;
}

.payment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0, rgba(248, 180, 81, 0.18), transparent 22rem),
    #0b0907;
}

.payment-page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
}

.payment-panel {
  width: min(100%, 43rem);
  display: grid;
  gap: 0.9rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border: 1px solid rgba(248, 180, 81, 0.2);
  border-radius: 12px;
  background: rgba(13, 19, 24, 0.94);
  box-shadow: 0 30px 90px -62px #000;
}

.payment-panel-header {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.payment-panel-header .brand-mark {
  width: 5.2rem;
}

.payment-panel-header h1 {
  margin: 0.12rem 0 0;
  color: var(--cream);
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.7rem, 8vw, 4.5rem);
  line-height: 0.88;
}

.payment-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 0.82rem;
  border: 1px solid rgba(255, 244, 221, 0.1);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.055);
}

.payment-summary div,
.payment-summary:not(:has(div)) {
  display: grid;
  gap: 0.12rem;
}

.payment-summary span,
.payment-summary small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.payment-summary strong {
  color: var(--text);
  font-size: 1.05rem;
}

.payment-summary div:last-child {
  text-align: right;
}

.payment-summary div:last-child strong {
  color: var(--accent-strong);
  font-size: 1.45rem;
}

.payment-brick-shell {
  min-height: 12rem;
  overflow: hidden;
  border-radius: 8px;
}

.payment-result {
  display: grid;
  gap: 0.58rem;
  padding: 0.78rem;
  border: 1px solid rgba(117, 205, 184, 0.26);
  border-radius: 8px;
  background: rgba(117, 205, 184, 0.1);
}

.payment-result[hidden] {
  display: none !important;
}

.payment-result[data-tone="error"] {
  border-color: rgba(224, 123, 115, 0.4);
  background: rgba(224, 123, 115, 0.12);
}

.payment-result[data-tone="pending"] {
  border-color: rgba(248, 180, 81, 0.3);
  background: rgba(248, 180, 81, 0.1);
}

.payment-result strong {
  color: var(--text);
  font-size: 1rem;
}

.payment-result span {
  color: var(--muted);
  font-weight: 820;
}

.payment-result textarea {
  min-height: 5.5rem;
  font-size: 0.78rem;
}

.payment-pix-qr {
  width: min(16rem, 100%);
  border-radius: 8px;
  background: #fff;
  padding: 0.35rem;
}

.payment-panel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.payment-panel-actions .copy-action {
  min-height: 2.6rem;
  border-radius: 8px;
  text-align: center;
}

@media (min-width: 820px) {
  .mesa-shell {
    width: min(100% - 2rem, 58rem);
  }

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

  .mesa-product-card.product-card {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

  .mesa-product-card .product-photo {
    width: 8rem;
  }
}

@media (max-width: 560px) {
  .mesa-header {
    min-height: 4.65rem;
  }

  .mesa-brand {
    width: 4.35rem;
  }

  .mesa-header > div {
    display: none;
  }

  .mesa-product-card.product-card {
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 0.7rem;
    min-height: 8.4rem;
  }

  .mesa-product-card .product-photo {
    width: 7rem;
  }

  .mesa-product-card h3 {
    font-size: 1.12rem;
  }

  .mesa-cart-panel {
    width: 100%;
  }

  .mesa-order-actions {
    grid-template-columns: 1fr;
  }

  .mesa-menu-panel {
    inset: max(0.55rem, env(safe-area-inset-top)) max(0.45rem, env(safe-area-inset-right)) max(0.45rem, env(safe-area-inset-bottom)) max(0.45rem, env(safe-area-inset-left));
    width: calc(100% - 0.9rem);
    padding: 0.65rem;
  }

  .mesa-cart .cart-row-actions {
    grid-template-columns: minmax(0, 1fr) 2.4rem 2.4rem;
  }

  .mesa-cart .remove-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-chat-public {
    right: max(0.55rem, env(safe-area-inset-right));
    bottom: calc(5.9rem + env(safe-area-inset-bottom));
    z-index: 45;
    width: calc(100vw - 1.1rem);
  }

  .site-chat-public-panel {
    grid-template-rows: auto minmax(8rem, 13rem) auto;
  }

  .payment-summary,
  .payment-panel-actions {
    grid-template-columns: 1fr;
  }

  .payment-summary div:last-child {
    text-align: left;
  }
}

@media (max-width: 980px) {
  body.cart-has-items:not(.cart-open) .bag-toast {
    display: none;
  }

  body.cart-has-items:not(.cart-open) .floating-cart {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom) + 6.35rem);
    z-index: 57;
    width: auto;
    min-width: 0;
    grid-template-columns: 3.35rem minmax(0, 1fr) 2.35rem;
  }

  body.cart-open .floating-cart {
    display: none;
  }
}

@media (max-width: 640px) {
  body.cart-has-items:not(.cart-open) .floating-cart {
    display: grid;
    padding: 0.44rem 0.64rem 0.44rem 0.44rem;
  }
}

@media (max-width: 980px) {
  body.cart-open .site-chat-public,
  body.menu-workspace-open .site-chat-public {
    display: none;
    pointer-events: none;
  }

  body.menu-workspace-open.cart-has-items:not(.cart-open) .floating-cart {
    bottom: calc(env(safe-area-inset-bottom) + 0.7rem);
    z-index: 58;
  }

  body.menu-workspace-open.cart-has-items:not(.cart-open) .menu-content {
    padding-bottom: calc(6.9rem + env(safe-area-inset-bottom));
  }
}

.site-confirm-action {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.06rem;
  line-height: 1.04;
  text-align: center;
}

.site-confirm-action strong {
  font-size: 0.95rem;
}

.site-confirm-action small {
  color: rgba(6, 17, 15, 0.75);
  font-size: 0.72rem;
  font-weight: 950;
}

.cart-drawer[data-step="details"] .drawer-footer {
  display: grid;
  grid-template-columns: 1fr;
}

.cart-drawer[data-step="details"] .drawer-footer div,
.cart-drawer[data-step="details"] .drawer-footer .summary-action,
.cart-drawer[data-step="details"] .drawer-footer .site-confirm-action {
  grid-column: 1 / -1;
}
