:root {
  --ink: #14110d;
  --ink-soft: #211c15;
  --paper: #f5f0e5;
  --paper-strong: #fffaf0;
  --orange: #ff8a16;
  --orange-dark: #df6400;
  --yellow: #ffd540;
  --green: #9ce044;
  --muted: #766e61;
  --line: rgba(20, 17, 13, 0.14);
  --white-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(32, 20, 4, 0.13);
  --radius: 24px;
  --mono: "DM Mono", monospace;
  --display: "Playfair Display", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background:
    repeating-radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.32) 0 0.5px,
      transparent 0.7px 3px
    );
  background-size: 5px 5px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 64px);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 17, 13, 0.92);
  color: white;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: start;
  color: white;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
}

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

.brand b {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 4px;
  color: #b6ad9f;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-header nav a {
  color: #a9a094;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}

.header-socials {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.header-social-link {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-social-link::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.header-social-link.instagram::before {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f9ce34);
}

.header-social-link.whatsapp::before {
  background: #25d366;
}

.header-social-link img {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  filter: invert(1);
}

.header-social-link:hover,
.header-social-link:focus-visible {
  border-color: transparent;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.header-social-link:hover::before,
.header-social-link:focus-visible::before {
  opacity: 1;
}

.tracking-trigger {
  display: inline-flex;
  min-height: 38px;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 138, 22, 0.35);
  border-radius: 999px;
  background: rgba(255, 138, 22, 0.08);
  color: #f4eade;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.tracking-trigger i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 22, 0.12);
}

.tracking-trigger:hover,
.tracking-trigger:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 138, 22, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.open-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #bdb3a4;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.open-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #746b60;
  box-shadow: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.open-status.is-open {
  color: #d5eeb7;
}

.open-status.is-open i {
  background: var(--green);
  box-shadow: 0 0 14px rgba(156, 224, 68, 0.7);
}

.open-status.is-closed {
  color: #bdb3a4;
}

.open-status.is-closed i {
  background: #8d8174;
}

.open-status.opens-today i {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 138, 22, 0.52);
}

.cart-trigger {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 11px 10px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.cart-trigger b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 9px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 30%, rgba(255, 178, 31, 0.18), transparent 31%),
    var(--ink);
  background-size: 54px 54px, 54px 54px, auto, auto;
  color: white;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(177deg, transparent 49%, var(--paper) 50%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 670px;
  padding-bottom: 40px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.club-intro h2,
.tracking-intro h2,
.order-modal h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(62px, 8.4vw, 126px);
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em,
.section-heading h2 em,
.club-intro h2 em,
.tracking-intro h2 em,
.order-modal h2 em {
  color: var(--orange);
  font-weight: 700;
}

.hero-description {
  max-width: 530px;
  margin: 38px 0 0;
  color: #bcb3a8;
  font-size: 16px;
  line-height: 1.7;
}

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

.primary-button {
  display: inline-flex;
  min-width: 180px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px 15px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.text-button {
  padding-bottom: 4px;
  border-bottom: 1px solid #6c6258;
  color: #d3c9bc;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.hero-proof {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 46px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  color: #978e84;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.hero-proof b {
  color: white;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.halo {
  position: absolute;
  top: 50%;
  left: 53%;
  border: 1px solid rgba(255, 151, 31, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo-one {
  width: 500px;
  height: 500px;
  box-shadow:
    0 0 0 70px rgba(255, 141, 22, 0.035),
    0 0 0 140px rgba(255, 141, 22, 0.018);
}

.halo-two {
  width: 330px;
  height: 330px;
  border-color: rgba(255, 218, 75, 0.5);
}

.product-stage {
  position: absolute;
  top: 50%;
  left: 53%;
  display: grid;
  width: min(42vw, 480px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #17110c;
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 0 8px rgba(255, 138, 22, 0.08);
  isolation: isolate;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.product-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 178, 77, 0.15), transparent 28%),
    linear-gradient(180deg, transparent 48%, rgba(10, 7, 4, 0.78));
  content: "";
  pointer-events: none;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.08) rotate(4deg);
}

.product-label {
  position: absolute;
  z-index: 2;
  right: 12%;
  bottom: 11%;
  display: flex;
  gap: 3px;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 9, 6, 0.62);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.23);
  color: white;
  text-align: right;
  backdrop-filter: blur(9px);
  transform: rotate(4deg);
}

.product-label small {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.13em;
}

.product-label b {
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.68);
  color: white;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  backdrop-filter: blur(12px);
}

.tag-one {
  top: 14%;
  left: 6%;
}

.tag-two {
  right: 2%;
  bottom: 20%;
}

.experience-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px clamp(24px, 7vw, 110px) 40px;
  color: #6d6459;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.experience-bar span {
  padding: 12px 18px;
  border-left: 1px solid var(--line);
}

