:root {
  --white: #ffffff;
  --cream: #ffffff;
  --paper: #ffffff;
  --soft: #f2f2f2;
  --green: #2f3e36;
  --green-dark: #1f2b25;
  --terracotta: #b65a45;
  --salvia: #7a8f7b;
  --rose: #e8afa6;
  --taupe: #a67d65;
  --wine: var(--green);
  --wine-dark: var(--green-dark);
  --olive: var(--terracotta);
  --gold: var(--taupe);
  --ink: #1d2520;
  --muted: #68716c;
  --line: rgba(47, 62, 54, 0.13);
  --shadow: 0 20px 52px rgba(31, 43, 37, 0.11);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.88)),
    radial-gradient(circle at top left, rgba(122, 143, 123, 0.13), transparent 28rem);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(47, 62, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 62, 54, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, 1180px) minmax(1rem, 1fr);
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(47, 62, 54, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header > * {
  grid-row: 1;
}

.brand {
  grid-column: 2;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  text-decoration: none;
}

.brand.has-logo {
  min-width: 150px;
}

.brand-picture {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(136px, 32vw, 220px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(182, 90, 69, 0.36);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--paper);
  overflow: hidden;
}

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

.brand strong {
  display: block;
  overflow: hidden;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  margin-left: auto;
  justify-self: end;
  padding-right: 10.5rem;
}

.site-nav a {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.header-actions {
  grid-column: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
  margin-right: 2.5rem;
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 0.78rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--wine);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: clamp(2.2rem, 8vw, 5rem) clamp(1rem, 4vw, 3rem) 1.4rem;
}

.hero-content,
.section-heading,
.final-cta {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  color: var(--wine-dark);
  font-size: clamp(2.55rem, 11.4vw, 6.8rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0.8rem;
  color: var(--wine-dark);
  font-size: clamp(2.2rem, 9vw, 4.5rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.22rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--paper);
  background: var(--wine);
  box-shadow: 0 12px 26px rgba(47, 62, 54, 0.22);
}

.button-ghost {
  color: var(--wine);
  border-color: rgba(47, 62, 54, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.hero-media {
  position: relative;
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(47, 62, 54, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.category-bar {
  position: sticky;
  top: 66px;
  z-index: 19;
  padding: 0.6rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.category-head {
  display: none;
}

.category-shell {
  position: relative;
  min-width: 0;
  max-width: 1120px;
  margin-inline: auto;
}

.category-shell::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.94));
}

.category-scroll {
  display: flex;
  min-width: 0;
  gap: 0.55rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

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

.tab-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 999px;
  color: var(--wine-dark);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  scroll-snap-align: start;
}

.tab-button.is-active {
  color: var(--paper);
  border-color: var(--green);
  background: var(--green);
}

.category-nav {
  display: none;
}

.category-nav:disabled {
  cursor: default;
  opacity: 0.38;
}

.menu-section,
.features,
.steps,
.final-cta {
  padding: clamp(3rem, 9vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.menu-section,
.features,
.steps,
.prep {
  scroll-margin-top: 9.5rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1120px;
  margin: 1.4rem auto 0;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(44, 33, 27, 0.05);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.product-image {
  display: grid;
  aspect-ratio: 1.8;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: var(--green);
}

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

.product-image .product-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-image span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.pill {
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  color: var(--green);
  background: rgba(122, 143, 123, 0.13);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 0.35rem;
  color: var(--wine-dark);
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-detail {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.95rem;
}

.price {
  color: var(--terracotta);
  font-size: 1.16rem;
  font-weight: 900;
  white-space: nowrap;
}

.order-link {
  min-height: 40px;
  padding: 0.62rem 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: #b65a45;
  box-shadow: 0 10px 18px rgba(182, 90, 69, 0.22);
  font-size: 0.79rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.order-link:hover {
  background: #a84f3d;
  box-shadow: 0 12px 22px rgba(182, 90, 69, 0.28);
}

.feature-grid,
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 1120px;
  margin: 1.5rem auto 0;
}

.features {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 247, 245, 0.78)),
    var(--white);
}

.features .section-heading {
  max-width: 640px;
  text-align: center;
}

.features .section-heading h2 {
  text-wrap: balance;
}

.features .feature-grid {
  gap: 0;
  max-width: 980px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 58px rgba(33, 39, 34, 0.05);
}

.feature-item,
.step-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.feature-item {
  padding: clamp(1.35rem, 5vw, 2.6rem);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.feature-icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: rgba(47, 62, 54, 0.08);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-item h3,
.step-item h3 {
  margin-bottom: 0.35rem;
  color: var(--wine-dark);
  font-size: 1rem;
}

.feature-item h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.steps {
  background: rgba(242, 242, 242, 0.72);
}

.prep {
  padding: clamp(3rem, 9vw, 6rem) clamp(1rem, 4vw, 3rem);
  background: var(--white);
}

.prep-layout {
  display: grid;
  gap: 1.2rem;
  max-width: 1120px;
  margin: 1.5rem auto 0;
}

.prep-list {
  display: grid;
  gap: 1rem;
}

.prep-notes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(242, 242, 242, 0.55);
}

.prep-item {
  --prep-color: var(--green);
  --prep-color-soft: rgba(47, 62, 54, 0.11);
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 26%, var(--prep-color-soft) 0%, rgba(255, 255, 255, 0) 64%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(33, 39, 34, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.prep-item--terracotta {
  --prep-color: var(--terracotta);
  --prep-color-soft: rgba(191, 91, 69, 0.16);
}

.prep-item--green {
  --prep-color: var(--green);
  --prep-color-soft: rgba(47, 62, 54, 0.13);
}

.prep-item--olive {
  --prep-color: var(--olive);
  --prep-color-soft: rgba(122, 143, 123, 0.16);
}

.prep-item--wine {
  --prep-color: var(--wine);
  --prep-color-soft: rgba(98, 42, 48, 0.12);
}

.prep-item:hover {
  border-color: color-mix(in srgb, var(--prep-color) 42%, var(--line));
  box-shadow: 0 24px 54px rgba(33, 39, 34, 0.1);
  transform: translateY(-6px);
}

.prep-index {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  color: rgba(47, 62, 54, 0.64);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.prep-visual {
  position: absolute;
  z-index: 4;
  inset: 2.1rem 1rem 8.9rem;
  display: grid;
  align-items: end;
  justify-items: center;
  pointer-events: none;
}

.prep-visual img {
  width: min(72%, 220px);
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(33, 39, 34, 0.16));
  transform: translateY(10px);
  transform-origin: center bottom;
  transition: transform 280ms ease, filter 280ms ease;
}

.prep-item:hover .prep-visual img,
.prep-item.is-visual-active .prep-visual img {
  filter: drop-shadow(0 24px 28px rgba(33, 39, 34, 0.2));
  transform: translateY(0) scale(1.22);
}

.prep-content {
  position: relative;
  z-index: 2;
  padding: 2.35rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(33, 39, 34, 0.06);
  backdrop-filter: blur(12px);
}

.prep-tag {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  color: var(--prep-color);
  background: color-mix(in srgb, var(--prep-color) 10%, white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--terracotta);
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(182, 90, 69, 0.18);
}

.prep-item h3,
.prep-note h3 {
  margin-bottom: 0.3rem;
  color: var(--green-dark);
  font-size: 1rem;
}

.prep-item p,
.prep-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.prep-notes {
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(47, 62, 54, 0.96), rgba(47, 62, 54, 0.88)),
    var(--green);
}

.prep-notes .eyebrow,
.prep-note h3,
.prep-note p {
  color: var(--white);
}

.prep-note {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.prep-note + .prep-note {
  margin-top: 0.85rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-item .step-number {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  color: var(--green);
  border: 1px solid rgba(47, 62, 54, 0.15);
  background: rgba(122, 143, 123, 0.12);
  box-shadow: none;
}

.step-item h3 {
  margin: 0;
}

.final-cta {
  text-align: left;
}

.final-cta h2 {
  max-width: 780px;
}

.site-footer {
  overflow: hidden;
  margin-top: clamp(1rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 50% 0%, rgba(191, 91, 69, 0.2), rgba(191, 91, 69, 0) 42%),
    linear-gradient(180deg, #2f3e36 0%, #1d2923 100%);
}

.footer-main {
  display: flex;
  width: min(100%, 1180px);
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  padding: clamp(3rem, 8vw, 5.25rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.footer-logo {
  width: clamp(76px, 14vw, 118px);
  height: auto;
  margin-bottom: 1.45rem;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 600;
}

.footer-description {
  max-width: 620px;
  margin: 0 auto 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-seal {
  display: none;
  width: fit-content;
  margin: -1.4rem auto 2rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-bottom {
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-align: center;
}

.floating-menu {
  position: fixed;
  left: max(0.75rem, env(safe-area-inset-left));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(31, 43, 37, 0.24);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

body .floating-menu {
  display: none;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.sauce-dropdown {
  position: relative;
  z-index: 2;
}

.sauce-dropdown.is-open {
  z-index: 15;
}

.sauce-dropdown__title {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.sauce-dropdown__trigger {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.92rem 0 1rem;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(44, 33, 27, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sauce-dropdown__trigger:hover,
.sauce-dropdown__trigger:focus-visible,
.sauce-dropdown.is-open .sauce-dropdown__trigger {
  border-color: rgba(47, 62, 54, 0.3);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(44, 33, 27, 0.08);
  outline: none;
}

.sauce-dropdown__chevron {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(47, 62, 54, 0.08);
  border-radius: 999px;
  background: rgba(47, 62, 54, 0.04);
}

.sauce-dropdown__chevron::before {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(47, 62, 54, 0.78);
  border-bottom: 1.8px solid rgba(47, 62, 54, 0.78);
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.sauce-dropdown.is-open .sauce-dropdown__chevron::before {
  transform: translateY(2px) rotate(225deg);
}

.sauce-dropdown__menu {
  display: grid;
  max-height: 0;
  overflow: auto;
  padding: 0 0.35rem;
  border: 1px solid rgba(47, 62, 54, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(44, 33, 27, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transform-origin: top center;
  transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease, transform 160ms ease;
}

.sauce-dropdown.is-open .sauce-dropdown__menu {
  max-height: 230px;
  padding: 0.35rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sauce-dropdown__option {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.7rem;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.sauce-dropdown__option:hover,
.sauce-dropdown__option:focus-visible,
.sauce-dropdown__option.is-selected {
  background: rgba(47, 62, 54, 0.08);
  outline: none;
}

.sauce-dropdown__option span:last-child:not(:first-child) {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 900;
}

.order-link {
  cursor: pointer;
}

.cart-fab {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 31;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--wine);
  box-shadow: 0 12px 26px rgba(31, 43, 37, 0.24);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.cart-fab__count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: var(--paper);
  font-size: 0.78rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(20, 28, 24, 0.32);
  backdrop-filter: blur(6px);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: end;
}

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

.product-sheet-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  background: rgba(20, 28, 24, 0.34);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.product-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: 100%;
  max-height: min(88vh, 760px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem;
  border-radius: 26px 26px 0 0;
  background: var(--white);
  box-shadow: 0 -20px 60px rgba(31, 43, 37, 0.22);
  transform: translateY(105%);
  transition: transform 220ms ease;
}

.product-modal.is-open .product-sheet,
.product-sheet.is-open {
  transform: translateY(0);
}

.product-sheet__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
}

.product-sheet__media {
  display: grid;
  min-width: 0;
  min-height: 180px;
  aspect-ratio: 1.6;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--green);
}

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

.product-sheet__media span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.product-sheet__body {
  display: grid;
  min-width: 0;
  gap: 0.75rem;
}

.product-sheet__body h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.45rem;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.product-sheet__body p {
  margin: 0;
  color: var(--muted);
}

.product-sheet__price {
  color: var(--terracotta);
  font-size: 1.45rem;
}

.product-sheet__sauce {
  position: relative;
  display: grid;
  gap: 0.5rem;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-sheet__sauce .sauce-dropdown__trigger {
  display: none;
}

.product-sheet__sauce .sauce-dropdown__menu {
  display: grid;
  max-height: none;
  gap: 0.35rem;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.product-sheet__sauce .sauce-dropdown__option {
  min-height: 38px;
  padding: 0.56rem 0.72rem;
  border: 1px solid rgba(47, 62, 54, 0.1);
  border-radius: 14px;
  background: rgba(47, 62, 54, 0.04);
}

.product-sheet__sauce .sauce-dropdown__option.is-selected {
  border-color: rgba(182, 90, 69, 0.24);
  background: rgba(182, 90, 69, 0.1);
}

.product-sheet__sauce small {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-sheet__add {
  position: sticky;
  bottom: 0;
  z-index: 3;
  background: #b65a45;
  box-shadow: 0 12px 24px rgba(182, 90, 69, 0.24);
}

.quantity-control {
  display: inline-grid;
  width: max-content;
  grid-template-columns: 44px 56px 44px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 999px;
}

.quantity-control button {
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--green);
  background: var(--white);
  font: inherit;
  font-size: 1.3rem;
  font-weight: 900;
}

.quantity-control output {
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  width: min(430px, 100vw);
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid rgba(47, 62, 54, 0.1);
  background: var(--white);
  box-shadow: -24px 0 60px rgba(31, 43, 37, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.cart-drawer__header,
.cart-drawer__footer,
.checkout-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border-bottom: 1px solid rgba(47, 62, 54, 0.1);
}

.cart-drawer__header h2,
.checkout-form__header h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 2.8rem);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__body {
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  padding: 1rem;
  border: 1px dashed rgba(47, 62, 54, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(247, 248, 246, 0.76);
}

.cart-empty strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
}

.cart-items {
  display: grid;
  gap: 0.85rem;
}

.cart-item {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(47, 62, 54, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-item h3 {
  margin: 0.18rem 0 0.25rem;
  color: var(--green-dark);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.2;
}

.cart-item p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item__category {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item__actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.7rem;
}

.cart-item__actions label {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-item__actions input {
  width: 74px;
  min-height: 38px;
  padding: 0 0.55rem;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 12px;
  font: inherit;
}

.cart-item__actions button {
  border: 0;
  color: var(--terracotta);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-drawer__footer {
  border-top: 1px solid rgba(47, 62, 54, 0.1);
  border-bottom: 0;
  flex-direction: column;
  align-items: stretch;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: var(--terracotta);
  font-size: 1.25rem;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-modal {
  width: min(680px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-wizard {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
  box-shadow: none;
}

.checkout-wizard .checkout-form {
  width: min(720px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
}

.checkout-wizard .checkout-form__header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.98);
}

.checkout-wizard .checkout-form__header h2 {
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
}

.checkout-back {
  flex: 0 0 auto;
}

.checkout-modal::backdrop {
  background: rgba(20, 28, 24, 0.42);
  backdrop-filter: blur(8px);
}

.checkout-form {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding-bottom: 5.5rem;
}

.checkout-form [hidden] {
  display: none !important;
}

.checkout-grid {
  display: grid;
  gap: 0.85rem;
  padding: 0 1.1rem;
}

.checkout-step {
  display: grid;
  gap: 0.95rem;
}

.checkout-step:not(.is-active) {
  display: none;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.7rem 1.1rem 0.25rem;
}

.checkout-progress span {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.checkout-progress span::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: inherit;
  content: attr(data-step-number);
}

.checkout-progress span.is-active::before,
.checkout-progress span.is-done::before {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.checkout-progress small {
  font: inherit;
}

.checkout-grid label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.fulfillment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfillment-choice legend {
  grid-column: 1 / -1;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.fulfillment-choice label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(47, 62, 54, 0.16);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.fulfillment-choice input {
  min-height: auto;
  padding: 0;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  min-height: 40px;
  padding: 0.62rem 0.78rem;
  font-size: 0.95rem;
}

.fulfillment-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0 !important;
  min-inline-size: 0;
}

.fulfillment-choice legend {
  width: 100%;
  margin-bottom: 0.35rem;
}

.fulfillment-choice label {
  position: relative;
  justify-content: center;
  min-height: 44px;
  border-color: rgba(47, 62, 54, 0.16);
  font-size: 0.9rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.fulfillment-choice input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-choice label:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(182, 90, 69, 0.08);
  color: var(--terracotta);
}

.fulfillment-choice label:has(input:focus-visible) {
  outline: 3px solid rgba(182, 90, 69, 0.2);
  outline-offset: 2px;
}

.checkout-form select {
  border: 1px solid rgba(47, 62, 54, 0.16);
  border-radius: 12px;
  background: var(--white);
  color: var(--green-dark);
  font: inherit;
}

.checkout-form textarea {
  resize: vertical;
}

.delivery-fee-note {
  display: grid;
  align-content: end;
  min-height: 40px;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(182, 90, 69, 0.2);
  border-radius: 12px;
  background: rgba(182, 90, 69, 0.08);
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 850;
}

.delivery-fee-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
}

.delivery-fee-card .field-hint {
  grid-column: 1 / -1;
  margin-top: -0.25rem;
}

.field-hint {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.delivery-fee-card .button {
  min-height: 40px;
  width: 100%;
  padding-inline: 0.9rem;
}

.delivery-fee-note.is-loading {
  border-color: rgba(47, 62, 54, 0.2);
  background: rgba(47, 62, 54, 0.08);
  color: var(--green);
}

.delivery-fee-note.is-success {
  border-color: rgba(47, 62, 54, 0.22);
  background: rgba(47, 62, 54, 0.08);
  color: var(--green-dark);
}

.delivery-fee-note.is-error {
  border-color: rgba(182, 90, 69, 0.34);
  background: rgba(182, 90, 69, 0.1);
  color: var(--terracotta);
}

.checkout-summary {
  margin: 0 1.1rem;
  padding: 0.85rem;
  border: 1px solid rgba(47, 62, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(247, 248, 246, 0.76);
}

.checkout-summary ul {
  margin: 0.5rem 0;
  padding-left: 1rem;
}

.checkout-summary p {
  margin: 0.45rem 0;
}

.checkout-confirm-note {
  margin-top: 0.7rem !important;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(182, 90, 69, 0.22);
  border-radius: 12px;
  background: rgba(182, 90, 69, 0.08);
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 900;
}

.checkout-feedback {
  min-height: 1.25rem;
  margin: 0 1.1rem;
  color: var(--terracotta);
  font-weight: 800;
}

.payment-note {
  display: grid;
  gap: 0.2rem;
  margin: 0 1.1rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 14px;
  background: rgba(47, 62, 54, 0.06);
  color: var(--green-dark);
}

.payment-note strong {
  color: var(--terracotta);
}

.payment-note span:last-child {
  margin-top: 0.25rem;
  color: var(--green-dark);
  font-weight: 900;
}

.pac-container {
  display: none !important;
}

.address-suggestions {
  display: grid;
  overflow: hidden;
  margin-top: 0.45rem;
  border: 1px solid rgba(47, 62, 54, 0.14);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(31, 43, 37, 0.12);
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestions button {
  display: grid;
  gap: 0.12rem;
  width: 100%;
  min-height: 48px;
  padding: 0.68rem 0.9rem;
  border: 0;
  border-top: 1px solid rgba(47, 62, 54, 0.08);
  background: var(--white);
  color: var(--green-dark);
  text-align: left;
  cursor: pointer;
}

.address-suggestions button:first-child {
  border-top: 0;
}

.address-suggestions button:hover,
.address-suggestions button:focus-visible {
  background: rgba(47, 62, 54, 0.06);
}

.address-suggestions strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.address-suggestions span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1.1rem max(0.85rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(47, 62, 54, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -14px 34px rgba(31, 43, 37, 0.08);
}

.checkout-actions .button {
  width: 100%;
}

.checkout-wizard .checkout-actions {
  grid-template-columns: 1fr;
}

@media (max-width: 767px) {
  .checkout-modal.checkout-wizard {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .checkout-wizard .checkout-form__header {
    gap: 0.75rem;
    padding: max(0.75rem, env(safe-area-inset-top)) 0.9rem 0.75rem;
  }

  .checkout-progress {
    padding-inline: 0.9rem;
  }

  .checkout-grid {
    gap: 0.72rem;
    padding-inline: 0.9rem;
  }

  .checkout-grid label,
  .fulfillment-choice legend {
    font-size: 0.82rem;
  }

  .fulfillment-choice label {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea {
    min-height: 40px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .checkout-summary,
  .payment-note,
  .checkout-feedback {
    margin-inline: 0.9rem;
  }

  .checkout-actions {
    padding-inline: 0.9rem;
  }
}

.has-cart-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .delivery-fee-card {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand.has-logo {
    min-width: 0;
  }

  .brand small {
    max-width: 128px;
    font-size: 0.65rem;
  }

  .header-cta {
    width: 42px;
    min-width: 42px;
    padding-inline: 0;
    font-size: 0;
  }

  .header-cta::after {
    display: block;
    width: 20px;
    height: 20px;
    background: url("assets/whatsapp-icon-white.svg") center / contain no-repeat;
    content: "";
  }

  .floating-menu {
    min-height: 48px;
    padding-inline: 0.9rem;
    font-size: 0.82rem;
  }

  .hero-content,
  .section-heading {
    max-width: calc(100vw - 2rem);
  }

  h1 {
    max-width: min(340px, calc(100vw - 2.5rem));
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
  }

  .hero-copy {
    width: 100%;
    max-width: min(330px, calc(100vw - 3rem));
  }

  .hero-media {
    width: calc(100vw - 2rem);
    aspect-ratio: 0.88;
  }

  .section-heading p:not(.eyebrow) {
    max-width: min(330px, calc(100vw - 3rem));
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
  }

  .product-image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1;
    align-self: start;
    border-radius: 10px;
  }

  .product-body {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .product-meta,
  .product-card h3,
  .product-detail,
  .price {
    grid-column: auto;
  }

  .product-meta {
    display: none;
  }

  .product-card h3 {
    margin: 0 0 0.22rem;
    padding-right: 0;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.22;
  }

  .product-detail {
    display: -webkit-box;
    margin-bottom: 0.35rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .price {
    font-size: 1rem;
  }

  .product-foot {
    grid-column: auto;
  }

  .product-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.2rem;
  }

  .order-link {
    width: max-content;
    min-height: 34px;
    padding: 0.48rem 0.82rem;
    font-size: 0.76rem;
    white-space: normal;
  }

}

@media (max-width: 768px) {
  .site-header {
    grid-template-columns: clamp(1rem, 4vw, 3rem) auto minmax(0, 1fr) auto clamp(1rem, 4vw, 3rem);
    gap: 0;
  }

  .brand {
    grid-column: 2;
  }

  .brand.has-logo {
    min-width: 0;
    margin-left: 0;
  }

  .brand-logo {
    width: clamp(150px, 31vw, 168px);
    max-height: 42px;
  }

  .site-nav {
    grid-column: 2 / 5;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding-right: 0;
    border: 1px solid rgba(47, 62, 54, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 42px rgba(31, 43, 37, 0.12);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(47, 62, 54, 0.08);
    font-size: 0.94rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    grid-column: 4;
    gap: 0.42rem;
    margin-right: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-section {
    padding-top: clamp(1.25rem, 4vw, 2rem);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: clamp(1rem, 4vw, 3rem) auto minmax(0, 1fr) auto clamp(1rem, 4vw, 3rem);
    gap: 0;
  }

  .brand {
    grid-column: 2;
  }

  .brand.has-logo {
    min-width: 0;
    margin-left: 0;
  }

  .brand-logo {
    width: clamp(142px, 28vw, 152px);
    max-height: 40px;
  }

  .site-nav {
    grid-column: 2 / 5;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding-right: 0;
    border: 1px solid rgba(47, 62, 54, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 42px rgba(31, 43, 37, 0.12);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(47, 62, 54, 0.08);
    font-size: 0.94rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    grid-column: 4;
    gap: 0.42rem;
    margin-right: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .category-bar {
    position: sticky;
    padding: 0.55rem 0 0.85rem;
  }

  .menu-section {
    padding-top: clamp(1.15rem, 5vw, 1.7rem);
  }

  .category-bar::after {
    position: absolute;
    left: calc(100vw - 3rem);
    right: auto;
    bottom: 0.66rem;
    z-index: 5;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(47, 62, 54, 0.12);
    border-radius: 50%;
    color: var(--green);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(31, 43, 37, 0.06);
    content: "›";
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .category-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    padding: 0 1rem 0.42rem;
  }

  .category-head span::after {
    content: " ·";
  }

  .category-head span {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .category-head small {
    flex: 0 0 auto;
    color: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .category-shell {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: none;
    overflow: visible;
    padding-inline: 0.75rem;
  }

  .category-shell::after {
    display: none;
  }

  .category-scroll {
    min-width: 0;
    grid-column: 2;
    gap: 0.45rem;
    padding: 0 0.2rem;
  }

  .tab-button {
    min-height: 40px;
    padding: 0.62rem 0.82rem;
    font-size: 0.86rem;
  }

  .category-nav {
    position: static;
    z-index: 1;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(47, 62, 54, 0.12);
    border-radius: 50%;
    color: var(--green);
    background: var(--white);
    font: inherit;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(31, 43, 37, 0.05);
    transform: none;
  }

  .category-nav-prev {
    grid-column: 1;
  }

  .category-nav-next {
    grid-column: 3;
  }

  .header-cta {
    width: 48px;
    min-width: 48px;
    padding-inline: 0;
    font-size: 0;
  }

  .header-cta::after {
    display: block;
    width: 21px;
    height: 21px;
    background: url("assets/whatsapp-icon-white.svg") center / contain no-repeat;
    content: "";
  }

  .step-item {
    padding: 1.05rem;
  }

  .step-item .step-number {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    font-size: 1.45rem;
  }

  .prep-item {
    padding: 1rem;
  }
}

.section-reveal {
  transform: translateY(18px);
  animation: fade-up 560ms ease forwards;
}

@keyframes fade-up {
  to {
    transform: translateY(0);
  }
}

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

  .button-primary:hover {
    box-shadow: 0 16px 30px rgba(47, 62, 54, 0.25);
  }

  .product-card:hover {
    border-color: rgba(182, 90, 69, 0.32);
    box-shadow: var(--shadow);
  }
}

@media (min-width: 680px) {
  h1 {
    font-size: clamp(3.8rem, 8vw, 6.8rem);
  }

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

  .features .feature-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .features .feature-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

  .checkout-grid__full {
    grid-column: 1 / -1;
  }

  .checkout-actions {
    grid-template-columns: 0.9fr 1.2fr;
  }
}

@media (min-width: 680px) and (max-width: 959px) {
  .hero-media {
    width: min(82vw, 720px);
    aspect-ratio: 1.18;
  }
}

@media (min-width: 960px) {
  .product-modal {
    place-items: center;
    padding: 2rem;
  }

  .product-sheet-overlay {
    background: rgba(20, 28, 24, 0.24);
    backdrop-filter: blur(4px);
  }

  .product-sheet {
    grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1fr);
    width: min(860px, calc(100vw - 3rem));
    max-height: min(78vh, 620px);
    padding: 0.8rem;
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    box-shadow: 0 28px 80px rgba(31, 43, 37, 0.26);
    transition: transform 180ms ease, opacity 160ms ease;
  }

  .product-modal.is-open .product-sheet,
  .product-sheet.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .product-sheet__close {
    top: 0.9rem;
    right: 0.9rem;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(31, 43, 37, 0.14);
  }

  .product-sheet__media {
    align-self: stretch;
    min-height: 360px;
    aspect-ratio: auto;
    border-radius: 22px;
    overflow: hidden;
  }

  .product-sheet__body {
    align-content: start;
    gap: 0.78rem;
    max-height: calc(min(78vh, 620px) - 1.6rem);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.4rem 1.35rem 1.2rem 0.4rem;
  }

  .product-sheet__body h2 {
    font-size: clamp(1.75rem, 2.25vw, 2.45rem);
  }

  .product-sheet__add {
    margin-top: 0.15rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
    align-items: center;
    max-width: 1180px;
    margin-inline: auto;
    padding-top: clamp(1.35rem, 3vw, 2.4rem);
  }

  .hero-content,
  .hero-media {
    max-width: none;
  }

  .hero-media {
    width: 100%;
    aspect-ratio: 0.82;
    max-height: min(68vh, 680px);
  }

  .hero-media img {
    min-height: 100%;
  }

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

  .product-image {
    aspect-ratio: 1.55;
  }

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

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

  .step-item {
    display: block;
  }

  .step-item .step-number {
    margin-bottom: 0.9rem;
  }
}

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

  .section-reveal {
    transform: none;
    animation: none;
  }

}

/* Product detail screen */
.product-modal {
  align-items: stretch;
  background: var(--white);
}

.product-sheet-overlay {
  display: none;
}

.product-sheet {
  width: 100%;
  max-width: 960px;
  height: 100dvh;
  max-height: none;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 0;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 1rem 6.5rem;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: none;
  scrollbar-width: none;
  transition: opacity 160ms ease;
}

.product-sheet::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.product-modal.is-open .product-sheet,
.product-sheet.is-open {
  opacity: 1;
  transform: none;
}

.product-sheet::before {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  min-height: 58px;
  align-items: center;
  padding-left: 3rem;
  border-bottom: 1px solid rgba(47, 62, 54, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  content: "Detalhes do produto";
}

.product-sheet__close {
  position: fixed;
  top: 0.5rem;
  left: max(1rem, calc((100vw - 960px) / 2 + 1rem));
  right: auto;
  z-index: 6;
  width: 44px;
  height: 44px;
  background: transparent;
  box-shadow: none;
  font-size: 0;
}

.product-sheet__close::before {
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  content: "‹";
}

.product-sheet__media {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.5;
  margin: 1.25rem 0 1rem;
  border-radius: 18px;
}

.product-sheet__body {
  grid-column: 1;
  grid-row: 3;
  gap: 0.85rem;
  padding: 0;
}

.product-sheet__body h2 {
  font-size: clamp(1.9rem, 8vw, 3.1rem);
}

.product-sheet__sauce .sauce-dropdown__menu {
  gap: 0.45rem;
}

.product-sheet__sauce .sauce-dropdown__option {
  min-height: 48px;
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
}

.product-sheet__add {
  bottom: 1rem;
  width: 100%;
}

@media (min-width: 760px) {
  .product-sheet {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 1.6rem;
    padding: 0 1.5rem 6.5rem;
  }

  .product-sheet::before {
    grid-column: 1 / -1;
  }

  .product-sheet__media {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    aspect-ratio: 1;
    margin-top: 1.5rem;
  }

  .product-sheet__body {
    grid-column: 2;
    grid-row: 2;
    max-height: none;
    overflow: visible;
    padding: 1.45rem 0 0;
  }

  .product-sheet__body h2 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
  }
}

@media (max-width: 759px) {
  .product-sheet {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    padding: 0 1.25rem 7rem;
  }

  .product-sheet::before {
    flex: 0 0 auto;
    min-height: 54px;
    padding-left: 3.05rem;
    font-size: 0.98rem;
  }

  .product-sheet__close {
    top: 0.45rem;
    left: 1.25rem;
    width: 42px;
    height: 42px;
  }

  .product-sheet__media {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1.82;
    margin: 1.05rem 0 1.1rem;
    border-radius: 16px;
  }

  .product-sheet__media span {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .product-sheet__body {
    display: grid;
    flex: 0 0 auto;
    gap: 0.72rem;
    width: 100%;
    padding: 0;
  }

  .product-sheet__body h2 {
    font-size: clamp(1.55rem, 7.1vw, 2.25rem);
    line-height: 1.08;
  }

  .product-sheet__body p {
    font-size: 0.98rem;
  }

  .product-sheet__price {
    font-size: 1.35rem;
  }

  .product-sheet__sauce {
    gap: 0.42rem;
    font-size: 0.82rem;
  }

  .product-sheet__sauce .sauce-dropdown__menu {
    gap: 0.42rem;
  }

  .product-sheet__sauce .sauce-dropdown__option {
    min-height: 44px;
    padding: 0.62rem 0.78rem;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .product-sheet__sauce small {
    font-size: 0.75rem;
  }

  .quantity-control {
    grid-template-columns: 42px 52px 42px;
  }

  .quantity-control button {
    width: 42px;
    height: 42px;
  }

  .product-sheet__add {
    min-height: 54px;
    margin-top: 0.2rem;
    font-size: 0.98rem;
  }
}

.product-sheet__footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem max(0.9rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(47, 62, 54, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -18px 38px rgba(31, 43, 37, 0.08);
}

.product-sheet__footer .quantity-control {
  margin: 0;
}

.product-sheet__footer .product-sheet__add {
  position: static;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding-inline: 1.75rem;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 760px) {
  .product-sheet__footer {
    right: auto;
    left: 50%;
    grid-template-columns: 160px minmax(0, 1fr);
    width: min(960px, calc(100vw - 3rem));
    padding-right: 1.5rem;
    padding-left: calc(260px + 3.1rem);
    transform: translateX(-50%);
  }

  .product-sheet__body h2 {
    font-size: clamp(1.75rem, 2.65vw, 2.75rem);
  }
}

@media (max-width: 430px) {
  .product-sheet__footer {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 0.7rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .product-sheet__footer .product-sheet__add {
    padding-inline: 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .category-bar::after {
    display: none !important;
    content: none !important;
  }

  .category-head span::after {
    content: " ·";
  }

  .category-shell {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    align-items: center;
  }

  .category-nav {
    align-self: center;
    justify-self: center;
  }
}

/* Mobile product sheet hardening: keeps long products scrollable on iOS. */
@media (max-width: 767px) {
  .product-modal {
    overflow: hidden;
    background: var(--white);
  }

  .product-sheet {
    background: var(--white);
    height: 100vh;
    height: 100svh;
    max-height: none;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0 1rem calc(8.75rem + env(safe-area-inset-bottom)) !important;
    touch-action: pan-y;
  }

  .product-sheet::before {
    min-height: 50px;
    padding-left: 2.8rem;
    font-size: 0.94rem;
  }

  .product-sheet__close {
    top: 0.36rem;
    left: 1rem;
    width: 38px;
    height: 38px;
  }

  .product-sheet__close::before {
    font-size: 1.72rem;
  }

  .product-sheet__media {
    aspect-ratio: 2.05;
    max-height: 180px;
    margin: 0.85rem 0 0.8rem;
    border-radius: 14px;
    background: var(--paper);
  }

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

  .product-sheet__media span {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .product-sheet__body {
    gap: 0.56rem;
  }

  .product-sheet__body h2 {
    font-size: clamp(1.32rem, 6.1vw, 1.9rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .product-sheet__body p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .product-sheet__price {
    font-size: 1.18rem;
  }

  .product-sheet__sauce {
    gap: 0.35rem;
    font-size: 0.78rem;
  }

  .product-sheet__sauce .sauce-dropdown__option {
    min-height: 38px;
    padding: 0.52rem 0.68rem;
    border-radius: 12px;
    font-size: 0.86rem;
  }

  .product-sheet__sauce .sauce-dropdown__option span:last-child:not(:first-child) {
    font-size: 0.78rem;
  }

  .product-sheet__sauce small {
    display: block;
    padding-bottom: 0.4rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .product-sheet__footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 0.65rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.72rem 1rem max(0.72rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .product-sheet__footer .quantity-control {
    grid-template-columns: 34px 44px 34px;
    min-height: 46px;
  }

  .product-sheet__footer .quantity-control button {
    width: 34px;
    height: 34px;
  }

  .product-sheet__footer .product-sheet__add {
    min-height: 46px;
    padding-inline: 1rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  .product-sheet {
    padding-bottom: calc(7.3rem + env(safe-area-inset-bottom)) !important;
  }

  .product-sheet::before {
    min-height: 46px;
  }

  .product-sheet__media {
    aspect-ratio: 2.25;
    max-height: 146px;
    margin: 0.6rem 0 0.65rem;
  }

  .product-sheet__body {
    gap: 0.42rem;
  }

  .product-sheet__body h2 {
    font-size: clamp(1.2rem, 5.7vw, 1.58rem);
    line-height: 1.05;
  }

  .product-sheet__sauce .sauce-dropdown__option {
    min-height: 34px;
    padding-block: 0.42rem;
  }

  .product-sheet__sauce small {
    padding-bottom: 0.1rem;
  }

  .product-sheet__footer {
    padding-top: 0.56rem;
    padding-bottom: max(0.56rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .product-sheet {
    padding-right: 0.82rem !important;
    padding-left: 0.82rem !important;
  }

  .product-sheet__body h2 {
    font-size: clamp(1.2rem, 5.8vw, 1.62rem);
  }

  .product-sheet__footer {
    grid-template-columns: 112px minmax(0, 1fr);
    padding-right: 0.82rem;
    padding-left: 0.82rem;
  }

  .product-sheet__footer .product-sheet__add {
    padding-inline: 0.82rem;
  }
}

/* Product detail image: full-width mobile presentation inspired by ordering apps. */
@media (max-width: 767px) {
  .product-sheet__media {
    width: calc(100% + 2rem);
    height: clamp(168px, 46vw, 228px);
    max-height: none;
    aspect-ratio: auto;
    margin: 0 -1rem 0.95rem;
    border-radius: 0;
    background: var(--paper);
    overflow: hidden;
  }

  .product-sheet__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  .product-sheet__media {
    height: clamp(148px, 43vw, 188px);
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 380px) {
  .product-sheet__media {
    width: calc(100% + 1.64rem);
    margin-right: -0.82rem;
    margin-left: -0.82rem;
  }
}
