/* ===== HERITAGE FOOD - HERITAGE FARMHOUSE PALETTE =====
   Inspired by logo: cream parchment, dark forest green, amber, sage.
   ====================================================== */

:root {
  --cream:        #F2F4EA;   /* sage-tinted off-white (replaces warm cream) */
  --cream-soft:   #FFFFFF;
  --cream-deep:   #DCE2CF;   /* sage cream */
  --paper:        #FFFFFF;
  --paper-tint:   #F9FAF5;
  --forest:       #2D3F22;
  --forest-soft:  #4A5C3A;
  --forest-deep:  #1F2D17;
  --brown:        #3F5630;
  --brown-soft:   #5E7349;
  --amber:        #8FA47A;
  --amber-deep:   #6E8458;
  --sage:         #8FA47A;
  --sage-deep:    #6E8458;
  --sage-soft:    #B9C8A6;
  --line:         #D2D7C2;   /* sage-tinted line */
  --line-soft:    #E2E6D5;   /* sage-tinted soft line */
  --muted:        #7C816C;   /* cooler muted */
  --danger:       #2D3F22;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm:  0 1px 2px rgba(31, 45, 23, 0.06);
  --shadow-md:  0 4px 14px rgba(31, 45, 23, 0.08);
  --shadow-lg:  0 12px 32px rgba(31, 45, 23, 0.14);

  --radius:     6px;
  --radius-lg:  12px;

  --header-h:   112px;

  /* Easing function used across animations/transitions (was undefined, broke hero animation) */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: var(--header-h);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" on, "calt" on;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.015em;
  margin: 0;
  font-feature-settings: "kern" on, "ss01" on;
}

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--amber-deep); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER (centered logo with split nav) ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Light header — cream paper bg with subtle hairline border */
.site-header {
  background: #F8FAF5;
  border-bottom: 1px solid rgba(217, 207, 184, 0.6);
}

.site-header.is-scrolled,
body:not(.view-home) .site-header {
  background: rgba(250, 246, 236, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 207, 184, 0.7);
  box-shadow: 0 4px 18px rgba(31, 45, 23, 0.06);
}

.site-header__logo img {
  filter: drop-shadow(0 4px 10px rgba(31, 45, 23, 0.12));
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.site-header__logo:hover img {
  filter: drop-shadow(0 6px 16px rgba(31, 45, 23, 0.18));
  transform: translateY(-1px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 32px;
  max-width: 1640px;
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__nav--left { justify-content: flex-start; }
.site-header__nav--right { justify-content: flex-end; }

.site-header__nav a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #2D3F22;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  text-shadow: none;
}

.site-header__nav a:hover { color: #6E8458; }

.site-header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4A6B3E;
  transition: width 0.2s ease;
}

.site-header__nav a:hover::after { width: 100%; }

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #4A6B3E;
  color: #FFF;
  border: 2px solid #1F2D17;
  border-radius: 4px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  box-shadow: 0 3px 0 #1F2D17, 0 6px 14px -3px rgba(0, 0, 0, 0.5);
}

.cart-button:hover {
  background: #4A6B3E;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #1F2D17, 0 10px 20px -4px rgba(0, 0, 0, 0.6);
}

.cart-button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #1F2D17, 0 2px 6px -2px rgba(0, 0, 0, 0.4);
}

.cart-button::after { display: none; }

.cart-button__count {
  background: #B9C8A6;
  color: #1F2D17;
  border-radius: 999px;
  min-width: 22px;
  padding: 0 7px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0;
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   Add class .reveal to any element; JS toggles .is-visible
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child reveals */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ===== HERO (2-col: text left, image slider right) ===== */

.hero {
  background: var(--cream);
  padding: calc(var(--header-h) + 48px) 0 72px;
  border-bottom: 1px solid var(--line-soft);
}

.hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: hero-rise 0.8s 0.1s var(--ease) both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-deep);
  margin-bottom: 22px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(143, 164, 122, 0.22);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin: 0 0 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--brown);
  max-width: 520px;
  margin: 0 0 32px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 6px 16px rgba(31, 45, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__cta:hover {
  background: var(--amber-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(110, 132, 88, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero__cta svg { transition: transform 0.2s var(--ease); }
.hero__cta:hover svg { transform: translateX(3px); }

.hero__cta--ghost {
  background: #FFFFFF;
  color: var(--forest);
  border: 1px solid var(--line);
  padding: 14px 22px;
  box-shadow: 0 4px 12px rgba(31, 45, 23, 0.06);
}

.hero__cta--ghost:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  box-shadow: 0 12px 24px rgba(31, 45, 23, 0.22);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-soft);
}

/* RIGHT: slider */

.hero__slider {
  position: relative;
  animation: hero-rise 0.9s 0.25s var(--ease) both;
}

.hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 600px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--cream-soft);
  box-shadow:
    0 2px 6px rgba(31, 45, 23, 0.08),
    0 14px 36px rgba(31, 45, 23, 0.13),
    0 36px 80px rgba(31, 45, 23, 0.18);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  animation: hero-zoom 8s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__caption {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.hero__dot:hover { background: var(--amber); }

.hero__dot.is-active {
  background: var(--forest);
  width: 26px;
  border-radius: 999px;
}

/* ===== SECTION HEADERS ===== */

.section {
  padding: 88px 0 80px;
  background: #FFFFFF;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 500;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.section__subtitle {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* ===== CATEGORY TABS (inline editorial style with counts) ===== */

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
}

.category-tab {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #B6AC95;
  padding: 8px 4px 10px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: 0;
  white-space: nowrap;
  background: transparent;
  border: none;
  text-transform: none;
}

.category-tab:hover { color: var(--forest); }

.category-tab__count {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: super;
  margin-left: 3px;
  color: var(--amber-deep);
  opacity: 0.85;
}

.category-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.category-tab.is-active {
  color: var(--forest);
  font-weight: 600;
}

.category-tab.is-active::after { transform: scaleX(1); }
.category-tab.is-active .category-tab__count { color: var(--forest); opacity: 1; }

/* ===== CATEGORY GROUP HEADINGS ===== */

.category-group {
  margin-bottom: 64px;
}

.category-group.is-hidden { display: none; }

.category-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.category-group__title {
  font-size: 1.8rem;
  white-space: nowrap;
}

.category-group__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
}

/* ===== DISH GRID + CARDS (cream plate aesthetic) ===== */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.dish-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  outline: none;
}

.dish-card.is-hidden { display: none; }

.dish-card:hover,
.dish-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 45, 23, 0.08);
}

.dish-card:focus-visible {
  box-shadow: 0 0 0 2px var(--amber), 0 16px 32px rgba(31, 45, 23, 0.08);
}

.dish-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F4F4F4;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-card__image { transform: scale(1.05); }

.dish-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: #FFFFFF;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--forest);
  box-shadow: 0 2px 6px rgba(31, 45, 23, 0.08);
}

.dish-card__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(143, 164, 122, 0.2);
}

.dish-card__body {
  padding: 0 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dish-card__name {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card__meta {
  font-size: 0.72rem;
  color: #9C927E;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card__qty {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #4A6B3E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
}

.dish-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px 5px 0;
  margin-top: auto;
  background: #FFFFFF;
  border-radius: 999px;
  gap: 8px;
}

.dish-card__price {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

/* HST chip on dish cards — small, sage tint, sits above price/add button */
.dish-card__hst {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4A6B3E;
  background: rgba(143, 164, 122, 0.18);
  padding: 2px 6px;
  border-radius: 3px;
  margin: 4px 0 6px;
  align-self: flex-start;
}

.dish-card__price-unit {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 3px;
  text-transform: lowercase;
}

.dish-card__add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 3px 8px rgba(31, 45, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dish-card__add:hover {
  background: var(--amber-deep);
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(110, 132, 88, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dish-card__add.is-added {
  background: var(--sage);
}

.dish-card__add svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   ROUTING / VIEW VISIBILITY
   HOME view (default):   hero + .section--categories
   CATEGORY view:         .category-page
   PRODUCT view:          .product-view
   CHECKOUT view:         .checkout-page
   ORDERS view:           .orders-page
   ========================================================= */

body:not(.view-category) .category-page,
body:not(.view-product)  .product-view,
body:not(.view-checkout) .checkout-page,
body:not(.view-orders)   .orders-page,
body:not(.view-cart)     .cart-page { display: none; }

body:not(.view-home) .hero,
body:not(.view-home) .section--story,
body:not(.view-home) .section--categories,
body:not(.view-home) .section--process,
body:not(.view-home) .section--family-chef,
body:not(.view-home) .ticker { display: none; }

/* =========================================================
   HOME: OUR PROCESS (hydrosols) — 2-col layout
   Left:  intro + benefit cards + closing quote
   Right: 2x2 image gallery, sticky on desktop
   ========================================================= */

.section--process {
  background: #FFFFFF;
  border-top: 1px solid #EEEEEE;
}

.process {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.process__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.03em;
  margin: 14px 0 22px;
}

.process__lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: var(--brown);
  margin: 0;
  font-weight: 400;
}

.process__lead em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--amber-deep);
  font-weight: 500;
}

.process__lead strong {
  color: var(--forest);
  font-weight: 700;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.85em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* BIG VIDEO HERO — centered, cap at 920px so it doesn't dominate */

.process__video {
  margin: 0 auto;
  max-width: 920px;
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: #1F1F1F;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 2px 6px rgba(31, 45, 23, 0.08),
    0 12px 30px rgba(31, 45, 23, 0.12),
    0 30px 70px rgba(31, 45, 23, 0.18);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.process__video:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 10px rgba(31, 45, 23, 0.1),
    0 16px 38px rgba(31, 45, 23, 0.15),
    0 38px 90px rgba(31, 45, 23, 0.22);
}

.process__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__video-caption {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(250, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.process__video-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(143, 164, 122, 0.3);
  animation: pulse-dot-amber 2s ease-in-out infinite;
}

@keyframes pulse-dot-amber {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* 3 BENEFIT CARDS — horizontal row */

.process__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  background: #FFFFFF;
  border: 1px solid #E2E6D5;
  border-radius: 5px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s var(--ease);
  box-shadow: 0 4px 18px rgba(31, 45, 23, 0.05);
  will-change: transform;
}

.benefit-card:hover {
  border-color: var(--amber);
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(31, 45, 23, 0.12);
}

.benefit-card__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--amber-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

.benefit-card__body { display: flex; flex-direction: column; gap: 6px; }

.benefit-card__title {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.005em;
  margin: 0;
}

.benefit-card__text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--brown-soft);
  margin: 0;
}

/* 4 PHOTO STRIP — small accent thumbnails */

.process__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process__shot {
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #F4F4F4;
  border: 1px solid #E2E6D5;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 14px rgba(31, 45, 23, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.process__shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31, 45, 23, 0.14);
}

.process__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process__shot:hover img { transform: scale(1.05); }

/* CLOSING QUOTE — centered */

.process__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--brown);
  margin: 0 auto;
  text-align: center;
  max-width: 820px;
  padding: 28px 24px 0;
  border-top: 1px solid #EEEEEE;
}

/* =========================================================
   PROCESS SECTION — early-2000s infomercial style (unified)
   ========================================================= */

/* === Section background: dark wood with subtle radial glow === */
.section--process {
  /* Halftone-dot newsprint texture on warm cream — retro print-shop feel */
  background-color: #EDF1E5;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 45, 23, 0.13) 1.1px, transparent 1.6px),
    radial-gradient(circle at 8px 8px, rgba(74, 107, 62, 0.08) 1.4px, transparent 2px),
    radial-gradient(ellipse at 85% 5%, rgba(143, 164, 122, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(74, 107, 62, 0.10) 0%, transparent 55%);
  background-size: 14px 14px, 28px 28px, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  color: #1F2D17;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  border-top: 4px solid #1F2D17;
  border-bottom: 4px solid #1F2D17;
  box-shadow: 0 -2px 0 #8FA47A inset, 0 2px 0 #8FA47A;
}

.section--process > .container {
  max-width: 100%;
  overflow-x: clip;
}

.section--process::before {
  /* Subtle vignette + grainy overlay to soften the halftone dots */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(31, 45, 23, 0.08) 100%);
  pointer-events: none;
}

