:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-soft: #100d0a;
  --surface: rgba(23, 18, 14, 0.92);
  --surface-strong: #18120e;
  --surface-light: #211912;
  --gold: #d6a95f;
  --gold-light: #f4d494;
  --gold-dark: #8d6633;
  --text: #f8f2e8;
  --muted: #b8ad9f;
  --line: rgba(214, 169, 95, 0.19);
  --line-strong: rgba(214, 169, 95, 0.38);
  --success: #25d366;
  --danger: #ff8d7d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 15px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(105px + env(safe-area-inset-top));
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 12%, rgba(117, 48, 21, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 52%, rgba(126, 87, 35, 0.12), transparent 32rem),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
  touch-action: manipulation;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

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

.section-heading h2,
.story-copy h2,
.delivery-cta h2 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.45rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.98rem;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(214, 169, 95, 0.13);
  background: rgba(8, 7, 6, 0.79);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #0f0c09;
  box-shadow: 0 0 0 5px rgba(214, 169, 95, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
}

.brand-note {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #d4cabd;
  font-size: 0.9rem;
  font-weight: 720;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.language-button {
  display: grid;
  min-width: 34px;
  height: 34px;
  padding: 0 7px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-button:hover {
  color: var(--text);
}

.language-button.is-active {
  color: #1a1108;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 18px rgba(198, 142, 67, 0.18);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 9px 8px 16px;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(214, 169, 95, 0.07);
  cursor: pointer;
  transition: 180ms ease;
}

.header-cart:hover {
  border-color: var(--gold);
  background: rgba(214, 169, 95, 0.13);
  transform: translateY(-1px);
}

.header-cart-copy {
  display: grid;
  text-align: left;
}

.header-cart-copy strong {
  font-size: 0.86rem;
}

.header-cart-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.header-cart-count {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #181008;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  font-size: 0.83rem;
  font-weight: 900;
}

.hero {
  position: relative;
  padding: clamp(52px, 7vw, 100px) 0 76px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: 44%;
  width: 56rem;
  height: 56rem;
  border: 1px solid rgba(214, 169, 95, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 7rem rgba(214, 169, 95, 0.018),
    0 0 0 14rem rgba(214, 169, 95, 0.012);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
}

.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7vw, 7.15rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.hero-copy h1 .hero-title-main {
  display: block;
}

.hero-copy h1 .hero-title-accent {
  display: block;
  margin-top: 0.12em;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 27px 0 0;
  color: #c9beb0;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 850;
  cursor: pointer;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #1b1209;
  background: linear-gradient(145deg, #f5d99c, #c68e43);
  box-shadow: 0 14px 38px rgba(195, 139, 61, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(214, 169, 95, 0.08);
}

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

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  aspect-ratio: 1.15;
  border-radius: 180px 28px 28px 28px;
}

.hero-photo-main img {
  object-position: center 20%;
}

.hero-photo-small {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 43%;
  aspect-ratio: 1.12;
  border-radius: 24px 90px 24px 24px;
}

.hero-photo-small img {
  object-position: center 12%;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 25px;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 1px solid rgba(244, 212, 148, 0.45);
  border-radius: 50%;
  text-align: center;
  background: rgba(12, 9, 7, 0.84);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.hero-badge strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-badge span {
  display: block;
  max-width: 90px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-section {
  padding: 54px 0 100px;
}

.menu-tools {
  position: sticky;
  z-index: 20;
  top: calc(86px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 12px;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 9, 7, 0.87);
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.category-filters {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 1px;
  gap: 6px;
  scrollbar-width: none;
}

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

.filter-button {
  min-height: 44px;
  padding: 0 17px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #c7bbae;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #1a1108;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
}

.menu-search {
  position: relative;
  width: min(100%, 260px);
  flex: 0 0 auto;
}

.menu-search .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.menu-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px 0 43px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.83rem;
}

.menu-search input::placeholder {
  color: #81776c;
}

.menu-search input:focus {
  border-color: var(--gold-dark);
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.03), transparent 35%),
    var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.17);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  z-index: 8;
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.08;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0d0b09;
  cursor: pointer;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
}

.product-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(244, 212, 148, 0.04), transparent 42%, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.018);
}

.product-category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 11px;
  color: #e7d8c4;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content {
  display: flex;
  min-height: 225px;
  padding: 23px;
  flex: 1;
  flex-direction: column;
}

.product-title-button {
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.product-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
  transition: color 160ms ease;
}

