/* ==========================================================================
   GOOD FRIENDS FOOD VENTURES — Design System
   Palette:  --red (Beliwyse brand)  --green (natural/GFV)  --gold (GFV crest)
             --cream (background)    --ink (text)
   Type:     Fraunces (display/serif)  /  Inter (body/UI)
   Signature: the "seal" badge — a double-ring rotated stamp lifted directly
              from the product packaging's trust badges.
   ========================================================================== */

:root {
  --red: #9E1B1B;
  --red-dark: #6E1010;
  --red-light: #C23B3B;
  --green: #35502F;
  --green-dark: #223321;
  --green-light: #6B8E23;
  --gold: #C7972C;
  --gold-light: #E7C778;
  --cream: #FBF6EC;
  --cream-dim: #F3ECDC;
  --ink: #241C14;
  --ink-soft: #4A4038;
  --paper: #FFFFFF;
  --line: rgba(36, 28, 20, 0.12);
  --shadow: 0 12px 32px rgba(36, 20, 12, 0.14);
  --shadow-sm: 0 4px 14px rgba(36, 20, 12, 0.10);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Baloo 2", "Fraunces", Georgia, serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.script {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--red); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); }
.btn-whatsapp { background: #25D366; color: #08350f; }
.btn-whatsapp:hover { background: #1ebe57; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-lockup img { height: 42px; width: auto; }
.brand-lockup .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-lockup .brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red);
}
.brand-lockup .brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a.active { color: var(--red); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 3px; }
.nav-dropdown-toggle a { padding-right: 0; }
.nav-caret {
  background: none; border: none; padding: 2px;
  font-size: 0.7rem; color: var(--ink-soft); cursor: pointer;
  line-height: 1; transition: transform 0.15s ease;
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  min-width: 160px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover { background: var(--cream-dim); }
.nav-dropdown-menu a::after { display: none; }
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--line);
  transition: background 0.15s, border-color 0.15s;
}
.icon-btn:hover { background: var(--cream-dim); border-color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--ink); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------------- Seal / Stamp signature component ---------------- */
.seal {
  --seal-color: var(--green);
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 2px solid var(--seal-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(-6deg);
}
.seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--seal-color);
}
.seal span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--seal-color);
  text-align: center;
  line-height: 1.25;
  padding: 0 12px;
}
.seal.gold { --seal-color: var(--gold); }
.seal.red { --seal-color: var(--red); }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  padding: 36px 0;
}
.trust-bar .seal { width: 96px; height: 96px; }
.trust-bar .seal:nth-child(2n) { transform: rotate(5deg); }
.trust-bar .seal:nth-child(3n) { transform: rotate(-3deg); }

/* ---------------- Hero: full-bleed image band + centered copy ---------------- */
.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--cream-dim);
}
.hero-image-frame picture,
.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
}
.hero-image-badge {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  right: 18px;
  background: var(--cream);
}
@media (max-width: 640px) {
  .hero-image-frame { aspect-ratio: 4 / 3.2; }
  .hero-image-badge { display: none; }
}

.hero {
  padding: 44px 0 40px;
  overflow: hidden;
}
.hero-copy-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-copy-centered h1 { margin-bottom: 0.3em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  background: rgba(53, 80, 47, 0.08);
  padding: 7px 13px; border-radius: 100px;
}
.hero-badge svg { width: 14px; height: 14px; }

/* ---------------- Section scaffolding ---------------- */
section { padding: 64px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head.left { text-align: left; margin: 0 0 40px; }

.bg-cream-dim { background: var(--cream-dim); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h2, .bg-ink h3 { color: var(--cream); }
.bg-ink p { color: rgba(251,246,236,0.75); }
.bg-green { background: var(--green-dark); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-green p { color: rgba(251,246,236,0.8); }

/* ---------------- Featured product cards (home) ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--line);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card img { height: 150px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-card .price { color: var(--red); font-weight: 800; font-size: 1.05rem; }
.feature-card .from { color: var(--ink-soft); font-size: 0.8rem; font-weight: 600; }

/* ---------------- Story / alternating blocks ---------------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-block.reverse .story-img { order: 2; }
.story-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-copy .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 22px 0;
}

/* ---------------- Shop grid ---------------- */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card .thumb-wrap {
  background: var(--cream-dim);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-card .thumb-wrap img { height: 190px; width: auto; object-fit: contain; }
.product-card .card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .brand-tag {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 2px; cursor: pointer; }
.product-card .tagline { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 8px; }
.product-card .price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: auto;
}
.product-card .price { font-weight: 800; color: var(--red); font-size: 1.15rem; }
.product-card .unit { font-size: 0.78rem; color: var(--ink-soft); }
.product-card .card-actions { display: flex; gap: 10px; margin-top: 14px; }

/* ---------------- Product detail modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(36, 28, 20, 0.55);
  z-index: 900;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
.modal-overlay.open { display: flex; }
.modal-panel {
  background: var(--paper);
  border-radius: var(--radius);
  max-width: 920px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow);
  margin: auto 0;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-dim);
  border: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.modal-close svg { width: 18px; height: 18px; }

.product-detail { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.product-detail .pd-image {
  background: var(--cream-dim);
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
.product-detail .pd-image img { max-height: 400px; }
.product-detail .pd-content { padding: 36px 36px 36px 30px; }
.product-detail .pd-content .brand-tag { color: var(--green); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.product-detail .pd-price { font-size: 1.6rem; font-weight: 800; color: var(--red); margin: 10px 0 4px; }
.product-detail .pd-unit { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 16px; }

.variant-picker { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.variant-option {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.variant-option strong { display: block; font-size: 0.9rem; }
.variant-option span { font-size: 0.78rem; color: var(--ink-soft); }
.variant-option.selected { border-color: var(--red); background: rgba(158,27,27,0.06); }

.qty-row { display: flex; align-items: center; gap: 14px; margin: 18px 0; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.qty-control button {
  width: 38px; height: 38px;
  border: none; background: var(--cream-dim);
  font-size: 1.1rem; font-weight: 700;
}
.qty-control input {
  width: 46px; text-align: center;
  border: none; font-weight: 700; font-size: 1rem;
  font-family: var(--font-body);
  background: transparent;
}

.pd-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin: 26px 0 18px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pd-tabs::-webkit-scrollbar { display: none; }
.pd-tab {
  background: none; border: none;
  padding: 10px 4px; margin-right: 22px;
  font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}
.pd-tab.active { color: var(--red); border-color: var(--red); }
.pd-tabpanel { display: none; }
.pd-tabpanel.active { display: block; }
.fact-item { margin-bottom: 14px; }
.fact-item strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 0.92rem; }
.fact-item p { font-size: 0.9rem; margin: 0; }
.pd-storage {
  background: var(--cream-dim); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px;
}

.nafdac-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em;
  color: var(--green); background: rgba(53,80,47,0.08);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
}
.nafdac-tag::before { content: "✓"; }

.allergy-note {
  margin-top: 12px;
  background: rgba(158,27,27,0.07);
  border: 1px solid rgba(158,27,27,0.25);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.direction-list { margin: 0; padding-left: 20px; }
.direction-list li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 6px; }

.nutrition-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.nutrition-table tr { border-bottom: 1px solid var(--line); }
.nutrition-table td { padding: 8px 4px; }
.nutrition-table td:first-child { color: var(--ink-soft); }
.nutrition-table td:last-child { text-align: right; font-weight: 700; }

/* ---------------- Hero pearl texture background ---------------- */
.trust-texture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.trust-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg-texture-pearl.webp");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
}
.trust-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251,246,236,0.55) 0%, rgba(251,246,236,0.75) 100%);
}