.menu-section,
.club-section,
.how-section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 6vw, 90px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.club-intro h2,
.tracking-intro h2,
.order-modal h2 {
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.92;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.ordering-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.menu-panel {
  min-width: 0;
}

.menu-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.category-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.category-tabs button {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #756c60;
  font-size: 9px;
  font-weight: 750;
}

.category-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.search-field {
  display: flex;
  min-width: 210px;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 9px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  position: relative;
  display: grid;
  min-height: 235px;
  grid-template-columns: 1fr 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  overflow: hidden;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.menu-card:hover {
  border-color: rgba(255, 138, 22, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-card small {
  color: var(--orange-dark);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.11em;
}

.menu-card h3 {
  max-width: 210px;
  margin: 13px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.menu-card p {
  max-width: 230px;
  margin: 0;
  color: #7b7165;
  font-size: 9px;
  line-height: 1.55;
}

.menu-card-price {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 800;
}

.menu-card-visual {
  position: relative;
  display: grid;
  width: 125px;
  height: 125px;
  align-self: center;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc543, var(--orange));
  box-shadow:
    0 20px 40px rgba(223, 100, 0, 0.2),
    inset 0 -18px 28px rgba(127, 43, 0, 0.14);
  font-size: 61px;
  transform: rotate(-6deg);
}

.menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) rotate(6deg);
}

.menu-card-visual span {
  line-height: 1;
}

.menu-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.menu-card:nth-child(3n + 2) .menu-card-visual {
  background: linear-gradient(145deg, #ffd968, #ef7a0d);
  transform: rotate(7deg);
}

.menu-card:nth-child(3n) .menu-card-visual {
  background: linear-gradient(145deg, #f6edc4, #e5a135);
}

.add-item {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 18px;
  transition:
    background 170ms ease,
    transform 170ms ease;
}

.add-item:hover {
  background: var(--orange);
  color: var(--ink);
  transform: scale(1.08);
}

.no-results {
  grid-column: 1 / -1;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.cart-panel {
  position: sticky;
  top: 99px;
  min-height: 570px;
  padding: 25px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 34px 80px rgba(32, 20, 4, 0.22);
  color: white;
}

.cart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-line);
  color: #938a7d;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.cart-topline b {
  color: var(--orange);
  font-weight: 500;
}

.checkout-steps {
  display: flex;
  align-items: center;
  margin: 20px 0 22px;
}

.checkout-steps span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #3d362e;
  border-radius: 50%;
  color: #73695e;
  font-size: 8px;
}

.checkout-steps span.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
}

.checkout-steps i {
  flex: 1;
  height: 1px;
  background: #37312b;
}

.checkout-view {
  display: none;
}

.checkout-view.active {
  display: block;
  animation: reveal-view 260ms ease both;
}

@keyframes reveal-view {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.empty-cart {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-cart > div {
  filter: grayscale(0.3);
  font-size: 43px;
}

.empty-cart h3 {
  margin: 15px 0 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.empty-cart p {
  max-width: 190px;
  margin: 0;
  color: #857b70;
  font-size: 9px;
  line-height: 1.6;
}

.cart-items {
  display: flex;
  max-height: 210px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 12px;
  border: 1px solid #342e27;
  border-radius: 12px;
  background: #1a1612;
}

.cart-item h4 {
  margin: 0 0 5px;
  font-size: 10px;
}

.cart-item small {
  color: #84796d;
  font-size: 8px;
}

.item-quantity {
  display: flex;
  gap: 8px;
  align-items: center;
}

.item-quantity button {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #423a32;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 12px;
}

.item-quantity span {
  min-width: 10px;
  color: var(--orange);
  font-size: 9px;
  text-align: center;
}

.coupon-row {
  display: flex;
  gap: 6px;
  margin: 16px 0;
}

.coupon-row input {
  min-width: 0;
  flex: 1;
  padding: 10px 11px;
  border: 1px solid #3b342d;
  border-radius: 9px;
  outline: 0;
  background: #18140f;
  color: white;
  font-size: 8px;
  text-transform: uppercase;
}

.coupon-row button {
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: #302920;
  color: #d7ccbd;
  font-size: 8px;
  font-weight: 700;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 15px;
  border-top: 1px solid var(--white-line);
}

.cart-summary > div,
.payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d8377;
  font-size: 9px;
}

.cart-summary b {
  color: #d4c9bc;
  font-weight: 600;
}

.cart-summary .cart-total {
  margin-top: 6px;
  padding-top: 13px;
  border-top: 1px solid var(--white-line);
  color: white;
  font-size: 12px;
}

.cart-total b {
  color: var(--orange);
  font-size: 20px;
}

.checkout-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 15px 14px 18px;
  border: 0;
  border-radius: 11px;
  background: var(--orange);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.checkout-button span {
  font-size: 16px;
}

.view-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 18px;
}

.back-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #3b342d;
  border-radius: 50%;
  background: transparent;
  color: white;
}

.view-heading small {
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.view-heading h3 {
  margin: 3px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.checkout-form label,
.card-demo-fields label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  color: #a69c90;
  font-size: 8px;
}

.checkout-form input,
.checkout-form textarea,
.card-demo-fields input {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #3a332c;
  border-radius: 8px;
  outline: 0;
  background: #17130f;
  color: white;
  font-size: 9px;
  resize: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.card-demo-fields input:focus {
  border-color: var(--orange);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.full-field {
  grid-column: 1 / -1;
}

.delivery-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.delivery-toggle button {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 10px;
  border: 1px solid #3a332c;
  border-radius: 9px;
  background: transparent;
  color: #8f8579;
  font-size: 8px;
}

.delivery-toggle button.active {
  border-color: var(--orange);
  background: rgba(255, 138, 22, 0.11);
  color: white;
}

.delivery-toggle b {
  font-size: 15px;
}

.cep-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.cep-row button {
  height: 37px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #342c23;
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.field-message {
  min-height: 14px;
  margin: 5px 0 9px;
  color: #989084;
  font-size: 7px;
  line-height: 1.4;
}

.field-message.success {
  color: var(--green);
}

.field-message.error {
  color: #ff836c;
}

.demo-notice {
  margin-bottom: 13px;
  padding: 11px;
  border: 1px solid rgba(255, 183, 46, 0.24);
  border-radius: 9px;
  background: rgba(255, 144, 22, 0.08);
  color: #94897d;
  font-size: 7px;
  line-height: 1.5;
}

.demo-notice b {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-family: "DM Mono", monospace;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.payment-options button {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid #3b342c;
  border-radius: 10px;
  background: transparent;
  color: white;
  text-align: left;
}

.payment-options button.active {
  border-color: var(--orange);
  background: rgba(255, 138, 22, 0.08);
}

.payment-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #2d271f;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.payment-options button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-options b {
  font-size: 9px;
}

.payment-options small {
  color: #81776b;
  font-size: 7px;
}

.payment-options i {
  color: var(--orange);
  font-style: normal;
}

.card-demo-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid #373029;
  border-radius: 10px;
}

.card-demo-fields > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cashback-preview {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #201b15;
}

.cashback-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #988d80;
  font-size: 8px;
}

.cashback-preview b {
  color: var(--green);
  font-size: 15px;
}

.cashback-preview small {
  display: block;
  margin-top: 4px;
  color: #73695f;
  font-size: 7px;
}

.payment-summary {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--white-line);
}

.payment-summary b {
  color: var(--orange);
  font-size: 18px;
}

.secure-note {
  margin: 9px 0 0;
  color: #6f665d;
  font-size: 7px;
  text-align: center;
}

.tracking-section {
  padding: clamp(80px, 9vw, 135px) clamp(24px, 6vw, 90px);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 138, 22, 0.12), transparent 24%),
    var(--paper-strong);
}