.product-title-button:hover .product-title {
  color: var(--gold-light);
}

.product-description {
  display: -webkit-box;
  margin: 12px 0 20px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-info-row {
  display: flex;
  min-height: 32px;
  margin: -7px 0 18px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-weight {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(214, 169, 95, 0.07);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.allergen-disclosure {
  position: relative;
  width: fit-content;
}

.allergen-trigger {
  display: inline-flex;
  min-height: 32px;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(214, 169, 95, 0.3);
  border-radius: 999px;
  color: #e8d6bc;
  background: rgba(214, 169, 95, 0.055);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.allergen-trigger svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.allergen-trigger:hover,
.allergen-trigger:focus-visible,
.allergen-disclosure.is-open .allergen-trigger {
  border-color: rgba(244, 212, 148, 0.62);
  color: #fff4df;
  background: rgba(214, 169, 95, 0.12);
  outline: none;
}

.allergen-popover {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  left: 0;
  width: min(315px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(214, 169, 95, 0.34);
  border-radius: 16px;
  color: var(--text);
  visibility: hidden;
  opacity: 0;
  background:
    linear-gradient(145deg, rgba(214, 169, 95, 0.075), transparent 42%),
    #19120e;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.54);
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}

.allergen-disclosure.is-open .allergen-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.allergen-popover-header {
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.allergen-popover-header strong {
  color: #f5e7d2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.allergen-close {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.allergen-close:hover,
.allergen-close:focus-visible {
  border-color: var(--line-strong);
  color: var(--text);
  outline: none;
}

.allergen-close .icon {
  width: 14px;
  height: 14px;
}

.allergen-group + .allergen-group {
  margin-top: 12px;
}

.allergen-label {
  display: block;
  margin-bottom: 7px;
  color: #b9aa98;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.allergen-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.allergen-chip {
  display: inline-flex;
  min-height: 27px;
  padding: 5px 9px;
  align-items: center;
  border: 1px solid rgba(220, 139, 96, 0.36);
  border-radius: 999px;
  color: #ffd9c3;
  background: rgba(180, 82, 43, 0.12);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.15;
}

.allergen-chips-muted .allergen-chip {
  border-color: rgba(214, 169, 95, 0.27);
  color: #e5cfaa;
  background: rgba(214, 169, 95, 0.07);
}

.allergen-empty,
.allergen-disclaimer {
  margin: 0;
  color: #d5c7b6;
  font-size: 0.73rem;
  line-height: 1.48;
}

.allergen-disclaimer {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #938576;
  font-size: 0.66rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 14px;
}

.product-price {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  white-space: nowrap;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(214, 169, 95, 0.07);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition: 160ms ease;
}

.add-button:hover {
  color: #1a1108;
  border-color: var(--gold);
  background: var(--gold);
}

.add-button .icon {
  width: 17px;
  height: 17px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(214, 169, 95, 0.07);
}

.quantity-control button {
  display: grid;
  width: 44px;
  height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-control button:hover {
  color: #1a1108;
  background: var(--gold);
}

.quantity-control span {
  min-width: 30px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 68px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
}

.empty-products strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.story-section {
  padding: 25px 0 112px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.story-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #0b0907;
  --story-image: url("images/page-16.jpg");
}

.story-image::before {
  position: absolute;
  inset: -24px;
  content: "";
  opacity: 0.28;
  background: var(--story-image) center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.05);
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
}

.story-copy {
  display: flex;
  padding: clamp(38px, 6vw, 78px);
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.story-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.steps {
  display: grid;
  margin-top: 34px;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 20px 0;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.step-number {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.step strong {
  display: block;
  font-size: 0.94rem;
}

.step p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.delivery-section {
  padding-bottom: 110px;
}

.delivery-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  gap: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(112, 55, 20, 0.34), transparent 55%),
    #17110d;
}

.delivery-cta::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(214, 169, 95, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgba(214, 169, 95, 0.025);
}

.delivery-cta h2 {
  max-width: 690px;
  font-size: clamp(2.3rem, 4.3vw, 4.7rem);
}

.delivery-cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
}

.delivery-cta .button {
  position: relative;
  z-index: 2;
  min-width: 215px;
}

.site-footer {
  padding: 38px 0 max(38px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(5, 4, 3, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.77rem;
}

.footer-link {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
}

.overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  transition: 220ms ease;
}

.overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 520px);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
  background: #100c09;
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.product-modal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.drawer-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.close-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.close-button:hover {
  border-color: var(--gold);
}

.drawer-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 26px 30px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 10px;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
}

.cart-item-image {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 11px;
  background: #090806;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 17%;
}

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

.cart-item-title {
  margin: 1px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.84rem;
  white-space: nowrap;
}

.cart-item-weight {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  gap: 10px;
}

.cart-item-price {
  color: var(--gold-light);
  font-size: 0.86rem;
  white-space: nowrap;
}

.cart-item .quantity-control {
  height: 38px;
}

.cart-item .quantity-control button {
  width: 36px;
}

.cart-item .quantity-control span {
  min-width: 26px;
  font-size: 0.75rem;
}

.empty-cart {
  padding: 50px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--muted);
}

.empty-cart-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-light);
}

.empty-cart strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.checkout-form {
  display: grid;
  margin-top: 26px;
  gap: 13px;
}

.checkout-form-title {
  margin: 0 0 2px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 7px;
  color: #d5cabd;
  font-size: 0.76rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
}

.field input {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 82px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
}

.field.is-invalid {
  color: var(--danger);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 141, 125, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #73695e;
}

.drawer-footer {
  padding: 18px 26px max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #100c09;
}

.drawer-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 15px;
}

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

.drawer-total strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.whatsapp-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  color: #061b0e;
  background: linear-gradient(145deg, #5ce58a, var(--success));
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.17);
}

.whatsapp-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.checkout-note {
  margin: 10px 0 0;
  color: #766d63;
  text-align: center;
  font-size: 0.68rem;
}

.product-modal {
  position: fixed;
  z-index: 95;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), 980px);
  height: min(760px, calc(100vh - 32px));
  height: min(760px, calc(100dvh - 32px));
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  overflow: hidden;
  visibility: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  opacity: 0;
  background: #120e0b;
  box-shadow: var(--shadow);
  transform: translate(-50%, -46%) scale(0.97);
  transition: 220ms ease;
}