.retro {
  position: relative;
  z-index: 1;
}

/* === Section intro: eyebrow + title + lead === */
.retro-eyebrow {
  text-align: center;
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 700;
  margin: 0 0 20px;
  background: #4A6B3E;
  padding: 6px 16px;
  border-radius: 2px;
  box-shadow: 3px 3px 0 #1F2D17;
  text-shadow: none;
}

.process__intro {
  text-align: center;
}

.retro-title {
  text-align: center;
  margin: 0 0 24px;
  line-height: 0.95;
  font-family: 'Fraunces', Georgia, serif;
}

.retro-title__small {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #3F5630;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}

.retro-title__big {
  display: block;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #1F2D17;
  letter-spacing: -0.01em;
  /* Same MARINADE/DISTILLATION emboss: cream highlight top-left + red drop bottom-right */
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
}

.retro-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: #3F5630;
  font-weight: 400;
}

.retro-lead em { color: #6E8458; font-style: italic; font-weight: 600; }
.retro-lead strong { color: #1F2D17; font-weight: 800; letter-spacing: 0.02em; }

/* === Retro process block (used for both distillation + marinade) === */
/* NEW PALETTE — cream paper card with sage green border + red/dark accents
   (was dark wood + gold gradient — too heavy on light section bg) */
.retro-block {
  margin: 0 auto 40px;
  max-width: 1100px;
  background:
    radial-gradient(ellipse at top right, rgba(143, 164, 122, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(74, 107, 62, 0.06) 0%, transparent 55%),
    #F8FAF5;
  border: 4px solid #4A6B3E;          /* sage green border */
  border-radius: 8px;
  box-shadow:
    0 0 0 1px #1F2D17,
    0 8px 0 -2px #6E8458,             /* sage shadow stripe */
    0 14px 30px -8px rgba(31, 45, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.retro-block::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 35%; height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: rotate(15deg);
  pointer-events: none;
}

.retro-block__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 44px 48px;
  position: relative;
  z-index: 1;
}

.retro-block--reversed .retro-block__inner {
  grid-template-columns: 1fr 1.1fr;
}

.retro-block--reversed .retro-block__media {
  order: 2;
}

.retro-block--reversed .retro-block__body {
  order: 1;
}

.retro-block__media {
  position: relative;
  border: 3px solid #4A6B3E;          /* sage border (was gold) */
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 4px #1F2D17,
    inset 0 0 60px rgba(0, 0, 0, 0.4);
  background: #000;
  aspect-ratio: 16/9;
}

.retro-block__media--portrait { aspect-ratio: 9/14; max-height: 460px; }

/* Duo: two 16:9 videos stacked. Golden ratio applied to WIDTHS — primary full,
   secondary 61.8% inset right. Each keeps natural 16:9 frame (no crop). */
.retro-block__media--duo {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.retro-block__video-wrap {
  position: relative;
  overflow: hidden;
  border: 3px solid #4A6B3E;          /* sage (was gold) */
  border-radius: 4px;
  box-shadow: 0 0 0 4px #1F2D17, inset 0 0 40px rgba(0, 0, 0, 0.4);
  background: #000;
  aspect-ratio: 16 / 9;
}

/* Both videos same size: 100% width 16:9 — equal, no asymmetry */
.retro-block__video-wrap--primary,
.retro-block__video-wrap--secondary {
  width: 100%;
  align-self: stretch;
}

.retro-block__video-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D6E1C5;
  background: rgba(31, 45, 23, 0.85);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid #8FA47A;
}

.retro-block__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Starburst stamp — classic late-night infomercial */
.retro-stamp {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #4A6B3E;
  color: #FFF;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(12deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
  /* 16-point star */
  clip-path: polygon(
    50% 0%, 58% 18%, 76% 8%, 74% 28%, 92% 24%, 84% 42%, 100% 50%,
    84% 58%, 92% 76%, 74% 72%, 76% 92%, 58% 82%, 50% 100%, 42% 82%,
    24% 92%, 26% 72%, 8% 76%, 16% 58%, 0% 50%, 16% 42%, 8% 24%,
    26% 28%, 24% 8%, 42% 18%
  );
}

.retro-stamp--sage { background: #4A6B3E; }

.retro-stamp__top { font-size: 0.62rem; letter-spacing: 0.1em; opacity: 0.95; }
.retro-stamp__mid { font-size: 1.45rem; margin: 2px 0; }
.retro-stamp__bot { font-size: 0.7rem; letter-spacing: 0.1em; }

.retro-block__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1F2D17;                     /* dark wood text on cream bg */
  font-family: var(--sans, system-ui);
}

.retro-block__title {
  margin: 0 0 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.retro-block__title-line { display: block; line-height: 1; }

.retro-block__title-line--1 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: #4A6B3E;
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: none;
}

/* Clean retro emboss: red outline on bottom-right, cream highlight top-left.
   Reads like a vintage diner sign — bold but legible. */
.retro-block__title-line--2 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: #1F2D17;
  letter-spacing: -0.01em;
  margin-top: 0;
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
}

.retro-block__pitch {
  font-size: 1rem;
  line-height: 1.55;
  color: #2D3F22;                     /* deep brown text */
  margin: 0 0 18px;
}

.retro-block__pitch strong { color: #1F2D17; font-weight: 700; }
.retro-block__pitch em { color: #4A6B3E; font-style: italic; font-weight: 600; }  /* sage accent */

.retro-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.retro-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F2D17;                     /* dark text (was white) */
}

.retro-features__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #4A6B3E;                /* sage green pill (was amber) */
  color: #FFF;
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 #1F2D17;
}

.retro-block__shout {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  color: #4A6B3E;                     /* red shout on cream (was gold on dark) */
  margin-top: 4px;
  letter-spacing: -0.01em;
  text-shadow: 1px 1px 0 #D6E1C5, 2px 2px 0 #1F2D17;
  transform: rotate(-2deg);
  display: inline-block;
}

/* === Benefits section with section header + retro cards === */
.retro-benefits-wrap {
  margin: 56px auto 0;
  max-width: 1100px;
}

.retro-benefits-header {
  text-align: center;
  margin-bottom: 28px;
}

.retro-benefits-flag {
  display: inline-block;
  background: #4A6B3E;
  color: #FFF;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 10px;
  box-shadow: 3px 3px 0 #1F2D17;
}

.retro-benefits-title {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #1F2D17;
  letter-spacing: -0.01em;
  /* Same MARINADE-style emboss: cream highlight top-left + red drop bottom-right */
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
}

.retro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.retro-card {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  border: 3px solid #1F2D17;
  border-radius: 6px;
  padding: 24px 22px;
  box-shadow:
    0 6px 0 -2px #8FA47A,
    0 10px 20px -6px rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: center;
  transition: transform 0.18s var(--ease);
}

.retro-card:hover { transform: translateY(-3px); }

.retro-card__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: #4A6B3E;
  text-shadow: 2px 2px 0 #1F2D17;
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}

.retro-card__title {
  margin: 0 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1F2D17;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.retro-card__text {
  margin: 0;
  color: #2D3F22;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
}

/* === Photo gallery: framed polaroid-style === */
.retro-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px auto 0;
  max-width: 1100px;
}

.retro-gallery__shot {
  margin: 0;
  background: #D6E1C5;
  padding: 8px 8px 14px;
  border: 2px solid #1F2D17;
  border-radius: 3px;
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.18s var(--ease);
}

.retro-gallery__shot:nth-child(even) { transform: rotate(1.5deg); }
.retro-gallery__shot:hover { transform: rotate(0) scale(1.04); z-index: 1; }

.retro-gallery__shot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* === Testimonial-style quote === */
.retro-testimonial {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: center;
  position: relative;
  padding: 32px 24px 24px;
}

.retro-testimonial__quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: #4A6B3E;
  text-shadow: 3px 3px 0 #1F2D17;
  font-weight: 900;
  pointer-events: none;
}

.retro-testimonial__text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: #3F5630;
  margin: 0 0 16px;
}

.retro-testimonial__sig {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E8458;
  font-weight: 700;
}

@media (max-width: 860px) {
  /* Section eyebrow/title/lead */
  .retro-eyebrow { letter-spacing: 0.18em; font-size: 0.72rem; padding: 0 8px; }
  .retro-title__small { font-size: 1rem; padding: 0 8px; }
  .retro-title__big {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    /* Same emboss as desktop (was simplified) */
    text-shadow:
      -1px -1px 0 #D6E1C5,
       1px -1px 0 #D6E1C5,
      -1px  1px 0 #D6E1C5,
       4px  4px 0 #4A6B3E;
    padding: 0 8px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .retro-lead { padding: 0 12px; font-size: 0.95rem; }

  /* Block container */
  .retro-block { margin: 0 12px 24px; max-width: calc(100% - 24px); }
  .retro-block__inner,
  .retro-block--reversed .retro-block__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  .retro-block--reversed .retro-block__media { order: 0; }
  .retro-block--reversed .retro-block__body { order: 0; }
  .retro-block__media--portrait { aspect-ratio: 16/9; max-height: none; }

  /* Duo on mobile: both full-width 16:9 stacked (golden ratio doesn't fit narrow screen) */
  .retro-block__media--duo { gap: 10px; }
  .retro-block__video-wrap--primary { width: 100%; }
  .retro-block__video-wrap--secondary { width: 100%; align-self: stretch; }
  .retro-block__video-label { font-size: 0.6rem; padding: 3px 8px; }

  /* Stamp smaller and INSIDE corner so it doesn't push card width */
  .retro-stamp {
    width: 80px;
    height: 80px;
    top: 8px;
    right: 8px;
  }
  .retro-stamp__top { font-size: 0.5rem; }
  .retro-stamp__mid { font-size: 0.85rem; }
  .retro-stamp__bot { font-size: 0.55rem; }

  /* Clean readable title on mobile — simple emboss instead of muddy stacked shadows */
  .retro-block__title-line--1 {
    font-size: 1.05rem;
    text-shadow: none;
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: 0.08em;
  }
  .retro-block__title-line--2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    text-shadow:
      -1px -1px 0 #D6E1C5,
       1px -1px 0 #D6E1C5,
      -1px  1px 0 #D6E1C5,
       3px  3px 0 #4A6B3E;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1;
    margin-top: 0;
  }

  .retro-block__pitch { font-size: 0.92rem; }
  .retro-block__shout { font-size: 1.15rem; }

  /* Benefits header + cards */
  .retro-benefits-wrap { margin-left: 12px; margin-right: 12px; max-width: calc(100% - 24px); }
  .retro-benefits-title {
    font-size: 1.7rem;
    /* Same emboss as desktop */
    text-shadow:
      -1px -1px 0 #D6E1C5,
       1px -1px 0 #D6E1C5,
      -1px  1px 0 #D6E1C5,
       4px  4px 0 #4A6B3E;
  }
  .retro-benefits { grid-template-columns: 1fr; gap: 14px; }
  .retro-card__num { font-size: 2.4rem; }
  .retro-card__title { font-size: 1.05rem; }

  /* Gallery */
  .retro-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-left: 12px; margin-right: 12px; max-width: calc(100% - 24px); }
  .retro-gallery__shot img { height: 140px; }

  /* Testimonial */
  .retro-testimonial { padding: 32px 16px 16px; margin-left: 12px; margin-right: 12px; }
  .retro-testimonial__quote { font-size: 5rem; }
  .retro-testimonial__text { font-size: 1.05rem; }
}

/* Even narrower phones */
@media (max-width: 400px) {
  .retro-title__big { font-size: 1.6rem; }
  .retro-block__title-line--2 { font-size: 1.6rem; }
  .retro-benefits-title { font-size: 1.45rem; }
  .retro-block__inner { padding: 14px; }
}

