/* =========================================================
   ONZ Foods & Beverages Ltd — design tokens
   Palette pulled from the Lucy / Merci pack art: deep sunflower
   green, gold-drop yellow, and a wine-red accent used sparingly
   for warmth and urgency (calls to action, highlights).
   Type: Fraunces (a serif with soft, hand-cut curves — feels
   grown, not corporate) for headlines, Work Sans for everything
   people need to read quickly.
   ========================================================= */

:root {
  --green-deep:   #123D24;
  --green:        #1E6F3E;
  --green-soft:   #E7F1E9;
  --yellow:       #F6C332;
  --yellow-deep:  #E4A50E;
  --wine:         #6E1B32;
  --wine-deep:    #4E1224;
  --cream:        #FFFBF2;
  --cream-dim:    #FBF3DE;
  --ink:          #241F16;
  --ink-soft:     #5B5648;
  --white:        #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 45px -25px rgba(18, 61, 36, 0.45);
  --shadow-card: 0 12px 30px -18px rgba(36, 31, 22, 0.35);

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--green-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--green-deep);
  box-shadow: 0 10px 24px -10px rgba(228, 165, 14, .8);
}
.btn-primary:hover { background: var(--yellow-deep); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-wine {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(110, 27, 50, .7);
}
.btn-wine:hover { background: var(--wine-deep); }
.btn-ghost-green {
  background: transparent;
  border-color: var(--green);
  color: var(--green-deep);
}
.btn-ghost-green:hover { background: var(--green-soft); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(18,61,36,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--green-deep);
}
.brand img { height: 52px; width: auto; }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--green-soft); color: var(--green-deep); }
.main-nav a.active { background: var(--green); color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.cart-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  flex: 0 0 auto;
  transition: background .15s ease;
}
.cart-pill:hover { background: #d8ecdd; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count[data-empty="true"] { background: var(--ink-soft); opacity: .55; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 2px solid var(--green-deep);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-deep);
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* =========================================================
   Petal divider — the signature motif.
   A row of scalloped arcs standing in for sunflower petals /
   golden drops, used wherever one section hands off to the next.
   ========================================================= */
.petal-divider {
  width: 100%;
  height: 34px;
  display: block;
  line-height: 0;
}
.petal-divider--flip { transform: rotate(180deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 62%, #2a8a4c 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 76px 24px 96px;
}
.hero-eyebrow {
  color: var(--yellow);
}
.hero-eyebrow::before { background: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  max-width: 12ch;
}
.hero p.lede {
  font-size: 1.12rem;
  color: rgba(255,255,255,.88);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--yellow);
}
.hero-stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, rgba(246,195,50,.28), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero-media img {
  width: 78%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(18,61,36,.45));
}
.hero-media.hero-media--photo { padding: 0; }
.hero-media.hero-media--photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none;
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  background: var(--white);
  color: var(--green-deep);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge span.big { font-size: 1.3rem; color: var(--wine); }

/* =========================================================
   Sections — generic rhythm
   ========================================================= */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--cream-dim); }
.section-green { background: var(--green-soft); }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Who we are split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-copy p { color: var(--ink-soft); }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.checklist .dot {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  margin-top: 3px;
}

/* ---------- Lightweight stat panel (replaces a photo on the homepage) ---------- */
.stat-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-deep), var(--green));
  box-shadow: var(--shadow-card);
  padding: 40px 32px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.stat-panel img {
  position: absolute;
  right: -40px; bottom: -30px;
  width: 240px;
  height: auto;
  opacity: .9;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.25));
}
.stat-panel-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.stat-panel-row strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  min-width: 84px;
}
.stat-panel-row span { font-size: .95rem; color: rgba(255,255,255,.88); }
.stat-panel-row + .stat-panel-row {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}