.product-modal.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-image {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  place-items: center;
  background: #090705;
  --modal-image: none;
}

.product-modal-image::before {
  position: absolute;
  inset: -30px;
  content: "";
  opacity: 0.24;
  background: var(--modal-image) center / cover no-repeat;
  filter: blur(24px) saturate(1.12);
  transform: scale(1.08);
}

.product-modal-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 46%, transparent 0 48%, rgba(9, 7, 5, 0.42) 100%),
    linear-gradient(180deg, rgba(244, 212, 148, 0.08), transparent 32%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.product-modal-image img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  object-fit: contain;
  object-position: center;
}

.product-modal.is-compact-image .product-modal-image img {
  border-radius: 18px;
  object-fit: contain;
}

.product-modal-copy {
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: 38px 38px 30px;
  grid-template-rows: minmax(0, 1fr) auto;
  border-left: 1px solid var(--line);
}

.product-modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  color: var(--text);
  background: rgba(10, 8, 6, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-modal-details {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 6px 24px 0;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.modal-category {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-modal-copy h2 {
  padding-right: 42px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.modal-weight {
  width: fit-content;
  margin: 16px 0 0;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(214, 169, 95, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
}

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

.modal-description {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

#productModalAllergens {
  margin-top: 18px;
}

.product-modal .allergen-popover {
  position: relative;
  top: auto;
  left: auto;
  display: none;
  width: min(100%, 430px);
  margin-top: 10px;
  transform: none;
}

.product-modal .allergen-disclosure.is-open .allergen-popover {
  display: block;
  transform: none;
}

.modal-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  gap: 18px;
  border-top: 1px solid var(--line);
  background: #120e0b;
}

.modal-price {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.mobile-cart-bar {
  position: fixed;
  z-index: 48;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  min-height: 58px;
  padding: 7px 8px 7px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(244, 212, 148, 0.34);
  border-radius: 999px;
  background: rgba(26, 19, 13, 0.95);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transform: translateY(110px);
  transition: transform 240ms ease;
}

.mobile-cart-bar.is-visible {
  transform: translateY(0);
}

.mobile-cart-bar:disabled {
  pointer-events: none;
}

.mobile-cart-copy {
  display: grid;
  text-align: left;
}

.mobile-cart-copy strong {
  font-size: 0.85rem;
}

.mobile-cart-copy span {
  color: var(--muted);
  font-size: 0.71rem;
}

.mobile-cart-total {
  display: grid;
  min-height: 43px;
  padding: 0 17px;
  place-items: center;
  border-radius: 999px;
  color: #1a1108;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  font-size: 0.83rem;
  font-weight: 900;
}

.toast {
  position: fixed;
  z-index: 120;
  bottom: 28px;
  left: 50%;
  visibility: hidden;
  padding: 13px 19px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  opacity: 0;
  color: #191108;
  background: var(--gold-light);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  font-size: 0.8rem;
  font-weight: 850;
  transform: translate(-50%, 18px);
  transition: 180ms ease;
}

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

.chopstick-cursor,
.chopstick-tap {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.68));
}

.chopstick-cursor {
  display: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  transition: opacity 100ms ease;
}

.chopstick-cursor.is-visible {
  opacity: 1;
}

.chopstick-rod {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 27px;
  border: 1px solid rgba(91, 48, 16, 0.58);
  border-radius: 4px 4px 1px 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 38%),
    linear-gradient(180deg, #f4d28b 0%, #bd7935 58%, #713a18 100%);
  box-shadow: inset -1px 0 rgba(74, 32, 9, 0.32);
  transform-origin: 50% 100%;
  transition: transform 100ms ease, height 100ms ease;
}

.chopstick-rod-one {
  left: 0;
  transform: rotate(36deg);
}

.chopstick-rod-two {
  bottom: 1px;
  left: 4px;
  transform: rotate(44deg);
}

.chopstick-cursor.is-active .chopstick-rod-one,
.chopstick-cursor.is-pressed .chopstick-rod-one {
  transform: rotate(39deg);
}

.chopstick-cursor.is-active .chopstick-rod-two,
.chopstick-cursor.is-pressed .chopstick-rod-two {
  transform: rotate(41deg);
}

.chopstick-cursor.is-pressed .chopstick-rod {
  height: 24px;
}

.chopstick-tap {
  display: block;
  opacity: 0;
  transform: translate(-2px, -27px);
  animation: chopstick-tap 560ms ease-out forwards;
}

.chopstick-tap .chopstick-rod-one {
  animation: chopstick-tap-one 560ms ease-out forwards;
}

.chopstick-tap .chopstick-rod-two {
  animation: chopstick-tap-two 560ms ease-out forwards;
}

@keyframes chopstick-tap {
  0% {
    opacity: 0;
    transform: translate(-2px, -23px) scale(0.78);
  }
  24% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-2px, -31px) scale(1.04);
  }
}

@keyframes chopstick-tap-one {
  0%,
  100% {
    transform: rotate(34deg);
  }
  45% {
    transform: rotate(39deg);
  }
}

@keyframes chopstick-tap-two {
  0%,
  100% {
    transform: rotate(46deg);
  }
  45% {
    transform: rotate(41deg);
  }
}

.noscript-message {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  left: 14px;
  max-width: 680px;
  margin-inline: auto;
  padding: 15px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  text-align: center;
  background: #18120e;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .allergen-disclosure:hover .allergen-popover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .product-modal .allergen-disclosure:hover .allergen-popover {
    display: block;
    transform: none;
  }

  body.has-chopstick-cursor,
  body.has-chopstick-cursor * {
    cursor: none !important;
  }

  .chopstick-cursor {
    display: block;
  }
}

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