/* =========================================================
   HOME: FAMILY CHEF / HOW IT WORKS
   ========================================================= */

.section--family-chef {
  background: #ECF0E3;
  border-top: 1px solid #D2D7C2;
}

.family-chef {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.family-chef__intro { margin-bottom: 48px; }

.family-chef__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--forest);
  margin: 14px 0 22px;
}

.family-chef__lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--brown);
  max-width: 740px;
  margin: 0 auto;
}

.family-chef__lead strong { color: var(--forest); font-family: var(--sans); font-weight: 700; font-size: 0.92em; letter-spacing: 0.04em; text-transform: uppercase; }

.family-chef__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.zone {
  background: #FFFFFF;
  border: 1px solid #E2E6D5;
  border-radius: 5px;
  padding: 26px 28px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(31, 45, 23, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.zone:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(31, 45, 23, 0.10);
}

.zone__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-deep);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D2D7C2;
}

.zone__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--brown-soft);
}

.zone__row strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
}

.zone__free {
  color: var(--amber-deep) !important;
  font-style: italic;
}

.family-chef__schedule {
  font-size: 0.88rem;
  color: var(--forest-soft);
  letter-spacing: 0.04em;
  padding: 16px 22px;
  background: rgba(143, 164, 122, 0.18);
  border-left: 3px solid var(--sage-deep);
  border-radius: var(--radius);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.family-chef__schedule strong { color: var(--forest); font-weight: 700; }

.family-chef__finale {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid #D2D7C2;
}

.family-chef__payment {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--brown-soft);
  margin: 14px 0 0;
  letter-spacing: 0.02em;
}

/* =========================================================
   HOME: CATEGORY CARDS GRID
   ========================================================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  display: block;
  background: #FFFFFF;
  border: 1px solid #E2E6D5;
  border-radius: 5px;
  padding: 14px;
  text-decoration: none;
  color: var(--forest);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31, 45, 23, 0.05);
  will-change: transform;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(31, 45, 23, 0.13);
  border-color: var(--amber);
  color: var(--forest);
}

.category-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  overflow: hidden;
  background: #F4F4F4;
  position: relative;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image { transform: scale(1.06); }

.category-card__count-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(31, 45, 23, 0.1);
}

.category-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px 8px;
  gap: 12px;
}

.category-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-card__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
  letter-spacing: -0.005em;
  line-height: 1.1;
}

.category-card__count {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 600;
}

.category-card__cta {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(31, 45, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.category-card:hover .category-card__cta {
  background: var(--amber-deep);
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(110, 132, 88, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.category-card__cta svg { width: 18px; height: 18px; }

/* =========================================================
   CATEGORY PAGE (e-commerce: dishes grid)
   ========================================================= */

.category-page {
  background: #FFFFFF;
  padding: calc(var(--header-h) + 28px) 0 80px;
  min-height: calc(100vh - var(--header-h));
}

.category-page__container { max-width: 1640px; }

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 4px;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}

.page-back:hover { color: var(--amber-deep); }

.page-back__arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.page-back:hover .page-back__arrow { transform: translateX(-4px); }

.category-page__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #EEEEEE;
}

.category-page__title-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-page__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
}

.category-page__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}

.category-page__intro {
  max-width: 480px;
  color: var(--brown-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   PRODUCT VIEW (full page)
   ========================================================= */

.product-view {
  background: #FFFFFF;
  padding: calc(var(--header-h) + 28px) 0 80px;
  min-height: calc(100vh - var(--header-h));
}

.product-view__container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-view__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 4px;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.product-view__back:hover { color: var(--amber-deep); }
.product-view__back svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.product-view__back:hover svg { transform: translateX(-3px); }

.product-view__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

.product-view__media {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: #FFFFFF;
  border: 1px solid #E2E6D5;
  border-radius: 5px;
  padding: 16px;
  box-shadow:
    0 4px 14px rgba(31, 45, 23, 0.05),
    0 24px 50px rgba(31, 45, 23, 0.1);
}

.product-view__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  background: #F4F4F4;
  box-shadow: 0 2px 8px rgba(31, 45, 23, 0.06);
}

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

.product-view__info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-view__category {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
}

.product-view__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--forest);
  letter-spacing: -0.025em;
  margin: 4px 0 0;
}

.product-view__short {
  font-family: var(--serif);
  font-size: 1.275rem;
  color: var(--brown);
  line-height: 1.5;
  margin: 0;
}

.product-view__qty {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #4A6B3E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 4px;
}

.product-view__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px dashed var(--line-soft);
  border-bottom: 1px dashed var(--line-soft);
}

.product-view__price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
}

.product-view__price-unit {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-view__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.product-view__field-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

.product-view__min-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.product-view__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  margin-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.product-view__total-label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.product-view__total-value {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--amber-deep);
}

.product-view__add {
  width: 100%;
  padding: 20px 24px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  box-shadow: 0 6px 18px rgba(31, 45, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-view__add:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(110, 132, 88, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.product-view__add.is-added { background: var(--sage); }

/* About + Recs share variant pill / qty-stepper styles below */

.product-view__about {
  max-width: 720px;
  margin: 0 auto 88px;
  padding: 56px 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  text-align: center;
}

.product-view__about-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.product-view__about-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}

.product-view__about-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--brown);
  margin: 0 0 18px;
}

.product-view__about-text:last-child { margin-bottom: 0; }

.product-view__recs-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
}

.product-view__recs-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
}

.product-view__recs-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #EEEEEE, transparent);
}

/* ===== SHARED CONTROLS (variant pills + qty stepper) ===== */

.variants-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-pill {
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--forest-soft);
  font-weight: 500;
}

.variant-pill:hover { border-color: var(--amber); }
.variant-pill.is-selected { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.variant-pill__price { font-family: var(--serif); font-weight: 600; margin-left: 6px; opacity: 0.85; }

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
}

.qty-stepper__btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.qty-stepper__btn:hover:not(:disabled) { background: #EEEEEE; }
.qty-stepper__btn:disabled { color: var(--muted); cursor: not-allowed; opacity: 0.4; }

.qty-stepper__input {
  width: 80px;
  border: none;
  background: #FFFFFF;
  text-align: center;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  padding: 0;
  -moz-appearance: textfield;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper__input:focus { outline: none; }

.qty-stepper__unit {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: #F8F8F8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-left: 1px solid var(--line);
}

/* =========================================================
   CART PAGE (full screen)
   ========================================================= */

.cart-page {
  background: #FFFFFF;
  padding: calc(var(--header-h) + 28px) 0 88px;
  min-height: calc(100vh - var(--header-h));
}

.cart-page__container { max-width: 1480px; }

.cart-page__header {
  margin: 16px 0 36px;
  max-width: 720px;
}

.cart-page__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.cart-page__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 14px;
}

.cart-page__intro {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
}

.cart-page__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.cart-page__items {
  display: flex;
  flex-direction: column;
}

.cart-page__summary {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.cart-summary {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
}

.cart-summary__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-soft);
}

.cart-summary__amount {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--forest);
}

/* HST hint under cart subtotal */
.cart-summary__hst,
.checkout-summary__hst {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #4A6B3E;
  letter-spacing: 0.02em;
  margin-top: 4px;
  text-align: right;
}

.cart-summary__note {
  font-size: 0.8rem;
  color: var(--brown-soft);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(143, 164, 122, 0.1);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
}

.cart-summary__checkout {
  width: 100%;
  padding: 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 6px 16px rgba(31, 45, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cart-summary__checkout:hover:not(:disabled) {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(110, 132, 88, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cart-summary__checkout:disabled { opacity: 0.5; cursor: not-allowed; }

.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  padding: 64px 24px;
}

.cart-empty a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cart-empty a:hover { background: var(--amber-deep); color: var(--cream); }

/* ===== CART CARDS (styled like menu cards) ===== */

.cart-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  margin-bottom: 10px;
}

.cart-card__media {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  overflow: hidden;
  background: #F4F4F4;
}

.cart-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.cart-card__name {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-card__variant {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.cart-card__qty {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: #4A6B3E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-card__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  align-self: stretch;
}

.cart-card__price {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.cart-card__remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F5F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-soft);
  transition: all 0.15s ease;
}

.cart-card__remove:hover {
  color: var(--danger);
  background: #FFE6E0;
}

.cart-card__remove svg { width: 13px; height: 13px; }

/* Compact stepper for inline editing in cart */

.cart-stepper-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  align-self: flex-start;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 999px;
  padding: 2px;
  align-self: flex-start;
}

.cart-stepper__btn {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.15s ease;
}

.cart-stepper__btn:hover:not(:disabled) { background: #EBEBEB; }
.cart-stepper__btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cart-stepper__val {
  min-width: 30px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  padding: 0 2px;
}

.cart-stepper__unit {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-left: 6px;
  align-self: center;
}

/* ===== CHECKOUT MODAL ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 45, 23, 0.5);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: auto;
}

.modal__header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title { font-size: 1.5rem; }

.modal__close {
  font-size: 1.5rem;
  color: var(--brown);
  line-height: 1;
  padding: 4px 8px;
}

.modal__body { padding: 24px 28px 28px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-soft);
}

.field label .req { color: var(--danger); }

.field input,
.field textarea,
.field select {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--forest);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--amber);
}

.field textarea { resize: vertical; min-height: 70px; }

.fulfillment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.fulfillment-option {
  border: 1px solid var(--line);
  background: var(--paper-tint);
  padding: 14px 8px;
  text-align: center;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-soft);
  font-weight: 500;
}

.fulfillment-option.is-selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.fulfillment-detail { display: none; }
.fulfillment-detail.is-active { display: flex; }

/* === Checkout wizard: stepper + panes + nav === */

.wizard-stepper {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  flex-wrap: wrap;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-tint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest-soft);
  font-weight: 600;
  position: relative;
  transition: all 0.18s var(--ease);
}

.wizard-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--line);
}

.wizard-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line);
  color: var(--forest);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.18s var(--ease);
}

.wizard-step.is-active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.wizard-step.is-active .wizard-step__num {
  background: var(--amber);
  color: var(--cream);
}

.wizard-step.is-complete {
  cursor: pointer;
  color: var(--forest);
}

.wizard-step.is-complete .wizard-step__num {
  background: var(--sage);
  color: var(--cream);
}

.wizard-step.is-complete .wizard-step__num::before {
  content: '✓';
  font-size: 0.9rem;
  font-weight: 700;
}

.wizard-step.is-complete .wizard-step__num {
  font-size: 0;  /* hide the digit, show only the checkmark */
}

.wizard-pane { display: none; }
.wizard-pane.is-active { display: block; animation: wizardFade 0.25s var(--ease); }

@keyframes wizardFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.wizard-btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}

.wizard-btn--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  margin-left: auto;  /* pushes to right when alone */
}

.wizard-btn--primary:hover { background: var(--forest-soft); }

.wizard-btn--ghost {
  background: transparent;
  color: var(--forest-soft);
  border-color: var(--line);
}

.wizard-btn--ghost:hover { border-color: var(--forest-soft); color: var(--forest); }

.wizard-btn--place {
  background: var(--amber);
  color: var(--cream);
  border-color: var(--amber);
}

.wizard-btn--place:hover { background: var(--amber-deep); border-color: var(--amber-deep); }

.wizard-btn--place:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .wizard-stepper { gap: 4px; }
  .wizard-step { padding: 6px 10px; font-size: 0.7rem; letter-spacing: 0.08em; }
  .wizard-step__label { display: none; }   /* show only number circle on mobile */
  .wizard-step.is-active .wizard-step__label { display: inline; }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-btn { width: 100%; margin: 0; }
}

/* Date / time slot picker (replaces free <input type="date">) */

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 6px 0 4px;
}

.slot-grid--time {
  grid-template-columns: repeat(5, 1fr);
}