/* ---------- Behind the scenes photo slider (homepage) ---------- */
.photo-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 8;
  background: var(--cream-dim);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
  will-change: transform;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.slide picture, .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,61,36,.7) 0%, rgba(18,61,36,0) 40%);
  pointer-events: none;
}
.slide-caption {
  position: absolute;
  left: 24px; bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.slider-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.slider-arrow--prev { left: 18px; }
.slider-arrow--next { right: 18px; }
.slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.slider-dot.active { background: var(--yellow); transform: scale(1.25); }

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 6px solid var(--green);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(36,31,22,.4); }
.product-card.accent-wine { border-top-color: var(--wine); }
.product-card.accent-yellow { border-top-color: var(--yellow-deep); }
.product-icon {
  width: 64px; height: 64px;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(45deg);
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.product-icon span {
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
}
.product-card.accent-wine .product-icon { background: #F5E4EA; }
.product-card.accent-wine .product-icon span { color: var(--wine); }
.product-card.accent-yellow .product-icon { background: #FDF1D2; }
.product-card.accent-yellow .product-icon span { color: #8a5f05; }
.product-card h3 { margin-bottom: 2px; font-size: 1.2rem; }
.product-card .brand-tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
}
.product-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 4px; flex-grow: 1; }
.product-card .card-link {
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Product detail (products page) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(18,61,36,.1);
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-media {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.product-media img { max-height: 300px; width: auto; }
.size-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.size-pill {
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
}
.product-detail.accent-wine .size-pill { background: #F5E4EA; color: var(--wine); }
.product-detail.accent-yellow .size-pill { background: #FDF1D2; color: #8a5f05; }

/* ---------- Values grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.value-card .num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--yellow-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ---------- Vision / Mission cards ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
}
.vm-card.vision { background: linear-gradient(150deg, var(--green-deep), var(--green)); }
.vm-card.mission { background: linear-gradient(150deg, var(--wine-deep), var(--wine)); }
.vm-card h3 { color: var(--white); font-size: 1.3rem; }
.vm-card p { color: rgba(255,255,255,.9); margin: 0; }

/* ---------- Stat / commitment strip ---------- */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.commit-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.commit-item .drop {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50% 50% 50% 4px;
  background: var(--yellow);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
}
.commit-item .drop span { transform: rotate(-45deg); font-weight: 800; color: var(--green-deep); font-size: .85rem; }
.commit-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--wine);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background-image: radial-gradient(circle at 90% 20%, rgba(255,255,255,.12), transparent 45%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; max-width: 46ch; }

/* =========================================================
   Shop page
   ========================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.shop-products { display: flex; flex-direction: column; gap: 20px; }
.shop-item {
  scroll-margin-top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  border-left: 6px solid var(--green);
}
.shop-item.accent-wine { border-left-color: var(--wine); }
.shop-item.accent-yellow { border-left-color: var(--yellow-deep); }
.shop-item-media {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 0 0 auto;
}
.shop-item-media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.shop-item-info h3 { margin-bottom: 8px; font-size: 1.1rem; }

.shop-item-variants { display: flex; flex-direction: column; }
.variant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(18,61,36,.08);
}
.shop-item-variants .variant-row:first-child { border-top: none; padding-top: 0; }
.variant-text { display: flex; flex-direction: column; gap: 2px; }
.variant-text strong { font-size: .92rem; color: var(--green-deep); }
.variant-contents { color: var(--ink-soft); font-size: .84rem; }
.variant-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-deep);
}
.variant-price .unit { font-family: var(--font-body); font-weight: 500; font-size: .76rem; color: var(--ink-soft); }
.variant-controls { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(18,61,36,.18);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}
.qty-btn {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--green-soft);
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
}
.qty-input {
  width: 52px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-summary {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.cart-summary h3 { font-size: 1.2rem; margin-bottom: 16px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; max-height: 340px; overflow-y: auto; }
.cart-empty { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18,61,36,.08);
}
.cart-line-info { display: flex; flex-direction: column; gap: 2px; }
.cart-line-info strong { font-size: .92rem; color: var(--green-deep); }
.cart-line-info span { font-size: .8rem; color: var(--ink-soft); }
.cart-line-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.cart-line-total { font-weight: 700; font-size: .88rem; white-space: nowrap; }
.cart-remove-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: #F5E4EA;
  color: var(--wine);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 2px solid rgba(18,61,36,.12);
  margin-bottom: 16px;
  font-weight: 700;
}
.cart-total-row strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-deep); }
.cart-checkout-btn { width: 100%; justify-content: center; }

/* =========================================================
   Checkout page
   ========================================================= */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.bank-card {
  background: linear-gradient(150deg, var(--green-deep), var(--green));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.bank-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 16px; }
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.bank-row:last-child { border-bottom: none; }
.bank-row span.label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.bank-row span.value { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.copy-btn {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}
.copy-btn:hover { background: rgba(255,255,255,.28); }
.order-review { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 26px; margin-bottom: 24px; }
.order-review h3 { font-size: 1.1rem; margin-bottom: 14px; }
.order-ref {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 34px;
}
.office-list { display: grid; gap: 18px; margin-bottom: 24px; }
.office-list-2col { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
  .office-list-2col { grid-template-columns: 1fr; }
}
.office-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.office-item .icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.office-item h4 { margin-bottom: 4px; font-size: 1rem; color: var(--green-deep); }
.office-item p { margin: 0; color: var(--ink-soft); font-size: .93rem; white-space: pre-line; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--green-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(18,61,36,.18);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.form-error { color: var(--wine); font-size: .82rem; margin-top: 4px; display: block; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: 14px; }
.alert {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-weight: 600;
  font-size: .95rem;
}
.alert-success { background: var(--green-soft); color: var(--green-deep); }
.alert-error { background: #F5E4EA; color: var(--wine); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--yellow); }

/* ---------- Social / WhatsApp icon row (footer + contact page) ---------- */
.social-links { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
  flex: 0 0 auto;
}
.social-links a:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.social-links.on-light a { background: var(--green-soft); color: var(--green-deep); }
.social-links.on-light a:hover { background: #d8ecdd; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(150deg, var(--green-deep), var(--green));
  color: var(--white);
  padding: 64px 0 84px;
}
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 56ch; font-size: 1.05rem; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--yellow); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 44px 24px 56px; gap: 32px; }
  .hero-media { aspect-ratio: 5/4; order: -1; max-width: 380px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split img { height: 280px; }
  .stat-panel { min-height: 240px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .shop-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .photo-slider { aspect-ratio: 4 / 3; }
}

/* ---------- Tablet / phone ---------- */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn span.btn-text { display: none; }
  .header-inner { padding: 12px 18px; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 36px 26px; }
  .cta-banner .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; margin-top: 32px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .section { padding: 52px 0; }
  .section-tight { padding: 40px 0; }
  .section-header { margin-bottom: 32px; }
  .shop-item { grid-template-columns: 76px 1fr; }
  .variant-row { justify-content: space-between; }
  .photo-slider { aspect-ratio: 1 / 1; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .slider-arrow--prev { left: 10px; }
  .slider-arrow--next { right: 10px; }
  .slide-caption { font-size: 1.1rem; left: 16px; bottom: 16px; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand span { font-size: .98rem; }
  .brand img { height: 40px; }
  .hero { padding-bottom: 4px; }
  .hero-inner { padding: 36px 18px 44px; }
  .hero h1 { font-size: 2rem; max-width: none; }
  .hero p.lede { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .hero-stat { display: flex; align-items: baseline; gap: 8px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-media { padding: 20px; max-width: 260px; }
  .btn { width: 100%; justify-content: center; padding: 14px 22px; }
  .hero-actions { flex-direction: column; }
  .value-card, .product-card, .contact-card, .commit-item, .office-item { padding: 20px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .stat-panel { padding: 28px 22px; min-height: auto; }
  .stat-panel img { width: 160px; right: -30px; bottom: -20px; opacity: .55; }
  .stat-panel-row strong { font-size: 1.4rem; min-width: 64px; }
  .shop-item { grid-template-columns: 1fr; text-align: center; }
  .shop-item-media { margin: 0 auto; }
  .variant-row { flex-direction: column; align-items: stretch; text-align: left; }
  .variant-controls { justify-content: space-between; }
  .variant-controls .add-to-cart-btn { flex: 1 1 auto; }
  .checkout-layout { gap: 24px; }
}

/* ---------- Mobile nav drawer ---------- */
.main-nav.open {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 12px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.main-nav.open ul { flex-direction: column; }
.main-nav.open a { display: block; }