@media (max-width: 1080px) {
  .header-inner {
    gap: 24px;
  }

  .main-nav {
    gap: 20px;
  }

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

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

  .hero-photo-main {
    height: auto;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .main-nav,
  .header-cart-copy {
    display: none;
  }

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

  .header-cart {
    min-width: 48px;
    padding: 7px;
    gap: 0;
  }

  .hero {
    padding-top: 45px;
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 550px;
    margin-inline: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .menu-tools {
    top: calc(76px + env(safe-area-inset-top));
  }

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

  .story-image {
    min-height: 460px;
    max-height: 640px;
  }

  .delivery-cta {
    grid-template-columns: 1fr;
  }

  .delivery-cta .button {
    width: max-content;
  }

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

  .footer-copy {
    display: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: calc(80px + env(safe-area-inset-top));
  }

  body.has-mobile-cart {
    padding-bottom: 86px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.14rem;
  }

  .brand-note {
    font-size: 0.59rem;
  }

  .header-cart {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-button {
    min-width: 31px;
    height: 31px;
    padding-inline: 5px;
    font-size: 0.64rem;
  }

  .hero {
    padding: 36px 0 53px;
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding-inline: 19px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 7px;
    padding-bottom: 42px;
  }

  .hero-photo {
    position: relative;
  }

  .hero-photo-main {
    width: 96%;
    height: auto;
    aspect-ratio: 1.08;
    margin-left: auto;
    border-radius: 100px 20px 20px 20px;
  }

  .hero-photo-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42%;
  }

  .hero-badge {
    right: 6px;
    bottom: 2px;
    width: 112px;
    height: 112px;
  }

  .hero-badge strong {
    font-size: 1.7rem;
  }

  .hero-badge span {
    font-size: 0.58rem;
  }

  .menu-section {
    padding: 42px 0 72px;
  }

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

  .section-heading h2,
  .story-copy h2,
  .delivery-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .section-heading > p {
    font-size: 0.87rem;
  }

  .menu-tools {
    position: relative;
    top: auto;
    display: grid;
    margin-bottom: 20px;
    padding: 9px;
    gap: 10px;
  }

  .category-filters {
    order: 2;
  }

  .menu-search {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    border-radius: 19px;
  }

  .product-media {
    aspect-ratio: 1.05;
  }

  .product-content {
    min-height: 208px;
    padding: 20px;
  }

  .product-info-row .allergen-disclosure {
    width: 100%;
  }

  .product-card .allergen-popover {
    position: relative;
    top: auto;
    left: auto;
    display: none;
    width: 100%;
    margin-top: 9px;
    transform: none;
  }

  .product-card .allergen-disclosure.is-open .allergen-popover {
    display: block;
    transform: none;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .story-section {
    padding: 0 0 76px;
  }

  .story-card {
    border-radius: 22px;
  }

  .story-image {
    min-height: 390px;
    max-height: 78vh;
  }

  .story-copy {
    padding: 34px 24px 30px;
  }

  .delivery-section {
    padding-bottom: 72px;
  }

  .delivery-cta {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .delivery-cta .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-link {
    width: fit-content;
  }

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

  .cart-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(92vh, 820px);
    height: min(92dvh, 820px);
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(105%);
  }

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

  .drawer-header {
    padding: 18px 18px 14px;
  }

  .drawer-header::before {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    content: "";
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(-50%);
  }

  .drawer-header h2 {
    font-size: 1.65rem;
  }

  .drawer-body {
    padding: 16px 18px 22px;
  }

  .drawer-footer {
    padding: 14px 18px max(15px, env(safe-area-inset-bottom));
  }

  .product-modal {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(96vh, 900px);
    height: min(96dvh, 900px);
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    transform: translate(-50%, 105%);
  }

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

  .product-modal-image {
    height: clamp(292px, 48dvh, 380px);
    min-height: 0;
    padding: 11px;
  }

  .product-modal-image img,
  .product-modal.is-compact-image .product-modal-image img {
    position: absolute;
    inset: 11px;
    display: block;
    width: calc(100% - 22px) !important;
    height: calc(100% - 22px) !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center 58% !important;
  }

  .product-modal-copy {
    min-height: 0;
    padding: 14px 20px max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-modal-details {
    padding: 9px 4px 14px 0;
  }

  .product-modal-copy h2 {
    padding-right: 44px;
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .modal-description {
    margin-top: 13px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .modal-bottom {
    padding-top: 14px;
  }

  .toast {
    bottom: 90px;
  }
}

@media (max-width: 370px) {
  .brand-note {
    display: none;
  }

  .brand-name {
    font-size: 1.02rem;
    letter-spacing: 0.12em;
  }

  .language-button {
    min-width: 29px;
    padding-inline: 4px;
  }

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

  .button {
    width: 100%;
  }

  .product-bottom {
    align-items: flex-end;
  }

  .cart-item-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .cart-drawer {
    top: 0;
    right: 0;
    bottom: auto;
    width: min(100%, 520px);
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    transform: translateX(105%);
  }

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

  .product-modal {
    top: 50%;
    bottom: auto;
    width: min(calc(100% - 28px), 850px);
    height: calc(100vh - 24px);
    height: calc(100dvh - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    border-radius: 22px;
    transform: translate(-50%, -46%) scale(0.97);
  }

  .product-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .product-modal-image {
    min-height: 100%;
    padding: 10px;
  }

  .product-modal-copy {
    padding: 20px 24px 16px;
  }

  .product-modal-details {
    padding-top: 6px;
  }
}

@media (hover: none) {
  .button:hover,
  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-media img {
    transform: none;
  }
}

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

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

  .chopstick-tap {
    display: none;
  }
}