.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  background: var(--paper-tint);
  padding: 12px 6px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  color: var(--forest-soft);
  font-family: inherit;
  min-height: 64px;
}

.slot-card:hover { border-color: var(--amber); }

.slot-card.is-selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.slot-card__dow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.slot-card.is-selected .slot-card__dow { opacity: 0.85; }

.slot-card__date {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.slot-card--time {
  min-height: 48px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.slot-empty {
  color: var(--forest-soft);
  font-size: 0.9rem;
  padding: 14px;
  background: var(--paper-tint);
  border-radius: var(--radius);
  text-align: center;
}

/* Delivery zone radio cards */
.zone-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 6px 0 8px;
}

.zone-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper-tint);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}

.zone-option:hover { border-color: var(--amber); }

.zone-option input[type="radio"] {
  margin: 4px 0 0;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.zone-option:has(input:checked) {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.zone-option:has(input:checked) .zone-option__meta,
.zone-option:has(input:checked) .zone-option__free { color: var(--cream-soft, var(--cream)); opacity: 0.9; }

.zone-option__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.zone-option__name { font-family: 'Fraunces', Georgia, serif; font-size: 1rem; font-weight: 600; color: inherit; }
.zone-option__meta { font-size: 0.82rem; color: var(--forest-soft); }
.zone-option__free { color: var(--sage); font-weight: 600; }

@media (max-width: 640px) {
  .zone-options { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-grid--time { grid-template-columns: repeat(3, 1fr); }
}

/* Payment method picker */

.payment-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-method {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--paper-tint);
  padding: 16px 18px;
  text-align: left;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  color: var(--forest-soft);
  font-weight: 500;
  min-height: 84px;
}

.payment-method:hover:not(:disabled) { border-color: var(--amber); }

.payment-method.is-selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.payment-method.is-selected .payment-method__hint { color: var(--cream-soft); opacity: 0.85; }

.payment-method:disabled {
  display: none;
}

/* Prepayment / cash rules callout — shown in step 2 below the payment cards */

.payment-rules {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
}

.payment-rules--cash {
  border-left-color: var(--sage, #8FA47A);
}

.payment-rules__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.payment-rules__badge {
  display: inline-block;
  background: var(--amber);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.payment-rules__badge--sage {
  background: var(--sage, #8FA47A);
}

.payment-rules__list {
  margin: 0;
  padding-left: 20px;
  color: var(--forest-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.payment-rules__list li { margin-bottom: 8px; }
.payment-rules__list li:last-child { margin-bottom: 0; }
.payment-rules__list strong { color: var(--forest); font-weight: 600; }

.payment-rules code {
  background: rgba(0,0,0,0.04);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: Menlo, Consolas, monospace;
  font-size: 1.12em;
  font-weight: 600;
  color: var(--forest);
  word-break: break-all;
}

.payment-method__title {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payment-method__hint {
  font-size: 0.78rem;
  color: var(--brown-soft);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Pickup address + delivery zones info cards inside checkout */

.address-card {
  margin-top: 14px;
  padding: 16px 18px;
  background: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-card__label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.address-card__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--forest);
}

.address-card__line {
  font-size: 0.88rem;
  color: var(--brown-soft);
  line-height: 1.4;
}

.zones-card {
  margin-top: 14px;
  padding: 14px 16px;
  background: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zones-card__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zones-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}

.zones-card__value {
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.zones-card__free {
  color: var(--amber-deep);
  font-weight: 700;
  margin-left: 4px;
}

.zones-card__note {
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  border-top: 1px dashed #DDDDDD;
  padding-top: 8px;
  margin-top: 2px;
}

.modal__footer {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: background 0.15s ease;
}

.submit-button:hover { background: var(--amber-deep); }

/* =========================================================
   CHECKOUT PAGE (full screen)
   ========================================================= */

.checkout-page {
  background: #FFFFFF;
  padding: calc(var(--header-h) + 28px) 0 88px;
  min-height: calc(100vh - var(--header-h));
}

.checkout-page__container { max-width: 1480px; }

.checkout-page__header {
  margin: 16px 0 40px;
  max-width: 720px;
}

.checkout-page__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.checkout-page__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 14px;
}

.checkout-page__intro {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.checkout-page__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

.checkout-page__form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.checkout-block {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 28px;
}

.checkout-block__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
  margin: 0 0 12px;
}

.checkout-block__lead {
  color: var(--brown-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 22px;
}

.checkout-block__lead strong { color: var(--forest); }

.field__hint {
  color: var(--brown-soft);
  font-size: 0.78rem;
  margin-top: 4px;
  display: block;
}

.field__optional {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Sticky order summary (right column) */

.checkout-page__summary {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.checkout-summary {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-summary__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
}

.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -4px;
}

.checkout-summary__items::-webkit-scrollbar { width: 6px; }
.checkout-summary__items::-webkit-scrollbar-track { background: transparent; }
.checkout-summary__items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.summary-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
}

.summary-item__image {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  object-fit: cover;
  background: #F4F4F4;
}

.summary-item__body { min-width: 0; }
.summary-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.summary-item__meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}
.summary-item__price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}

.summary-empty {
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
  color: var(--muted);
  padding: 24px 0;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid #EEEEEE;
}

.checkout-summary__total-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-soft);
}

.checkout-summary__amount {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
}

.checkout-summary__delivery {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  margin-top: 2px;
}

.checkout-summary__delivery-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-soft);
}

.checkout-summary__delivery-amount {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
}

.checkout-summary__delivery-amount.is-free {
  color: #4A6B3E;
  font-weight: 700;
}

.checkout-summary__grand-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 2px solid var(--forest);
}

.checkout-summary__grand-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
}

.checkout-summary__grand-amount {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
}

.checkout-summary__delivery-hint {
  font-size: 0.74rem;
  font-weight: 600;
  color: #4A6B3E;
  margin-top: 8px;
  text-align: center;
}

.checkout-summary__note {
  font-size: 0.78rem;
  color: var(--brown-soft);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(143, 164, 122, 0.1);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
}

.checkout-page__place-order {
  width: 100%;
  padding: 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 6px 16px rgba(31, 45, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checkout-page__place-order:hover:not(:disabled) {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(110, 132, 88, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.checkout-page__place-order:disabled { opacity: 0.5; cursor: not-allowed; }

/* Checkout DONE step (payment instructions as full page) */

.checkout-step--form,
.checkout-step--done { display: none; }
.checkout-step.is-active { display: block; }

.checkout-done {
  max-width: 600px;
  margin: 32px auto 0;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 48px 40px 36px;
  text-align: center;
}

.checkout-done__check {
  width: 64px;
  height: 64px;
  background: var(--sage);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.checkout-done__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
  margin-bottom: 8px;
}

.checkout-done__order-id {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 12px;
}

.checkout-done__intro {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 24px;
}

.checkout-done__done-btn {
  margin-top: 24px;
  width: 100%;
  padding: 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  transition: background 0.2s ease;
}

.checkout-done__done-btn:hover { background: var(--amber-deep); }

.payment-note--sage {
  border-left-color: var(--sage);
  background: rgba(143, 164, 122, 0.1);
}

/* =========================================================
   ORDERS HISTORY PAGE
   ========================================================= */

.orders-page {
  background: #FFFFFF;
  padding: calc(var(--header-h) + 28px) 0 88px;
  min-height: calc(100vh - var(--header-h));
}

.orders-page__container { max-width: 880px; }

.orders-page__header {
  margin: 16px 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #EEEEEE;
}

.orders-page__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.orders-page__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.orders-page__intro {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.orders-empty {
  text-align: center;
  padding: 56px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

.orders-empty a {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: background 0.2s ease;
}

.orders-empty a:hover { background: var(--amber-deep); color: var(--cream); }

.order-card {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 22px 24px;
}

.order-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
}

.order-card__id-block { display: flex; flex-direction: column; gap: 4px; }

.order-card__id {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--forest);
}

.order-card__date {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.order-card__total {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-card__total-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.order-card__total-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
}

.order-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.order-card__section-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-soft);
  font-weight: 700;
  margin: 0 0 10px;
}

.order-card__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.order-card__items::-webkit-scrollbar { width: 5px; }
.order-card__items::-webkit-scrollbar-track { background: transparent; }
.order-card__items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.order-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 4px 0;
}

.order-item__image {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  background: #F4F4F4;
}

.order-item__body { min-width: 0; }

.order-item__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-item__meta {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

.order-item__price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest);
}

.order-form-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.order-form-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-form-row__label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.order-form-row__value {
  color: var(--forest);
  word-break: break-word;
}

.order-form-row__value em {
  font-style: italic;
  color: var(--brown-soft);
}

.order-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(143, 164, 122, 0.15);
  color: var(--amber-deep);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.order-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

/* ===== CHECKOUT RECOMMENDATIONS (horizontal upsell strip) ===== */

.checkout-recs {
  margin: 4px 0 22px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}

.checkout-recs__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.checkout-recs__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
}

.checkout-recs__subtitle {
  font-size: 0.75rem;
  color: var(--brown-soft);
  font-style: italic;
  font-family: var(--serif);
}

.checkout-recs__strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 8px;
  margin: 0 -2px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.checkout-recs__strip::-webkit-scrollbar { height: 6px; }
.checkout-recs__strip::-webkit-scrollbar-track { background: transparent; }
.checkout-recs__strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.checkout-rec {
  flex-shrink: 0;
  width: 140px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
  transition: transform 0.2s ease;
}

.checkout-rec:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(31, 45, 23, 0.08);
}

.checkout-rec__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  background: #F4F4F4;
}

.checkout-rec__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-rec__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
  flex: 1;
}

.checkout-rec__name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-rec__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}

.checkout-rec__price {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

.checkout-rec__add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checkout-rec__add:hover {
  background: var(--amber-deep);
  transform: scale(1.08);
}

.checkout-rec__add.is-added { background: var(--sage); }
.checkout-rec__add svg { width: 12px; height: 12px; }

/* Payment instructions step */

.payment-instructions {
  text-align: center;
  padding: 8px 0 20px;
}

.payment-instructions__check {
  width: 56px;
  height: 56px;
  background: var(--sage);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.payment-instructions__order-id {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.payment-instructions__intro {
  color: var(--brown-soft);
  margin-bottom: 24px;
}

.payment-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
  gap: 12px;
}

.payment-row:last-child { border-bottom: none; }

.payment-row__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}

.payment-row__value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  text-align: right;
}

.payment-row__value.amount { font-size: 1.5rem; color: var(--amber-deep); }
.payment-row__value.email,
.payment-row__value.memo { font-family: monospace; font-size: 1rem; }

.copy-button {
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 0.7rem;
  border: 1px solid var(--line);
  background: var(--paper-tint);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}

.copy-button:hover { border-color: var(--amber); color: var(--forest); }
.copy-button.is-copied { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.payment-note {
  font-size: 0.85rem;
  color: var(--brown-soft);
  background: rgba(143, 164, 122, 0.08);
  padding: 12px 14px;
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
  margin-top: 16px;
  text-align: left;
}

/* === Checkout "done" page — 3-step pay instructions === */

.pay-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  text-align: left;
}

.pay-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
}

.pay-step--critical {
  border: 2px solid var(--amber);
  background: rgba(143, 164, 122, 0.04);
  box-shadow: 0 4px 18px -8px rgba(143, 164, 122, 0.4);
}

.pay-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pay-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  color: var(--forest);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pay-step__num--critical {
  background: var(--amber);
  color: var(--cream);
  border-color: var(--amber);
}

.pay-step__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--forest);
  flex: 1;
  min-width: 0;
}

.pay-step__badge {
  display: inline-block;
  background: var(--amber);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pay-step__body {
  padding-left: 44px;   /* align under title */
}

.pay-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.pay-field:last-child { border-bottom: none; }

.pay-field__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, var(--brown-soft));
  font-weight: 600;
  flex-shrink: 0;
}