/* ---------------- Cart drawer ---------------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(36,28,20,0.5);
  z-index: 950;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--cream);
  z-index: 960;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 64px; height: 64px; object-fit: contain; background: var(--cream-dim); border-radius: 10px; padding: 6px; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info h4 { font-size: 0.92rem; margin: 0 0 2px; font-family: var(--font-body); font-weight: 700; }
.cart-item .ci-info .ci-meta { font-size: 0.78rem; color: var(--ink-soft); }
.cart-item .ci-remove { font-size: 0.78rem; color: var(--red); font-weight: 700; background: none; border: none; padding: 0; margin-top: 6px; }
.cart-item .ci-qty { display: flex; align-items: center; gap: 8px; }
.cart-item .ci-qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); font-weight: 700; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }

/* ---------------- Order form modal ---------------- */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: -6px; margin-bottom: 16px; }

/* ---------------- Mission & values ---------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.value-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.motto-banner {
  text-align: center;
  padding: 70px 24px;
  background: var(--red);
  color: var(--cream);
  border-radius: var(--radius);
}
.motto-banner .script { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.contact-card .icon-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-circle svg { width: 22px; height: 22px; stroke: var(--red); }
.contact-card h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-card p { margin: 0; font-size: 0.92rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 20px; height: 20px; }

/* ---------------- Auth ---------------- */
.auth-panel {
  max-width: 420px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.auth-switch { text-align: center; margin-top: 16px; font-size: 0.9rem; }
.auth-switch button { background: none; border: none; color: var(--red); font-weight: 700; padding: 0; }
.account-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700;
}
.order-history-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.order-history-item .oh-head { display: flex; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 6px; }
.oh-status {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: var(--cream-dim); color: var(--green);
}
.oh-items { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--green-dark); color: var(--cream); padding: 64px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { color: rgba(251,246,236,0.7); font-size: 0.9rem; max-width: 30ch; }
.site-footer h4 { color: var(--gold-light); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(251,246,236,0.82); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(251,246,236,0.15);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(251,246,236,0.6);
}
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(251,246,236,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg { width: 17px; height: 17px; }

/* ---------------- WhatsApp float button ---------------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- Page hero banner (inner pages) ---------------- */
.page-banner {
  padding: 54px 0 44px;
  text-align: center;
  background: var(--cream-dim);
}

/* ---------------- Skeleton / loading ---------------- */
.skel { background: linear-gradient(90deg, var(--cream-dim) 25%, #eee 37%, var(--cream-dim) 63%); background-size: 400% 100%; animation: skel 1.4s ease infinite; border-radius: var(--radius-sm); }
@keyframes skel { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .story-block, .story-block.reverse { grid-template-columns: 1fr; }
  .story-block.reverse .story-img { order: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail .pd-image { border-radius: var(--radius) var(--radius) 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-panel {
    max-width: 100%;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: 0;
  }
  .product-detail .pd-image { padding: 20px; }
  .product-detail .pd-image img { max-height: 220px; }
  .product-detail .pd-content { padding: 24px 20px 32px; }
  .pd-tab { font-size: 0.82rem; margin-right: 16px; }
  .nutrition-table { font-size: 0.82rem; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 73px; left: 0; right: 0; bottom: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 22px; transform: translateX(-100%); transition: transform 0.25s ease; z-index: 550; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 44px 0; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 6px 0 0 14px; display: none; min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { font-size: 1rem; padding: 8px 0; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 16px 12px 20px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
}