.tracking-shell {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  margin: 0 auto;
}

.tracking-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.tracking-form {
  display: grid;
  max-width: 460px;
  gap: 9px;
  margin-top: 34px;
}

.tracking-form > label {
  color: #756a5e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 5px;
  border: 1px solid rgba(31, 25, 19, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(46, 30, 14, 0.06);
}

.tracking-form input {
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-form button {
  min-height: 43px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.tracking-form button span {
  margin-left: 9px;
  color: var(--orange);
}

.tracking-form > small {
  min-height: 18px;
  color: #8b8075;
  font-size: 8px;
  line-height: 1.5;
}

.tracking-form > small.error {
  color: #a4382d;
}

.tracking-form > small.success {
  color: #557d27;
}

.tracking-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  background:
    radial-gradient(circle at 85% 7%, rgba(255, 138, 22, 0.2), transparent 25%),
    var(--ink);
  box-shadow: 0 35px 95px rgba(37, 24, 12, 0.22);
  color: white;
}

.tracking-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: -130px;
  border: 1px solid rgba(255, 213, 64, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.tracking-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--white-line);
}

.tracking-card-top > div {
  display: grid;
  gap: 6px;
}

.tracking-card-top span,
.tracking-next span {
  color: #81776c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.tracking-card-top b {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.tracking-card-top > strong {
  padding: 8px 11px;
  border: 1px solid rgba(255, 138, 22, 0.38);
  border-radius: 999px;
  background: rgba(255, 138, 22, 0.1);
  color: #ffd3a7;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tracking-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0 7px;
}

.tracking-meta > span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #766d63;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.tracking-meta b {
  color: #d7cec4;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0;
}