.pay-field__value-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pay-field__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
}

.pay-field__value--big {
  font-size: 1.6rem;
  color: var(--amber-deep);
}

.pay-field__value--mono {
  font-family: Menlo, Consolas, monospace;
  font-size: 0.92rem;
  word-break: break-all;
}

.pay-memo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 18px 22px;
  background: var(--cream);
  border: 2px dashed var(--amber);
  border-radius: var(--radius);
}

.pay-memo__value {
  font-family: Menlo, Consolas, monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-deep);
  letter-spacing: 0.06em;
  word-break: break-all;
}

.copy-button--lg {
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pay-step__hint {
  color: var(--brown-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.pay-bank-hints {
  list-style: none;
  margin: 8px 0 14px;
  padding: 12px 16px;
  background: var(--paper-tint);
  border-radius: var(--radius);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--forest-soft);
}

.pay-bank-hints li { padding: 2px 0; }
.pay-bank-hints strong { color: var(--forest); font-weight: 600; }

.pay-warning {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(220, 80, 50, 0.08);
  border-left: 4px solid #4A6B3E;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--brown);
}

.pay-warning strong { color: #2D3F22; display: block; margin-bottom: 4px; }

@media (max-width: 640px) {
  .pay-step { padding: 16px 14px; }
  .pay-step__body { padding-left: 0; padding-top: 8px; }
  .pay-memo { flex-direction: column; align-items: stretch; padding: 14px; }
  .pay-memo__value { font-size: 1.3rem; text-align: center; }
  .pay-field { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pay-field__value--big { font-size: 1.4rem; }
}

/* ===== FOOTER (centered vertical stack) ===== */

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  padding: 32px 0 28px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--forest);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.site-footer__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.9;
}

.site-footer__line {
  color: var(--brown-soft);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-footer__sep {
  color: var(--line);
  font-size: 0.85rem;
  line-height: 1;
  margin: 2px 0;
  opacity: 0.65;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero { padding: calc(var(--header-h) + 32px) 0 48px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .hero__slider { order: -1; }
  .hero__slides { aspect-ratio: 3 / 2; max-height: 60vh; }
  .hero__title { font-size: clamp(2.2rem, 7vw, 3.4rem); }

  .product-view__hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .product-view__media { position: static; }
  .product-view__about { padding: 40px 0; margin-bottom: 56px; }

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

  .process { gap: 44px; }
  .process__benefits { grid-template-columns: 1fr; gap: 12px; }
  .process__gallery { grid-template-columns: repeat(2, 1fr); }

  .checkout-page__grid { grid-template-columns: 1fr; gap: 32px; }
  .checkout-page__summary { position: static; }
  .order-card__grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 900px) {
  .site-header__nav-extra { display: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }

  .container { padding: 0 14px; }

  .site-header__inner { padding: 8px 14px; gap: 12px; grid-template-columns: auto 1fr; }
  .site-header__nav--left { display: none; }
  .site-header__logo { justify-content: flex-start; }
  .site-header__logo img { width: 56px; height: 56px; }
  .site-header__nav { gap: 14px; }
  .site-header__nav a:not(.cart-button) { display: none; }
  .cart-button { padding: 7px 12px; font-size: 0.72rem; letter-spacing: 0.14em; }

  .hero { padding: calc(var(--header-h) + 24px) 0 40px; }
  .hero__inner { padding: 0 14px; gap: 24px; }
  /* Slightly reduced slider on mobile (was full-width 70vh) */
  .hero__slider {
    width: 75%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__slides { aspect-ratio: 4 / 5; max-height: 50vh; border-radius: 5px; }
  .hero__caption { font-size: 0.6rem; padding: 6px 11px; top: 14px; left: 14px; }
  .hero__eyebrow { font-size: 0.66rem; margin-bottom: 14px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 16px; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 24px; }
  .hero__cta { padding: 12px 20px; font-size: 0.74rem; letter-spacing: 0.14em; }
  .hero__cta--ghost { padding: 11px 18px; }
  .hero__actions { gap: 8px; margin-bottom: 22px; }
  .hero__tag { font-size: 0.64rem; padding: 5px 10px; }

  .section { padding: 48px 0 56px; }
  .section__header { margin-bottom: 28px; }
  .section__title { font-size: 1.9rem; }
  .section__subtitle { font-size: 1rem; }

  .category-tabs { gap: 2px 18px; margin-bottom: 28px; padding-bottom: 16px; }
  .category-tab { font-size: 1rem; padding: 6px 2px 8px; }
  .category-tab__count { font-size: 0.54rem; }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .dish-card { padding: 8px; gap: 10px; border-radius: 5px; }
  .dish-card__media { border-radius: 5px; }
  .dish-card__body { padding: 0 4px 2px; gap: 4px; }
  .dish-card__name { font-size: 0.82rem; }
  .dish-card__meta { font-size: 0.66rem; }
  .dish-card__action { padding: 4px 4px 4px 12px; gap: 4px; }
  .dish-card__price { font-size: 0.82rem; }
  .dish-card__price-unit { font-size: 0.56rem; }
  .dish-card__add { width: 28px; height: 28px; }
  .dish-card__add svg { width: 12px; height: 12px; }
  .dish-card__badge { font-size: 0.58rem; padding: 4px 8px 4px 6px; top: 8px; left: 8px; }
  .dish-card__badge-dot { width: 6px; height: 6px; }

  .category-group { margin-bottom: 36px; }
  .category-group__title { font-size: 1.3rem; }

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

  .process { gap: 32px; }
  .process__title { font-size: 1.7rem; margin: 10px 0 16px; }
  .process__lead { font-size: 0.95rem; }
  .process__video { border-radius: 5px; }
  .process__video-caption { font-size: 0.62rem; padding: 6px 12px; top: 14px; left: 14px; gap: 8px; }
  .process__benefits { gap: 10px; }
  .benefit-card { padding: 18px 20px; gap: 10px; flex-direction: row; align-items: center; }
  .benefit-card__num { font-size: 1.8rem; min-width: 40px; }
  .benefit-card__body { gap: 4px; }
  .benefit-card__title { font-size: 0.98rem; }
  .benefit-card__text { font-size: 0.85rem; }
  .process__gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .process__quote { font-size: 1rem; padding: 20px 8px 0; }

  .family-chef__title { font-size: 1.6rem; margin: 10px 0 14px; }
  .family-chef__lead { font-size: 1rem; }
  .family-chef__zones { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .zone { padding: 18px 18px; }
  .zone__label { font-size: 0.66rem; margin-bottom: 12px; padding-bottom: 10px; }
  .zone__row { font-size: 0.85rem; padding: 6px 0; }
  .zone__row strong { font-size: 0.95rem; }
  .family-chef__schedule { font-size: 0.78rem; padding: 12px 16px; margin-bottom: 36px; }
  .family-chef__finale { font-size: 1.4rem; padding-top: 24px; }

  .category-card { padding: 6px; border-radius: 5px; }
  .category-card__media { border-radius: 5px; }
  .category-card__body { padding: 8px 4px 2px; gap: 8px; }
  .category-card__name { font-size: 0.95rem; line-height: 1.15; }
  .category-card__count { font-size: 0.58rem; letter-spacing: 0.12em; }
  .category-card__cta { width: 28px; height: 28px; }
  .category-card__cta svg { width: 12px; height: 12px; }
  .category-card__count-badge { font-size: 0.56rem; padding: 3px 7px; top: 6px; right: 6px; }

  .category-page { padding: 12px 0 56px; }
  .category-page__container { padding: 0 14px; }
  .page-back { font-size: 0.68rem; margin-bottom: 16px; }
  .category-page__header { gap: 12px; margin-bottom: 22px; padding-bottom: 18px; }
  .category-page__title { font-size: 1.9rem; }
  .category-page__intro { font-size: 0.92rem; }

  .product-view { padding: 16px 0 56px; }
  .product-view__container { padding: 0 14px; }
  .product-view__back { font-size: 0.7rem; margin-bottom: 16px; }
  .product-view__hero { gap: 24px; margin-bottom: 40px; }
  .product-view__media { padding: 10px; border-radius: 5px; }
  .product-view__image-wrap { border-radius: 5px; }
  .product-view__title { font-size: 1.9rem; }
  .product-view__short { font-size: 1.125rem; }
  .product-view__price { font-size: 1.7rem; }
  .product-view__total-value { font-size: 1.6rem; }
  .product-view__add { padding: 16px 18px; font-size: 0.78rem; letter-spacing: 0.16em; }
  .product-view__about { padding: 32px 0; margin-bottom: 40px; }
  .product-view__about-title { font-size: 1.4rem; }
  .product-view__about-text { font-size: 1rem; }
  .product-view__recs-header { gap: 14px; margin-bottom: 18px; }
  .product-view__recs-title { font-size: 1.3rem; }

  .qty-stepper__input { width: 60px; }
  .qty-stepper__btn { width: 42px; height: 42px; }

  .fulfillment-options,
  .payment-method-options { grid-template-columns: 1fr; }
  .modal { margin: 0; border-radius: 0; min-height: 100vh; }
  .modal-overlay { padding: 0; align-items: stretch; }

  .checkout-page { padding: 12px 0 56px; }
  .checkout-page__container { padding: 0 14px; }
  .checkout-page__header { margin: 12px 0 24px; }
  .checkout-page__title { font-size: 1.9rem; }
  .checkout-page__intro { font-size: 0.95rem; }
  .checkout-page__grid { gap: 22px; margin-bottom: 40px; }
  .checkout-block { padding: 18px; }
  .checkout-block__title { font-size: 1.2rem; margin-bottom: 14px; }
  .checkout-summary { padding: 18px; }
  .checkout-summary__title { font-size: 1.2rem; }
  .checkout-summary__amount { font-size: 1.5rem; }
  .checkout-summary__items { max-height: 240px; }
  .checkout-page__place-order { padding: 16px; font-size: 0.78rem; letter-spacing: 0.16em; }
  .checkout-done { padding: 32px 22px 28px; }
  .checkout-done__order-id { font-size: 1.6rem; }

  .orders-page { padding: 12px 0 56px; }
  .orders-page__container { padding: 0 14px; }
  .orders-page__header { margin: 12px 0 22px; padding-bottom: 18px; }
  .orders-page__title { font-size: 1.9rem; }
  .order-card { padding: 16px 18px; }
  .order-card__id { font-size: 1.1rem; }
  .order-card__total-value { font-size: 1.3rem; }
  .order-card__date { font-size: 0.66rem; }

  .cart-page__grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-page__summary { position: static; }
  .cart-summary { padding: 18px; }
  .cart-summary__amount { font-size: 1.6rem; }
}

/* =========================================================
   HERO — retro 2000s infomercial overrides (.hero--retro)
   ========================================================= */

.hero--retro {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(185, 200, 166, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(74, 107, 62, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #1F140C 0%, #1F2D17 60%, #1F140C 100%);
  border-bottom: 4px solid #8FA47A;
  color: #D6E1C5;
  position: relative;
  overflow: hidden;
}

.hero--retro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(185, 200, 166, 0.025) 18px 19px);
  pointer-events: none;
}

.hero--retro .hero__inner {
  position: relative;
  z-index: 1;
}

/* Flag — replaces eyebrow */
.hero--retro .hero__flag {
  display: inline-block;
  background: #4A6B3E;
  color: #FFF;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 #1F2D17;
}

/* Title — small italic line + giant block-shadow line */
.hero--retro .hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: inherit;
}

.hero--retro .hero__title-small {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: #B9C8A6;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: 2px 2px 0 #1F2D17;
}

.hero--retro .hero__title-big {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: #FFF;
  letter-spacing: -0.01em;
  text-shadow:
    3px 3px 0 #4A6B3E,
    6px 6px 0 #1F2D17,
    9px 9px 18px rgba(0, 0, 0, 0.55);
}

.hero--retro .hero__title-big em {
  font-style: italic;
  color: #B9C8A6;
  font-weight: 900;
}

/* Subtitle */
.hero--retro .hero__subtitle {
  font-family: var(--sans);
  color: #D6E1C5;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  margin-bottom: 28px;
}

.hero--retro .hero__subtitle strong {
  color: #FFF;
  font-weight: 700;
}

.hero--retro .hero__subtitle em {
  color: #B9C8A6;
  font-style: italic;
  font-weight: 600;
}

/* CTAs — retro pop-out buttons */
.hero--retro .hero__cta {
  background: #4A6B3E;
  color: #FFF;
  border-radius: 4px;
  padding: 16px 26px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 4px 0 #1F2D17,
    0 8px 18px -4px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  border: 2px solid #1F2D17;
}

.hero--retro .hero__cta:hover {
  background: #4A6B3E;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #1F2D17, 0 12px 24px -4px rgba(0, 0, 0, 0.7);
}

.hero--retro .hero__cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1F2D17, 0 4px 8px -2px rgba(0, 0, 0, 0.5);
}

.hero--retro .hero__cta--ghost {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  color: #1F2D17;
  border-color: #1F2D17;
}

.hero--retro .hero__cta--ghost:hover {
  background: linear-gradient(180deg, #B9C8A6 0%, #D6E1C5 100%);
  color: #1F2D17;
  border-color: #1F2D17;
}

/* Slider — framed like a TV screen with gold border + scanlines */
.hero--retro .hero__slider {
  position: relative;
}

.hero--retro .hero__slides {
  border: 4px solid #B9C8A6;
  border-radius: 6px;
  box-shadow:
    0 0 0 4px #1F2D17,
    0 0 0 5px #8FA47A,
    0 18px 32px -8px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.hero--retro .hero__caption {
  background: rgba(31, 45, 23, 0.92);
  color: #B9C8A6;
  font-family: 'Fraunces', Georgia, serif;
  border: 1px solid #8FA47A;
  font-weight: 700;
}

.hero--retro .hero__dots {
  margin-top: 22px;
}

.hero--retro .hero__dot {
  background: rgba(255, 215, 122, 0.3);
  border: 1px solid #8FA47A;
}

.hero--retro .hero__dot.is-active {
  background: #4A6B3E;
  border-color: #B9C8A6;
  box-shadow: 0 0 0 2px #1F2D17;
}

/* "Fresh Tue+Fri Only" starburst stamp over slider */
.hero__stamp {
  width: 120px;
  height: 120px;
  top: -22px;
  left: -22px;
  right: auto;
  transform: rotate(-15deg);
  background: #4A6B3E;
  z-index: 2;
}

.hero__stamp .retro-stamp__mid { font-size: 1.2rem; }

@media (max-width: 860px) {
  .hero__stamp {
    width: 64px;
    height: 64px;
    top: -8px;
    left: -8px;
  }
  .hero__stamp .retro-stamp__top { font-size: 0.4rem; }
  .hero__stamp .retro-stamp__mid { font-size: 0.72rem; }
  .hero__stamp .retro-stamp__bot { font-size: 0.4rem; }
  .hero--retro .hero__title-big {
    text-shadow: 2px 2px 0 #4A6B3E, 4px 4px 0 #1F2D17;
  }
}

/* =========================================================
   SITE-WIDE RETRO — categories, family chef, footer
   LIGHT VERSION: cream/white background, dark retro typography
   ========================================================= */

/* === Body bg behind sections === */
body {
  background: #F8FAF5;
}

/* === CATEGORIES section: cream bg with retro section header === */
.section--categories {
  background: #F8FAF5;
  color: #1F2D17;
  position: relative;
  overflow-x: clip;
  border-top: 1px solid rgba(217, 207, 184, 0.4);
  border-bottom: 1px solid rgba(217, 207, 184, 0.4);
}

.section--categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(31, 45, 23, 0.018) 18px 19px);
  pointer-events: none;
}

.section--categories .section__header {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section--categories .section__eyebrow {
  display: inline-block;
  background: #4A6B3E;
  color: #FFF;
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: 0.28em;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  box-shadow: 3px 3px 0 #1F2D17;
  margin-bottom: 18px;
}

.section--categories .section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  text-transform: uppercase;
  color: #1F2D17;
  letter-spacing: -0.01em;
  /* Same MARINADE-style emboss */
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
}

.section--categories .section__subtitle {
  color: #3F5630;
  font-style: italic;
  opacity: 0.88;
}

.section--categories .category-grid { position: relative; z-index: 1; }

/* Category cards — retro gold-gradient pop-out (same on cream bg) */
.category-card {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  border: 3px solid #1F2D17;
  border-radius: 6px;
  box-shadow: 0 6px 0 -2px #8FA47A, 0 10px 22px -6px rgba(31, 45, 23, 0.25);
  transition: transform 0.18s var(--ease);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 -2px #8FA47A, 0 14px 28px -4px rgba(31, 45, 23, 0.35);
}

.category-card__name { color: #1F2D17; }
.category-card__count { color: #3F5630; }
.category-card__cta {
  background: #4A6B3E;
  color: #FFF;
  border: 2px solid #1F2D17;
}

/* =========================================================
   HOME: STORY — Vintage Recipe Cards on parchment
   Cream parchment background with subtle texture, decorative
   serif typography, and 5 tilted "recipe cards" tossed casually
   across the page like an open grandmother's recipe book.
   ========================================================= */

.section--story {
  background:
    radial-gradient(ellipse at top, rgba(255, 248, 230, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(212, 184, 106, 0.08) 0%, transparent 50%),
    #F4ECD8;
  padding: 0;
  border-top: 4px double #4A6B3E;
  border-bottom: 4px double #4A6B3E;
  position: relative;
  overflow: hidden;
}

/* Subtle paper grain via repeating diagonal hatching */
.section--story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(74, 107, 62, 0.025) 12px 13px);
  pointer-events: none;
  z-index: 0;
}

.recipe-book {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 32px;
  position: relative;
  z-index: 1;
}

/* --- Header: decorative serif title with stars --- */
.recipe-book__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}

.recipe-book__star {
  font-size: 1rem;
  color: #8B7340;
  opacity: 0.7;
}

.recipe-book__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2D3F22;
  margin: 0;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(212, 184, 106, 0.35);
}

.recipe-book__subtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #6E5B2E;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

/* Typewritten preface */
.recipe-book__preface {
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 0 12px;
  text-align: center;
}

.recipe-book__preface p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3A3020;
  margin: 0 0 10px;
}

.recipe-book__preface p:last-child { margin-bottom: 0; }

/* --- Recipe cards layout (mobile: stacked, tilted) --- */
.recipe-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 12px 8px 8px;
}

/* Individual recipe card — index card aesthetic with ruled lines */
.recipe-card {
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 22px,
      rgba(74, 107, 62, 0.18) 22px 23px
    ),
    linear-gradient(180deg, #FFFCF2 0%, #FAF3DC 100%);
  border: 2px solid #3F2E18;
  border-radius: 2px;
  padding: 14px 16px 16px;
  position: relative;
  box-shadow:
    0 2px 0 #8B7340,
    0 6px 14px -4px rgba(63, 46, 24, 0.35),
    inset 0 0 0 6px transparent,
    inset 0 0 0 7px rgba(74, 107, 62, 0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

/* Top red line — like real index cards */
.recipe-card::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 36px;
  height: 1px;
  background: rgba(180, 70, 60, 0.45);
  pointer-events: none;
}

/* Hole-punch dot in corner */
.recipe-card__corner {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.9rem;
  color: #B4463C;
  opacity: 0.7;
}

.recipe-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.recipe-card__no {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B7340;
}

.recipe-card__emoji {
  font-size: 1.4rem;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.recipe-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #2D3F22;
  margin: 0 0 4px;
}

.recipe-card__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.78rem;
  color: #6E5B2E;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.recipe-card__lines {
  border-top: 1px dashed rgba(74, 107, 62, 0.35);
  padding-top: 10px;
}

.recipe-card__desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #3A3020;
  margin: 0;
}

/* Per-herb subtle tint on card background */
.recipe-card[data-herb="rose"]      { background-image: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(180, 70, 60, 0.18) 22px 23px), linear-gradient(180deg, #FFF6F2 0%, #F8E8E2 100%); }
.recipe-card[data-herb="peppermint"]{ background-image: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(60, 130, 90, 0.18) 22px 23px), linear-gradient(180deg, #F2FAF4 0%, #E2F0E6 100%); }
.recipe-card[data-herb="lavender"]  { background-image: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(100, 80, 140, 0.18) 22px 23px), linear-gradient(180deg, #F6F2FA 0%, #EBE4F2 100%); }
.recipe-card[data-herb="chamomile"] { background-image: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(160, 130, 50, 0.18) 22px 23px), linear-gradient(180deg, #FFFBEC 0%, #FAF0CC 100%); }
.recipe-card[data-herb="fennel"]    { background-image: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(74, 107, 62, 0.18) 22px 23px), linear-gradient(180deg, #F8FBF2 0%, #ECF1DD 100%); }

/* Tilt rotations — each card slightly different angle */
.recipe-card--1 { transform: rotate(-2deg); }
.recipe-card--2 { transform: rotate(1.5deg); }
.recipe-card--3 { transform: rotate(-1deg); }
.recipe-card--4 { transform: rotate(2deg); }
.recipe-card--5 { transform: rotate(-1.5deg); }

.recipe-card:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
  box-shadow:
    0 4px 0 #8B7340,
    0 12px 24px -6px rgba(63, 46, 24, 0.5),
    inset 0 0 0 7px rgba(74, 107, 62, 0.15);
  z-index: 2;
}

/* Chef's note ribbon */
.recipe-book__note {
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #6E5B2E;
  margin: 24px auto 0;
  padding: 10px 24px;
  border-top: 1px dashed #8B7340;
  border-bottom: 1px dashed #8B7340;
  max-width: 480px;
}

.recipe-book__note-icon {
  margin-right: 8px;
  color: #B4463C;
}

/* --- Footer block: closing note from the chef --- */
.recipe-book__footer {
  margin-top: 28px;
  padding: 20px 18px;
  background: #FFFCF2;
  border: 2px solid #3F2E18;
  border-radius: 2px;
  box-shadow:
    0 2px 0 #8B7340,
    0 6px 14px -4px rgba(63, 46, 24, 0.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Decorative corner flourishes */
.recipe-book__footer::before,
.recipe-book__footer::after {
  content: '\2766';  /* floral heart */
  position: absolute;
  top: 8px;
  font-size: 0.9rem;
  color: #B4463C;
  opacity: 0.7;
}
.recipe-book__footer::before { left: 12px; }
.recipe-book__footer::after  { right: 12px; }

.recipe-book__footer-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 60ch;
}

.recipe-book__lead {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2D3F22;
  margin: 0;
}

.recipe-book__line {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #3A3020;
  margin: 0;
}

.recipe-book__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 700;
  color: #6E5B2E;
  margin: 4px 0 0;
}

.recipe-book__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  background: #4A6B3E;
  color: #FFF;
  border: 2px solid #2D3F22;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 3px 0 #2D3F22, 0 5px 12px -3px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.recipe-book__cta:hover {
  background: #6E8458;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #2D3F22, 0 8px 16px -4px rgba(0, 0, 0, 0.4);
}

.recipe-book__cta:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #2D3F22, 0 3px 8px -3px rgba(0, 0, 0, 0.3);
}

.recipe-book__cta svg { transition: transform 0.2s var(--ease); }
.recipe-book__cta:hover svg { transform: translateX(3px); }

/* ===== Tablet 640px+: 2-col cards with alternating tilts ===== */
@media (min-width: 640px) {
  .recipe-book { padding: 28px 24px 36px; }

  .recipe-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* 5th card spans both columns to center it */
  .recipe-card--5 { grid-column: 1 / 3; max-width: 50%; margin: 0 auto; width: 100%; }

  .recipe-book__footer {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 32px;
  }

  .recipe-book__footer-text { max-width: 60ch; }
}

/* ===== Desktop 1024px+: 5-col grid with playful staggered heights ===== */
@media (min-width: 1024px) {
  .recipe-book { padding: 36px 40px 44px; }

  .recipe-book__title     { font-size: 3rem; }
  .recipe-book__subtitle  { font-size: 1.35rem; }
  .recipe-book__preface p { font-size: 1.05rem; }
  .recipe-book__quote     { font-size: 1.2rem; }
  .recipe-book__lead      { font-size: 1.05rem; }
  .recipe-book__line      { font-size: 1rem; }

  .recipe-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 20px 12px 12px;
  }

  .recipe-card { padding: 16px 18px 18px; }

  .recipe-card--5 {
    grid-column: auto;
    max-width: none;
    margin: 0;
    width: auto;
  }

  /* Stagger vertical position for "tossed on a table" look */
  .recipe-card--1 { transform: rotate(-2deg)   translateY(8px); }
  .recipe-card--2 { transform: rotate(1.5deg)  translateY(-6px); }
  .recipe-card--3 { transform: rotate(-1deg)   translateY(10px); }
  .recipe-card--4 { transform: rotate(2deg)    translateY(-4px); }
  .recipe-card--5 { transform: rotate(-1.5deg) translateY(6px); }

  .recipe-card:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); }

  .recipe-card__name { font-size: 1.35rem; }
  .recipe-card__desc { font-size: 0.8rem; }
}