.tracking-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.tracking-timeline li {
  position: relative;
  display: grid;
  min-height: 62px;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  align-items: flex-start;
  color: #6e665d;
}

.tracking-timeline li::after {
  position: absolute;
  top: 18px;
  bottom: -3px;
  left: 6px;
  width: 1px;
  background: #39322b;
  content: "";
}

.tracking-timeline li:last-child::after {
  display: none;
}

.tracking-timeline li > i {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 3px;
  border: 2px solid #4d443b;
  border-radius: 50%;
  background: var(--ink);
}

.tracking-timeline li > div {
  display: grid;
  gap: 3px;
}

.tracking-timeline b {
  font-size: 10px;
}

.tracking-timeline small {
  font-size: 7px;
}

.tracking-timeline li.done,
.tracking-timeline li.active {
  color: #f2e9df;
}

.tracking-timeline li.done > i {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(156, 224, 68, 0.09);
}

.tracking-timeline li.done::after {
  background: rgba(156, 224, 68, 0.45);
}

.tracking-timeline li.active > i {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 138, 22, 0.11);
}

.tracking-next {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 138, 22, 0.18);
  border-radius: 12px;
  background: rgba(255, 138, 22, 0.055);
}

.tracking-next b {
  color: #e9dfd4;
  font-size: 9px;
}

.tracking-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  color: #c6bcb1;
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
}

.tracking-card > a span {
  color: #25d366;
}

.tracking-card.is-empty .tracking-timeline {
  opacity: 0.42;
}

.club-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(55px, 9vw, 135px);
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 138, 22, 0.16), transparent 25%),
    var(--ink);
  color: white;
}

.club-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0 0;
  color: #92887d;
  font-size: 12px;
  line-height: 1.75;
}