/* ===== XL 1440px+ ===== */
@media (min-width: 1440px) {
  .recipe-book { padding: 40px 48px 48px; }
  .recipe-book__title     { font-size: 3.6rem; }
  .recipe-book__subtitle  { font-size: 1.55rem; }
  .recipe-book__preface p { font-size: 1.1rem; }
  .recipe-book__quote     { font-size: 1.3rem; }
}

/* === FAMILY CHEF section === */
.section--family-chef {
  background: #EDF1E5;
  border-top: 3px solid #8FA47A;
  color: #1F2D17;
  position: relative;
  overflow-x: clip;
}

.section--family-chef::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(31, 45, 23, 0.018) 18px 19px);
  pointer-events: none;
}

.section--family-chef .family-chef { position: relative; z-index: 1; }

.section--family-chef .section__eyebrow {
  display: inline-block;
  background: #4A6B3E;
  color: #FFF;
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: 0.28em;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  box-shadow: 3px 3px 0 #1F2D17;
  margin-bottom: 16px;
}

.family-chef__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #1F2D17;
  /* Same MARINADE-style emboss as A MASTERPIECE? + 3 GOOD REASONS */
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
}

.family-chef__lead {
  color: #3F5630;
  font-style: italic;
}

.family-chef__lead em,
.family-chef__lead strong { color: #6E8458; }

/* === FOOTER (cream, retro typography, dark accents) === */
.site-footer {
  background: #EDF1E5;
  border-top: 3px solid #8FA47A;
  color: #3F5630;
  padding: 40px 0 32px;
}

.site-footer__brand {
  font-family: 'Fraunces', Georgia, serif;
  color: #1F2D17;
  text-shadow: none;
}

.site-footer__logo { opacity: 1; filter: none; }

.site-footer__line {
  color: #3F5630;
  opacity: 0.9;
  letter-spacing: 0.18em;
}

.site-footer a { color: #6E8458; }
.site-footer a:hover { color: #1F2D17; }

/* === Default text color for retro pages === */
body.view-home,
body.view-menu,
body.view-cart,
body.view-orders {
  color: #1F2D17;
}

/* =========================================================
   MARKETING TICKER — bright red marquee divider
   ========================================================= */

.ticker {
  background: #4A6B3E;
  color: #FFF;
  border-top: 2px solid #1F2D17;
  border-bottom: 2px solid #1F2D17;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /* subtle stripes for retro signage look */
  background-image:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.04) 24px 25px),
    linear-gradient(180deg, #4A6B3E 0%, #2D3F22 100%);
  box-shadow: 0 4px 0 -2px rgba(31, 45, 23, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: tickerScroll 40s linear infinite;
  padding-left: 48px;
  will-change: transform;
}

.ticker__item {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #D6E1C5;
  text-shadow: 1px 1px 0 #1F2D17;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover for accessibility / read-along */
.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

@media (max-width: 640px) {
  .ticker { padding: 10px 0; }
  .ticker__item { font-size: 0.78rem; letter-spacing: 0.14em; }
  .ticker__track { gap: 28px; padding-left: 28px; animation-duration: 28s; }
}

/* === Family chef section — schedule, finale, zones === */
.section--family-chef .family-chef__schedule {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  border: 2px solid #1F2D17;
  border-left-width: 6px;
  border-left-color: #4A6B3E;
  border-radius: 4px;
  color: #1F2D17;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 16px 22px;
  box-shadow: 0 4px 0 -2px #8FA47A, 0 8px 18px -4px rgba(31, 45, 23, 0.25);
}

.section--family-chef .family-chef__schedule strong {
  color: #4A6B3E;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section--family-chef .family-chef__finale {
  color: #1F2D17;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  border-top: 1px solid #8FA47A;
  text-shadow: 2px 2px 0 #B9C8A6;
}

.section--family-chef .zone {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  border: 3px solid #1F2D17;
  box-shadow: 0 6px 0 -2px #8FA47A, 0 10px 22px -4px rgba(0, 0, 0, 0.5);
}

.section--family-chef .zone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 -2px #8FA47A, 0 14px 28px -4px rgba(0, 0, 0, 0.6);
}

.section--family-chef .zone__label {
  color: #1F2D17;
  border-bottom-color: rgba(31, 45, 23, 0.25);
}

.section--family-chef .zone__row { color: #3F5630; }

.section--family-chef .zone__row strong { color: #1F2D17; }

.section--family-chef .zone__free {
  color: #4A6B3E !important;
  font-weight: 700;
}

/* === Mobile: add top padding to menu (categories) so first card isn't under sticky header === */
@media (max-width: 860px) {
  .section--categories {
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .section--family-chef {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* Category page (after clicking a category) needs more breathing room from header */
  .category-page {
    padding-top: calc(var(--header-h) + 48px) !important;
  }
  .product-view {
    padding-top: calc(var(--header-h) + 32px) !important;
  }
}

/* Keep checkout / dish / category page bodies on cream (forms need readable contrast) */

/* =========================================================
   HERO — PREMIUM 2026 (editorial, refined, confident)
   Overrides the earlier .hero--retro styles where .hero--premium is set.
   ========================================================= */

.hero.hero--premium {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(143, 164, 122, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(143, 164, 122, 0.10) 0%, transparent 55%),
    #F8FAF5;
  color: #2D3F22;
  border-bottom: 1px solid rgba(217, 207, 184, 0.55);
  padding: calc(var(--header-h) + 56px) 0 80px;
  overflow: hidden;
  position: relative;
}

.hero--premium::before,
.hero--premium::after { display: none; }

.hero--premium .hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* === CONTENT (left) === */
.hero--premium .hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Eyebrow — retro 2000s infomercial: stars + bars + bold uppercase serif */
.hero--premium .hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.1s var(--ease) forwards;
}

.hero--premium .hero__eyebrow-star {
  font-size: 1.05rem;
  line-height: 1;
  color: #4A6B3E;
  text-shadow: 1px 1px 0 #1F2D17;
}

.hero--premium .hero__eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #1F2D17;
}

.hero--premium .hero__eyebrow-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1F2D17;
  font-weight: 700;
}

/* Title — retro 2000s infomercial: chunky uppercase serif with cream-outline emboss
   (matches .retro-title__big used in process section for visual cohesion) */
.hero--premium .hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6.6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1F2D17;
  margin: 0 0 32px;
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #4A6B3E;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.25s var(--ease) forwards;
}

.hero--premium .hero__title-line {
  display: block;
}

.hero--premium .hero__title-line--accent {
  color: #4A6B3E;
  text-shadow:
    -1px -1px 0 #D6E1C5,
     1px -1px 0 #D6E1C5,
    -1px  1px 0 #D6E1C5,
     4px  4px 0 #1F2D17;
}

/* Subtitle — retro framed box: cream paper with sage border + hard dark drop */
.hero--premium .hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(0.96rem, 1.1vw, 1.1rem);
  line-height: 1.55;
  color: #1F2D17;
  max-width: 540px;
  margin: 0 0 32px;
  padding: 14px 18px;
  background: #F8FAF5;
  border: 2px solid #4A6B3E;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1F2D17;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.5s var(--ease) forwards;
}

.hero--premium .hero__subtitle strong { color: #1F2D17; font-weight: 700; }

/* CTAs — primary pill + minimal text link */
.hero--premium .hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.7s var(--ease) forwards;
}

/* CTAs styled like the cart button — red, dark border, hard 3px shadow, Fraunces uppercase */
.hero--premium .hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  border: 2px solid #1F2D17;
  border-radius: 4px;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
  text-shadow: none;
}

.hero--premium .hero__cta--primary {
  background: #4A6B3E;
  color: #FFF;
  box-shadow: 0 3px 0 #1F2D17, 0 6px 14px -3px rgba(0, 0, 0, 0.5);
}

.hero--premium .hero__cta--primary:hover {
  background: #4A6B3E;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #1F2D17, 0 10px 20px -4px rgba(0, 0, 0, 0.6);
}

.hero--premium .hero__cta--primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #1F2D17, 0 2px 6px -2px rgba(0, 0, 0, 0.4);
}

.hero--premium .hero__cta--primary svg { transition: transform 0.2s var(--ease); }
.hero--premium .hero__cta--primary:hover svg { transform: translateX(3px); }

/* Secondary: same shape, cream/gold variant (still in cart-style language) */
.hero--premium .hero__cta--link {
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%);
  color: #1F2D17;
  border-color: #1F2D17;
  border-radius: 4px;
  padding: 13px 22px;
  box-shadow: 0 3px 0 #1F2D17, 0 6px 14px -3px rgba(0, 0, 0, 0.3);
}

.hero--premium .hero__cta--link:hover {
  background: linear-gradient(180deg, #B9C8A6 0%, #D6E1C5 100%);
  color: #1F2D17;
  border-color: #1F2D17;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #1F2D17, 0 10px 20px -4px rgba(0, 0, 0, 0.4);
}

.hero--premium .hero__cta--link:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #1F2D17, 0 2px 6px -2px rgba(0, 0, 0, 0.3);
}

.hero--premium .hero__cta--link svg { transition: transform 0.2s var(--ease); }
.hero--premium .hero__cta--link:hover svg { transform: translateX(3px); }

/* Meta stats — proof points */
.hero--premium .hero__meta {
  display: flex;
  gap: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(217, 207, 184, 0.6);
  width: 100%;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.9s var(--ease) forwards;
}

.hero--premium .hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero--premium .hero__meta-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: #2D3F22;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero--premium .hero__meta-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5E7349;
  font-weight: 500;
}

/* === SLIDER (right) — premium photo treatment === */
.hero--premium .hero__slider {
  position: relative;
  opacity: 0;
  transform: scale(0.96);
  animation: heroFadeScale 1s 0.3s var(--ease) forwards;
}

.hero--premium .hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 680px;
  overflow: hidden;
  background: #E8F0DE;
  border-radius: 6px;
  border: 1px solid rgba(217, 207, 184, 0.8);
  box-shadow:
    0 1px 2px rgba(31, 45, 23, 0.04),
    0 8px 24px rgba(31, 45, 23, 0.08),
    0 28px 60px -16px rgba(31, 45, 23, 0.16),
    0 50px 100px -32px rgba(31, 45, 23, 0.2);
}

.hero--premium .hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}

.hero--premium .hero__slide.is-active {
  opacity: 1;
  animation: heroKenBurns 12s ease-out forwards;
}