.club-balance {
  display: flex;
  max-width: 360px;
  flex-direction: column;
  margin-top: 42px;
  padding: 19px;
  border: 1px solid var(--white-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.club-balance span {
  color: #7d746a;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.club-balance b {
  margin: 7px 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 35px;
}

.club-balance small {
  color: #6e655d;
  font-size: 7px;
}

.cashback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.cashback-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--white-line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.cashback-card:hover {
  border-color: rgba(255, 138, 22, 0.62);
  background: rgba(255, 138, 22, 0.07);
  transform: translateY(-4px);
}

.cashback-card.featured::before {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  content: "SEM PLANO";
  font-family: var(--mono);
  font-size: 6px;
}

.cashback-card > span {
  color: #877d70;
  font-family: var(--mono);
  font-size: 7px;
}

.cashback-card h3 {
  margin: 10px 0 8px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
}

.cashback-card p {
  margin: auto 0 0;
  color: #8b8175;
  font-size: 9px;
  line-height: 1.6;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.plan-card:hover,
.plan-card.active {
  border-color: rgba(255, 138, 22, 0.62);
  background: rgba(255, 138, 22, 0.07);
  transform: translateY(-4px);
}

.plan-card.featured::before {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  content: "MAIS HOLY";
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.plan-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  place-items: center;
  border: 1px solid #484038;
  border-radius: 50%;
  color: var(--orange);
  font-size: 20px;
}

.plan-card > span {
  color: #877d70;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.plan-card h3 {
  margin: 8px 0 2px;
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
}

.plan-card p {
  min-height: 48px;
  margin: 10px 0 18px;
  color: #8b8175;
  font-size: 9px;
  line-height: 1.55;
}

.plan-card > b {
  margin-top: auto;
  font-size: 11px;
}

.plan-card button {
  margin-top: 16px;
  padding: 11px;
  border: 1px solid #484038;
  border-radius: 10px;
  background: transparent;
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.plan-card.active button {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.how-section {
  background: var(--paper-strong);
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.how-grid article {
  min-height: 280px;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.how-grid article:last-child {
  border-right: 1px solid var(--line);
}

.how-grid span {
  color: var(--orange-dark);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.how-grid h3 {
  margin: 80px 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.how-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 32px clamp(24px, 6vw, 90px);
  align-items: center;
  background: var(--ink);
  color: #81776c;
  font-size: 8px;
}

footer > div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: white;
  font-family: Georgia, serif;
}

footer img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

footer p {
  text-align: center;
}

footer a {
  justify-self: end;
  color: #b3a99d;
  text-decoration: none;
}

.order-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.order-modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 7, 0.78);
  backdrop-filter: blur(9px);
}

.order-modal section {
  position: relative;
  z-index: 2;
  width: min(92vw, 520px);
  max-height: 90vh;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 138, 22, 0.18), transparent 25%),
    var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  color: white;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 20px;
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
}

.order-modal h2 {
  font-size: clamp(44px, 8vw, 67px);
}

.order-modal section > p:not(.eyebrow) {
  margin: 23px 0;
  color: #9d9387;
  font-size: 10px;
  line-height: 1.7;
}

.fake-pix {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 22px 0;
  padding: 15px;
  border: 1px solid var(--white-line);
  border-radius: 14px;
}

.fake-qr {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  background:
    linear-gradient(90deg, #fff 7px, transparent 7px) 0 0 / 15px 15px,
    linear-gradient(#fff 7px, transparent 7px) 0 0 / 15px 15px,
    #16120e;
  border: 7px solid white;
}

.fake-pix span {
  color: #8f8579;
  font-size: 8px;
  line-height: 1.5;
}

.success-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.success-data span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
  border-radius: 10px;
  background: #201b15;
  color: #81766b;
  font-size: 7px;
}

.success-data b {
  color: var(--orange);
  font-size: 13px;
}

.order-modal section > button:last-child {
  width: 100%;
  margin-top: 18px;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 12px 15px;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: white;
  font-size: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  .ordering-layout {
    grid-template-columns: 1fr 350px;
  }

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

  .club-section {
    grid-template-columns: 1fr;
  }

  .tracking-shell {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    max-width: 850px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .open-status {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .header-socials {
    gap: 6px;
  }

  .header-social-link {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .tracking-trigger {
    width: 35px;
    min-height: 35px;
    justify-content: center;
    padding: 0;
  }

  .tracking-trigger span {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .product-stage {
    width: min(80vw, 400px);
  }

  .experience-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ordering-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: relative;
    top: auto;
  }

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

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  footer > div,
  footer a {
    justify-self: center;
  }
}

@media (max-width: 580px) {
  .brand > span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .cart-trigger {
    gap: 7px;
    padding: 8px 8px 8px 11px;
  }

  .header-social-link {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
  }

  .header-social-link img {
    width: 16px;
    height: 16px;
  }

  .tracking-trigger {
    width: 33px;
    min-height: 33px;
  }

  .tracking-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .tracking-form > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .tracking-form input {
    min-height: 43px;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(57px, 20vw, 88px);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 360px;
  }

  .halo-one {
    width: 350px;
    height: 350px;
  }

  .halo-two {
    width: 250px;
    height: 250px;
  }

  .experience-bar {
    padding-inline: 16px;
  }

  .experience-bar span {
    padding-inline: 8px;
    font-size: 6px;
  }

  .menu-section,
  .club-section,
  .tracking-section,
  .how-section {
    padding-inline: 18px;
  }

  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    min-width: 0;
  }

  .menu-card {
    min-height: 225px;
    grid-template-columns: 1fr 85px;
    padding: 19px;
  }

  .menu-card-visual {
    width: 105px;
    height: 105px;
    font-size: 50px;
  }

  .cart-panel {
    padding: 20px;
  }

  .plan-grid,
  .cashback-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 330px;
  }

  .cashback-card {
    min-height: 250px;
  }

  .plan-symbol {
    margin-bottom: 34px;
  }

  .how-grid article {
    min-height: 220px;
    border-right: 1px solid var(--line);
  }

  .how-grid h3 {
    margin-top: 55px;
  }
}

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

/* Cardápio organizado e personalização */

.menu-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  gap: 8px;
}

.category-tabs button {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 15, 10, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(24, 15, 10, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  transition:
    border-color 170ms ease,
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.category-tabs button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-tabs button b {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 15, 10, 0.08);
  font-family: var(--mono);
  font-size: 9px;
}

.category-tabs button:hover {
  border-color: rgba(239, 122, 13, 0.55);
  transform: translateY(-1px);
}

.category-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.category-tabs button.active b {
  background: var(--orange);
  color: var(--ink);
}

.menu-toolbar .search-field {
  width: min(100%, 380px);
  justify-self: end;
}

.active-category {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 14px 0 18px;
  padding: 22px 24px;
  border: 1px solid rgba(24, 15, 10, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 15%, rgba(239, 122, 13, 0.2), transparent 33%),
    rgba(255, 255, 255, 0.58);
}

.active-category span {
  font-family: var(--mono);
  color: var(--orange-dark);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.active-category h3 {
  margin: 7px 0 4px;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.95;
}

.active-category p {
  max-width: 560px;
  margin: 0;
  color: rgba(24, 15, 10, 0.58);
  font-size: 12px;
}

.active-category > b {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.menu-card {
  padding-bottom: 72px;
}

.add-item {
  right: 16px;
  bottom: 16px;
  width: auto;
  min-width: 104px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cart-item {
  align-items: flex-start;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy h4 {
  margin-bottom: 5px;
}

.cart-item-copy > b {
  display: block;
  margin-top: 7px;
  font-size: 12px;
}

.cart-item-options,
.cart-item-note {
  display: block;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  line-height: 1.45;
}

.cart-item-note {
  margin-top: 4px;
  color: rgba(255, 197, 67, 0.72);
}

body.modal-open {
  overflow: hidden;
}

.customizer-modal[hidden] {
  display: none;
}

.customizer-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.customizer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 5, 0.74);
  backdrop-filter: blur(12px);
}

.customizer-dialog {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  max-height: min(900px, calc(100vh - 48px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: #f6eddd;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.customizer-header {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 64px 22px 22px;
  border-bottom: 1px solid rgba(24, 15, 10, 0.1);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 197, 67, 0.3), transparent 35%),
    #fff9ef;
}

.customizer-product-image {
  display: grid;
  width: 112px;
  height: 112px;
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffc543, var(--orange));
  font-size: 46px;
}

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

.customizer-header span {
  font-family: var(--mono);
  color: var(--orange-dark);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.customizer-header h2 {
  margin: 6px 0 5px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 0.96;
}

.customizer-header p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(24, 15, 10, 0.58);
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.customizer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(24, 15, 10, 0.12);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 22px;
}

#customizerForm {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.customizer-groups {
  overflow-y: auto;
  padding: 20px 22px 8px;
}

.option-group {
  margin: 0 0 14px;
  padding: 0;
  border: 1px solid rgba(24, 15, 10, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.option-group legend {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px 11px;
}

.option-group legend span {
  display: grid;
  gap: 3px;
}

.option-group legend b {
  font-size: 13px;
}

.option-group legend small {
  color: rgba(24, 15, 10, 0.5);
  font-size: 10px;
}

.option-group legend > i {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(239, 122, 13, 0.13);
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 0 10px 10px;
}

.option-row {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(24, 15, 10, 0.09);
  border-radius: 11px;
  background: white;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.option-row:has(input:checked) {
  border-color: var(--orange);
  background: #fff7e5;
}

.option-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-row > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.option-row > span b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-row > span small {
  color: var(--orange-dark);
  font-size: 9px;
}

.option-row > i {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid rgba(24, 15, 10, 0.28);
  border-radius: 50%;
  background: white;
}

.option-row input[type="checkbox"] ~ i {
  border-radius: 5px;
}

.option-row input:checked ~ i {
  border-color: var(--orange);
  background: var(--orange);
}

.option-row input:checked ~ i::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
  transform: rotate(45deg);
}

.option-row input:focus-visible ~ i {
  box-shadow: 0 0 0 3px rgba(239, 122, 13, 0.2);
}

.customizer-note {
  display: grid;
  gap: 7px;
  margin: 0 22px 18px;
}

.customizer-note > span {
  font-size: 11px;
  font-weight: 800;
}

.customizer-note small {
  color: rgba(24, 15, 10, 0.45);
  font-weight: 500;
}

.customizer-note textarea {
  min-height: 66px;
  resize: vertical;
  border: 1px solid rgba(24, 15, 10, 0.13);
  border-radius: 12px;
  outline: none;
  background: white;
}

.customizer-note textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 122, 13, 0.12);
}

.customizer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-top: 1px solid rgba(24, 15, 10, 0.1);
  background: #fff9ef;
}

.customizer-footer > div {
  display: grid;
  gap: 2px;
}

.customizer-footer small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.customizer-footer b {
  font-size: 21px;
}

.customizer-footer button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.customizer-footer button:hover {
  background: var(--orange-dark);
}

@media (max-width: 900px) {
  .category-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .category-tabs button {
    min-width: 138px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .active-category {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .menu-toolbar .search-field {
    width: 100%;
  }

  .customizer-modal {
    padding: 0;
    place-items: end center;
  }

  .customizer-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
  }

  .customizer-header {
    grid-template-columns: 78px 1fr;
    gap: 13px;
    padding: 18px 54px 18px 16px;
  }

  .customizer-product-image {
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }

  .customizer-header p {
    display: none;
  }

  .customizer-groups {
    padding: 14px 12px 6px;
  }

  .option-list {
    grid-template-columns: 1fr;
  }

  .customizer-note {
    margin: 0 12px 12px;
  }

  .customizer-footer {
    padding: 13px 12px;
  }

  .customizer-footer button {
    min-height: 46px;
    padding: 0 15px;
  }
}

/* Rodada de conversão: hierarquia, pedido mínimo e navegação mobile */

.menu-card-meta {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-card-meta > small {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.menu-card-meta > span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(20, 17, 13, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-card-meta > span.is-customizable {
  border-color: rgba(223, 100, 0, 0.18);
  background: rgba(255, 138, 22, 0.1);
  color: #b64f00;
}

.menu-card:hover .menu-card-meta > span.is-customizable {
  border-color: rgba(223, 100, 0, 0.3);
  background: rgba(255, 138, 22, 0.16);
}

.minimum-order {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 213, 64, 0.15);
  border-radius: 13px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 138, 22, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.035);
}

.minimum-order-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.minimum-order-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.minimum-order-copy b {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 9px;
}

.minimum-order-track {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.minimum-order-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  box-shadow: 0 0 18px rgba(255, 197, 67, 0.38);
  transition: width 320ms ease;
}

.minimum-order.is-complete {
  border-color: rgba(156, 224, 68, 0.25);
  background: rgba(156, 224, 68, 0.06);
}

.minimum-order.is-complete .minimum-order-copy b {
  color: var(--green);
}

.minimum-order.is-complete .minimum-order-track i {
  background: linear-gradient(90deg, #6ebc35, var(--green));
}

.customizer-status {
  margin-top: 3px;
  color: #a25d20;
  font-family: "Manrope", sans-serif !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0 !important;
}

.customizer-status.is-complete {
  color: #4e8529;
}

.customizer-footer button {
  min-width: 188px;
  transition:
    background 170ms ease,
    opacity 170ms ease,
    transform 170ms ease;
}

.customizer-footer button:not(:disabled):active {
  transform: translateY(1px);
}

.customizer-footer button:disabled {
  cursor: not-allowed;
  background: #c9c0b4;
  color: #6d655c;
}

.mobile-cart-bar {
  display: none;
}

.mobile-cart-bar[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  body.has-mobile-cart {
    padding-bottom: 92px;
  }

  .mobile-cart-bar {
    position: fixed;
    z-index: 70;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: grid;
    min-height: 66px;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background:
      linear-gradient(115deg, rgba(255, 138, 22, 0.14), transparent 45%),
      rgba(20, 17, 13, 0.96);
    box-shadow:
      0 22px 55px rgba(20, 12, 4, 0.38),
      inset 0 1px rgba(255, 255, 255, 0.06);
    color: white;
    text-align: left;
    backdrop-filter: blur(18px);
  }

  .mobile-cart-quantity {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--orange);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-cart-bar > span:nth-child(2) {
    display: grid;
    gap: 2px;
  }

  .mobile-cart-bar small {
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .mobile-cart-bar b {
    font-size: 14px;
  }

  .mobile-cart-bar strong {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-radius: 12px;
    background: white;
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
  }

  .mobile-cart-bar strong i {
    color: var(--orange-dark);
    font-size: 15px;
    font-style: normal;
  }
}

@media (max-width: 620px) {
  .menu-card-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
  }

  .menu-card-meta > span {
    min-height: 21px;
    padding: 0 7px;
  }

  .customizer-footer {
    align-items: stretch;
  }

  .customizer-footer > div {
    flex: 1;
  }

  .customizer-footer button {
    min-width: 144px;
  }

  .mobile-cart-bar {
    grid-template-columns: 34px 1fr auto;
    gap: 9px;
    border-radius: 16px;
  }

  .mobile-cart-quantity {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .mobile-cart-bar strong {
    min-height: 40px;
    padding: 0 11px;
  }

  .mobile-cart-bar strong i {
    display: none;
  }
}

@media (max-width: 390px) {
  .mobile-cart-bar strong {
    font-size: 0;
  }

  .mobile-cart-bar strong::after {
    content: "Ver";
    font-size: 10px;
  }

  .customizer-status {
    max-width: 142px;
  }
}

/* Finalização comercial: edição do carrinho e presença da loja */

.edit-cart-item {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 197, 67, 0.3);
  background: transparent;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.7;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.edit-cart-item:hover {
  border-color: var(--yellow);
  color: white;
}

.visit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(55px, 9vw, 130px);
  padding: clamp(84px, 11vw, 150px) clamp(24px, 6vw, 90px);
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 138, 22, 0.13), transparent 28%),
    linear-gradient(145deg, #1b1611, #100d0a);
  color: white;
  overflow: hidden;
}

.visit-section::before {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 213, 64, 0.1);
  border-radius: 50%;
  content: "";
}

.visit-copy,
.visit-rating {
  position: relative;
  z-index: 1;
}

.visit-copy h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 6.5vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.visit-copy h2 em {
  color: var(--orange);
  font-weight: 700;
}

.visit-description {
  max-width: 560px;
  margin: 30px 0 0;
  color: #a69c90;
  font-size: 13px;
  line-height: 1.75;
}

.visit-details {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.visit-details article {
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid var(--white-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.visit-details span,
.visit-rating > span,
.visit-rating > div:last-child span {
  color: #776e65;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.visit-details b {
  font-size: 12px;
}

.visit-details small {
  color: #8f857a;
  font-size: 9px;
  line-height: 1.55;
}

.visit-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.visit-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 15px;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  color: #ded7cf;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.visit-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  transform: translateY(-2px);
}

.visit-action.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.visit-action.primary:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.visit-action-social {
  min-width: 174px;
}

.visit-action-content {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.visit-action-content > img {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  filter: invert(1);
}

.visit-action-content > span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.visit-action-content b {
  color: white;
  font-size: 9px;
}

.visit-action-content small {
  color: #9b9186;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
}

.visit-action > i {
  color: #81776c;
  font-style: normal;
}

.visit-action-social.instagram:hover {
  border-color: rgba(225, 48, 108, 0.58);
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.16),
    rgba(225, 48, 108, 0.12)
  );
}

.visit-action-social.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.11);
}

.visit-rating {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  border: 1px solid rgba(255, 213, 64, 0.16);
  border-radius: 50% 50% 28px 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 172, 48, 0.19), transparent 34%),
    rgba(255, 255, 255, 0.035);
  text-align: center;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 35px 80px rgba(0, 0, 0, 0.2);
}

.visit-rating strong {
  margin: 10px 0 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(82px, 9vw, 126px);
  line-height: 0.86;
}

.visit-stars {
  margin-top: 16px;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.visit-rating > p {
  max-width: 260px;
  margin: 23px auto 0;
  color: #958b80;
  font-size: 10px;
  line-height: 1.65;
}

.visit-rating > div:last-child {
  display: flex;
  min-width: 190px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
}

.visit-rating > div:last-child b {
  color: white;
  font-size: 13px;
}

footer {
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) auto;
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand > div {
  display: grid;
  gap: 4px;
}

.footer-brand span {
  font-family: var(--display);
  font-size: 12px;
}

.footer-brand small {
  color: #756c62;
  font-family: var(--mono);
  font-size: 7px;
}

footer .footer-copy {
  display: grid;
  gap: 5px;
  color: #81776c;
  font-family: "Manrope", sans-serif;
}

.footer-copy p {
  margin: 0;
  color: #a3998d;
  font-size: 9px;
}

.footer-copy small {
  font-size: 7px;
}

footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

footer nav a {
  color: #9e9488;
  font-size: 8px;
  white-space: nowrap;
  transition: color 160ms ease;
}

footer nav a:hover {
  color: var(--yellow);
}

@media (max-width: 1000px) {
  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-rating {
    min-height: 340px;
    border-radius: 26px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > div,
  footer a {
    justify-self: start;
  }

  footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .visit-details {
    grid-template-columns: 1fr;
  }

  .visit-action {
    width: 100%;
  }

  .visit-rating {
    min-height: 320px;
    padding: 32px 22px;
  }

  footer,
  footer .footer-copy,
  footer nav {
    text-align: center;
  }

  footer > div,
  footer a {
    justify-self: center;
  }

  footer nav {
    justify-content: center;
  }
}

/* Resiliência e acessibilidade */

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.cart-item-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.cart-item-actions .edit-cart-item {
  margin-top: 0;
}

.remove-cart-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.7;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.remove-cart-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 9vw, 130px);
  padding: clamp(84px, 11vw, 150px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 5% 12%, rgba(255, 213, 64, 0.13), transparent 24%),
    #f8f3e9;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.faq-intro h2 em {
  color: var(--orange-dark);
  font-weight: 700;
}

.faq-intro > p:last-child {
  max-width: 450px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 88px;
  grid-template-columns: 32px 1fr 34px;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 8px;
}

.faq-list summary > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 17px;
  font-style: normal;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.faq-list details[open] summary > i {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 670px;
  margin: -5px 50px 30px 48px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .faq-list summary {
    min-height: 78px;
    grid-template-columns: 24px 1fr 30px;
    gap: 10px;
    font-size: 12px;
  }

  .faq-list summary > i {
    width: 30px;
    height: 30px;
  }

  .faq-list details > p {
    margin: -2px 40px 26px 34px;
  }
}