/* Logo slide — fit-don't-crop, centered on cream paper bg */
.hero--premium .hero__slide--logo {
  object-fit: contain;
  padding: 8%;
  background: #E8F0DE;
}

.hero--premium .hero__slide--logo.is-active {
  /* No Ken-Burns zoom on the logo (looks weird) — gentle scale-in only */
  animation: heroLogoIn 1.2s ease-out forwards;
}

@keyframes heroLogoIn {
  from { transform: scale(0.94); }
  to   { transform: scale(1); }
}

/* Ken-Burns slow zoom */
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Caption — refined bottom-left */
.hero--premium .hero__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  top: auto;
  padding: 10px 16px;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 207, 184, 0.4);
  border-radius: 999px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #2D3F22;
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: none;
}

/* Dots — slim refined */
.hero--premium .hero__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 22px;
}

.hero--premium .hero__dot {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(31, 45, 23, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.hero--premium .hero__dot.is-active {
  background: #2D3F22;
  width: 48px;
  box-shadow: none;
  border: none;
}

.hero--premium .hero__dot:hover { background: rgba(31, 45, 23, 0.4); }

/* === Keyframes (shared) === */
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeScale {
  to { opacity: 1; transform: scale(1); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero--premium *,
  .hero--premium .hero__slide.is-active {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === MOBILE === */
@media (max-width: 1024px) {
  .hero--premium { padding: calc(var(--header-h) + 32px) 0 56px; }
  .hero--premium .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .hero--premium .hero__slider { order: -1; max-width: 540px; margin: 0 auto; }
  .hero--premium .hero__title { font-size: clamp(2.4rem, 7vw, 3.6rem); }
}

@media (max-width: 640px) {
  /* Section ~40% shorter on mobile */
  .hero--premium { padding: calc(var(--header-h) + 16px) 0 32px; }
  .hero--premium .hero__inner { padding: 0 20px; gap: 20px; }

  /* Slider — compact, fits within viewport */
  .hero--premium .hero__slider { max-width: 72%; margin: 0 auto; }
  .hero--premium .hero__slides { aspect-ratio: 1 / 1; max-height: 32vh; border-radius: 5px; }
  .hero--premium .hero__slides {
    box-shadow:
      0 4px 12px rgba(31, 45, 23, 0.08),
      0 14px 30px -8px rgba(31, 45, 23, 0.15);
  }

  /* Content: tighter spacing */
  .hero--premium .hero__content { align-items: flex-start; }
  .hero--premium .hero__eyebrow { margin-bottom: 16px; gap: 8px; }
  .hero--premium .hero__eyebrow-line { width: 22px; height: 2px; }
  .hero--premium .hero__eyebrow-star { font-size: 0.9rem; }
  .hero--premium .hero__eyebrow-text { font-size: 0.66rem; letter-spacing: 0.18em; }

  .hero--premium .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    /* Smaller drop on mobile so it doesn't bleed past container */
    text-shadow:
      -1px -1px 0 #D6E1C5,
       1px -1px 0 #D6E1C5,
      -1px  1px 0 #D6E1C5,
       3px  3px 0 #4A6B3E;
  }

  .hero--premium .hero__title-line--accent {
    text-shadow:
      -1px -1px 0 #D6E1C5,
       1px -1px 0 #D6E1C5,
      -1px  1px 0 #D6E1C5,
       3px  3px 0 #1F2D17;
  }

  .hero--premium .hero__subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 100%;
    padding: 12px 14px;
    box-shadow: 2px 2px 0 #1F2D17;
  }

  .hero--premium .hero__actions {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero--premium .hero__cta--primary {
    padding: 15px 24px;
    font-size: 0.88rem;
    justify-content: center;
    width: 100%;
  }

  .hero--premium .hero__cta--link {
    align-self: center;
    font-size: 0.86rem;
  }

  .hero--premium .hero__caption {
    font-size: 0.7rem;
    padding: 7px 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero--premium .hero__dots { margin-top: 16px; }
  .hero--premium .hero__dot { width: 22px; }
  .hero--premium .hero__dot.is-active { width: 36px; }
}

/* Disable the earlier retro hero overrides that conflict with --premium */
.hero--premium .hero__content { animation: none; }
.hero--premium .hero__slider { animation: heroFadeScale 1s 0.3s var(--ease) forwards; }

/* === Title: letter-by-letter pop with TV flicker shadow === */
.hero__title-small {
  opacity: 0;
  transform: translateY(12px);
  animation: heroLineUp 0.7s 0.05s var(--ease) forwards;
}

.hero__title-big {
  display: block;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero__title-big { white-space: normal; }
}

.hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.6) rotate(-8deg);
  animation: heroLetterPop 0.55s var(--ease) forwards, heroLetterFlicker 1.4s 1.2s ease-out;
  transform-origin: 50% 100%;
}

@keyframes heroLetterPop {
  0%   { opacity: 0; transform: translateY(40px) scale(0.6) rotate(-8deg); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

/* Brief flicker on the layered shadow — like a flickering neon sign */
@keyframes heroLetterFlicker {
  0%, 100% { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17, 9px 9px 18px rgba(0,0,0,0.55); }
  20%      { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17, 0 0 24px rgba(185, 200, 166, 0.8); }
  22%      { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17; }
  24%      { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17, 0 0 32px rgba(185, 200, 166, 1); }
  26%      { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17; }
  28%      { text-shadow: 3px 3px 0 #4A6B3E, 6px 6px 0 #1F2D17, 9px 9px 18px rgba(0,0,0,0.55); }
}

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

/* === Flag, subtitle, CTAs: staggered fade-up === */
.hero--retro .hero__flag {
  opacity: 0;
  transform: translateY(-10px);
  animation: heroLineUp 0.6s 0s var(--ease) forwards;
}

.hero--retro .hero__subtitle {
  opacity: 0;
  transform: translateY(16px);
  animation: heroLineUp 0.7s 1.4s var(--ease) forwards;
}

.hero--retro .hero__actions {
  opacity: 0;
  transform: translateY(16px);
  animation: heroLineUp 0.7s 1.65s var(--ease) forwards;
}

/* === Slider: framed entry + "channel change" flash on transition === */
.hero--retro .hero__slider {
  opacity: 0;
  transform: scale(0.95);
  animation: heroSliderIn 0.9s 0.2s var(--ease) forwards;
}

@keyframes heroSliderIn {
  to { opacity: 1; transform: scale(1); }
}

/* When slider auto-advances, container briefly invert/scan */
.hero__slides--flashing::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 48%,
    rgba(255, 255, 255, 0.85) 49%,
    rgba(255, 255, 255, 0.85) 51%,
    transparent 52%,
    transparent 100%);
  animation: channelChange 0.55s ease-out forwards;
  z-index: 5;
  mix-blend-mode: screen;
}

@keyframes channelChange {
  0%   { transform: translateY(-100%) scaleY(0.3); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translateY(0) scaleY(1); opacity: 1; }
  100% { transform: translateY(100%) scaleY(0.3); opacity: 0; }
}

/* Subtle CRT scanline texture during the flash */
.hero__slides--flashing {
  animation: crtBlip 0.55s ease-out forwards;
}

@keyframes crtBlip {
  0%   { filter: brightness(1) contrast(1) saturate(1); }
  30%  { filter: brightness(1.4) contrast(1.6) saturate(0.4) hue-rotate(-15deg); }
  100% { filter: brightness(1) contrast(1) saturate(1); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__letter,
  .hero--retro .hero__flag,
  .hero--retro .hero__subtitle,
  .hero--retro .hero__actions,
  .hero--retro .hero__slider,
  .hero__title-small {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__slides--flashing::after,
  .hero__slides--flashing { animation: none !important; }
}

/* =========================================================
   UNIFIED RETRO CTA STYLE — applied to every primary action button.
   Same red+dark+hard-shadow look as the header Cart button + hero CTA.
   ========================================================= */

/* Primary action buttons across the app */
.product-view__add,
.cart-summary__checkout,
.wizard-btn--primary,
.wizard-btn--place,
.checkout-page__place-order {
  /* base */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #4A6B3E !important;
  color: #FFF !important;
  border: 2px solid #1F2D17 !important;
  border-radius: 4px !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  padding: 14px 26px !important;
  box-shadow: 0 3px 0 #1F2D17, 0 6px 14px -3px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease) !important;
  text-shadow: none !important;
  cursor: pointer;
}

.product-view__add:hover:not(:disabled),
.cart-summary__checkout:hover:not(:disabled),
.wizard-btn--primary:hover:not(:disabled),
.wizard-btn--place:hover:not(:disabled),
.checkout-page__place-order:hover:not(:disabled) {
  background: #4A6B3E !important;
  color: #FFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 0 #1F2D17, 0 10px 20px -4px rgba(0, 0, 0, 0.6) !important;
}

.product-view__add:active,
.cart-summary__checkout:active,
.wizard-btn--primary:active,
.wizard-btn--place:active,
.checkout-page__place-order:active {
  transform: translateY(2px) !important;
  box-shadow: 0 1px 0 #1F2D17, 0 2px 6px -2px rgba(0, 0, 0, 0.4) !important;
}

.product-view__add:disabled,
.cart-summary__checkout:disabled,
.wizard-btn--primary:disabled,
.wizard-btn--place:disabled,
.checkout-page__place-order:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: 0 3px 0 #1F2D17 !important;
}

/* "is-added" state on dish page Add-to-Order (after clicking) */
.product-view__add.is-added {
  background: #4A6B3E !important;
  border-color: #1F2D17 !important;
}

/* Secondary buttons (Back, ghost) — gold gradient retro variant */
.wizard-btn--ghost {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: linear-gradient(180deg, #D6E1C5 0%, #B9C8A6 100%) !important;
  color: #1F2D17 !important;
  border: 2px solid #1F2D17 !important;
  border-radius: 4px !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  padding: 12px 22px !important;
  box-shadow: 0 3px 0 #1F2D17, 0 6px 14px -3px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease) !important;
  text-shadow: none !important;
}

.wizard-btn--ghost:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 0 #1F2D17, 0 10px 20px -4px rgba(0, 0, 0, 0.4) !important;
  background: linear-gradient(180deg, #B9C8A6 0%, #D6E1C5 100%) !important;
  color: #1F2D17 !important;
  border-color: #1F2D17 !important;
}

.wizard-btn--ghost:active {
  transform: translateY(2px) !important;
  box-shadow: 0 1px 0 #1F2D17, 0 2px 6px -2px rgba(0, 0, 0, 0.3) !important;
}

/* Wizard nav layout — primary button takes natural width, full-width on mobile */
@media (max-width: 640px) {
  .product-view__add,
  .cart-summary__checkout,
  .wizard-btn--primary,
  .wizard-btn--place,
  .checkout-page__place-order,
  .wizard-btn--ghost {
    width: 100%;
    font-size: 0.78rem !important;
    letter-spacing: 0.14em !important;
    padding: 14px 18px !important;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER — analytics-only, dismissible
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #1F2D17;
  color: #F8FAF5;
  border: 2px solid #2D3F22;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 0 -1px #4A6B3E, 0 10px 24px -6px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #D6E1C5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner__btn {
  padding: 9px 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}

.cookie-banner__btn--accept {
  background: #4A6B3E;
  color: #FFF;
  border-color: #B9C8A6;
}
.cookie-banner__btn--accept:hover { background: #6E8458; transform: translateY(-1px); }

.cookie-banner__btn--decline {
  background: transparent;
  color: #D6E1C5;
  border-color: #4A6B3E;
}
.cookie-banner__btn--decline:hover { background: rgba(255, 255, 255, 0.05); }

/* Tablet+: horizontal layout */
@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    bottom: 24px;
    max-width: 540px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 14px 16px 14px 22px;
  }

  .cookie-banner__text { flex: 1; }
  .cookie-banner__actions { flex-shrink: 0; }
}

