/* ============================================
   FRESHII SUNDANCE — v32 Design System
   Matches Freshii corporate + ordering aesthetic
   with Caleb/Celebu local SEO framework
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Raleway:wght@300;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* --- Design Tokens (matched to freshii.com) --- */
:root {
  --green-primary: #13763C;
  --green-dark: #0D3320;
  --green-mid: #219E6B;
  --green-light: #D1F4E5;
  --green-pale: #EDF5F1;
  --coral: #FF9988;
  --coral-hover: #E8856F;
  --gold: #F4A259;
  --white: #FFFFFF;
  --off-white: #FCFCFC;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #9E9E9E;
  --gray-600: #434549;
  --gray-900: rgba(0,0,0,.87);
  --font-heading: 'Nunito', 'Raleway', sans-serif;
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --container: min(1200px, 92vw);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-hover: 0 4px 16px rgba(0,0,0,.12);
  --border: #E0E0E0;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}
a { color: var(--green-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
main { overflow: hidden; }
.container { width: var(--container); margin: 0 auto; }

/* --- Typography (Filson Pro Bold → Nunito 800, Hero New → Roboto 300) --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 var(--space-3); }

/* --- Utility --- */
.section { padding: var(--space-7) 0; }
.section--light { background: var(--green-pale); }
.section--sm { padding: var(--space-5) 0; }
.text-center { text-align: center; }
.text-light { color: var(--gray-600); }
.text-sm { font-size: .95rem; }
.mb-6 { margin-bottom: var(--space-6); }

/* =====================
   ORDER BAR (top strip)
   ===================== */
.order-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-dark);
  padding: .65rem 1rem;
  text-align: center;
}
.order-bar a {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.order-bar a:hover { text-decoration: underline; color: var(--green-light); }

/* ====================
   SITE HEADER — Leaf bg
   ==================== */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 40;
  background: var(--green-primary);
  background-image: url('../images/leaf-border.png');
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--green-dark);
}
.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.site-header__brand:hover { text-decoration: none; opacity: .92; }
.site-header__brand img { filter: brightness(0) invert(1); }

/* --- Desktop Nav (uppercase like freshii.com) --- */
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav__link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
  padding: .5rem .75rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background .2s;
}
.site-nav__link:hover {
  background: rgba(255,255,255,.15);
  text-decoration: none;
  color: var(--white);
}
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--coral);
  color: var(--white) !important;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.site-nav__cta:hover {
  background: var(--coral-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

/* --- Dropdown --- */
.site-nav__dropdown { position: relative; }
.site-nav__dropdown-toggle::after {
  content: " ▾";
  font-size: .7em;
  opacity: .7;
}
.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: .6rem;
  display: none;
  z-index: 100;
}
.site-nav__dropdown.is-open .site-nav__dropdown-menu { display: block; }
.site-nav__dropdown-menu a {
  display: block;
  padding: .6rem .75rem;
  border-radius: var(--radius);
  color: var(--gray-900);
  font-weight: 500;
}
.site-nav__dropdown-menu a:hover {
  background: var(--green-pale);
  text-decoration: none;
  color: var(--green-primary);
}
.divider { height: 1px; background: var(--gray-200); margin: .4rem 0; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  background: none;
  border: 0;
  padding: .3rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 99px;
  transition: transform .3s, opacity .3s;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 85vw);
  background: var(--white);
  padding: 5rem 1.25rem 2rem;
  box-shadow: -4px 0 20px rgba(0,0,0,.15);
  z-index: 60;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.is-open {
  display: block;
  transform: translateX(0);
}
.mobile-nav a {
  display: block;
  padding: .85rem .5rem;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
  color: var(--gray-900);
}
.mobile-nav a:hover { color: var(--green-primary); text-decoration: none; }
.mobile-nav__section-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 1.25rem 0 .4rem;
}
.mobile-nav__cta {
  margin-top: 1.25rem;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 999px;
  padding: 1rem 1.2rem !important;
  text-align: center;
  font-weight: 700;
  border-bottom: none !important;
}
.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  padding: .5rem;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 55;
}
.mobile-overlay.is-open { display: block; }

/* ===========
   HERO SECTION
   =========== */
.hero {
  padding: 4.5rem 0;
  position: relative;
  background: var(--green-dark);
}
.hero--with-image {
  background-size: cover;
  background-position: center;
}
.hero--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,51,32,.88) 0%, rgba(0,115,54,.65) 100%);
}
.hero__content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  color: var(--white);
}
.hero__content h1,
.hero__content p { color: var(--white); max-width: 680px; }
.hero__content p { opacity: .92; font-size: 1.1rem; }

/* --- Buttons --- */
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem 1.3rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn--accent { background: var(--coral); color: var(--white); }
.btn--accent:hover { background: var(--coral-hover); color: var(--white); }
.btn--primary { background: var(--green-primary); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); color: var(--white); }
.btn--white { background: var(--white); color: var(--green-dark); }
.btn--white:hover { background: var(--gray-100); color: var(--green-dark); }
.btn--outline { background: transparent; color: var(--green-primary); border-color: var(--green-primary); }
.btn--outline:hover { background: var(--green-pale); }
.btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
.btn--sm { padding: .55rem .9rem; font-size: .88rem; }

/* --- Pill-shaped buttons (matching freshii.com CTA style) --- */
.pill-btn {
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
}
.pill-btn.btn--accent { background: var(--coral); color: var(--white); }
.pill-btn.btn--accent:hover { background: var(--coral-hover); }
.pill-btn.btn--primary { background: var(--green-primary); color: var(--white); }
.pill-btn.btn--primary:hover { background: var(--green-dark); }

/* --- Star Rating in Hero --- */
.hero__rating {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--gold);
}

/* ============================
   FREE OFFER BANNER (Caleb #7)
   ============================ */
.offer-banner {
  background: linear-gradient(90deg, var(--green-light), #E8FFF3);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.offer-banner__icon { font-size: 2rem; flex-shrink: 0; }
.offer-banner__text { flex: 1; min-width: 200px; }
.offer-banner__text strong { color: var(--green-dark); }

/* ================================
   CARD GRIDS (menu, info, reviews)
   ================================ */
.card-grid { display: grid; gap: 1.25rem; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* --- Category Cards --- */
.cat-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none !important;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.cat-card__img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cat-card__body { padding: 1rem 1.15rem; }
.cat-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: .3rem;
  text-transform: uppercase;
}
.cat-card__desc { color: var(--gray-600); font-size: .93rem; line-height: 1.5; }

/* --- Item Cards (menu items) --- */
.item-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none !important;
}
.item-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.item-card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.item-card__body { padding: 1rem 1.1rem; }
.item-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .25rem;
}
.item-card__desc { color: var(--gray-600); font-size: .93rem; }
.item-card__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin: .7rem 0; }

/* --- Item Card Price and Calories --- */
.item-card__price {
  font-weight: 700;
  color: var(--green-primary);
  font-size: 1rem;
  margin: .5rem 0 0;
}
.item-card__cals {
  color: var(--gray-400);
  font-size: .85rem;
  font-weight: 300;
}

/* --- Dietary Tags --- */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .3rem .65rem;
  font-size: .8rem;
  font-weight: 600;
}
.tag--green { background: var(--green-light); color: var(--green-primary); }
.tag--warm { background: #FFF3EB; color: #A84C27; }
.tag--blue { background: #E8F4FD; color: #1565C0; }

/* Freshii.com dietary tags */
.tag--spicy { background: #FFE8E8; color: #D32F2F; }
.tag--vegan { background: #E8F5E9; color: #2E7D32; }
.tag--customizable { background: #F3E5F5; color: #6A1B9A; }
.tag--halal-friendly { background: #E3F2FD; color: #1565C0; }

/* --- Featured Strip --- */
.featured-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.featured-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow .2s;
  text-decoration: none !important;
}
.featured-item:hover { box-shadow: var(--shadow-hover); }
.featured-item__img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.featured-item__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-dark);
}
.featured-item__desc { font-size: .93rem; color: var(--gray-600); }

/* ============================
   GREEN BANNER BANDS (freshii.com style)
   ============================ */
.green-band {
  background-color: var(--green-dark);
  color: white;
  padding: var(--space-5) 0;
  width: 100%;
  margin: var(--space-7) 0;
}
.green-band h2 { color: white; }
.green-band h2,
.green-band h3 {
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
.green-band a.btn { margin-top: var(--space-3); }
.green-band__text {
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.green-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--coral);
  color: var(--white) !important;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
  text-decoration: none;
}
.green-band__cta:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

/* =============================
   LEAF BOTTOM BORDER (freshii.com)
   ============================= */
.leaf-bottom {
  display: block;
  height: 60px;
  background: url('../images/leaf-border.png') center/cover;
  width: 100%;
  margin: var(--space-7) 0 0;
  position: relative;
}

/* ============================
   REVIEWS (Caleb #5 — HIGH)
   ============================ */
.reviews-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.reviews-header { text-align: center; margin-bottom: var(--space-5); }
.reviews-rating {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-primary);
}
.reviews-stars { font-size: 1.4rem; color: var(--gold); }
.reviews-count { color: var(--gray-600); margin-top: .25rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--gold); margin-bottom: .5rem; font-size: 1.1rem; }
.review-card__text { color: var(--gray-900); line-height: 1.6; font-style: italic; }
.review-card__attr { margin-top: .75rem; color: var(--gray-400); font-size: .88rem; }

/* --- Review Trust Module (inner pages) --- */
.review-trust {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
}
.review-trust p strong { color: var(--green-dark); }

/* ==========================
   HOW IT WORKS (Caleb #8)
   ========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-card .step-num,
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: .85rem;
}
.step-card h3 { color: var(--green-dark); }

/* ==============
   CTA BAND
   ============== */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

/* =================
   DIETARY OPTIONS
   ================= */
.diet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.diet-card {
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  transition: box-shadow .2s;
}
.diet-card:hover { box-shadow: var(--shadow-hover); }

/* ====================
   LOCAL MAP + CONTACT
   ==================== */
.local-copy { max-width: 900px; margin: 0 auto; }
.map-contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: start;
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.nap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.nap-card h3 { color: var(--green-dark); margin-bottom: .75rem; }
.nap-card p { margin-bottom: .5rem; color: var(--gray-900); }

/* ===============
   FAQ ACCORDION
   =============== */
.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 0;
  overflow: hidden;
}
.faq-card summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-dark);
  transition: background .2s;
}
.faq-card summary:hover { background: var(--green-pale); }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-primary);
  transition: transform .2s;
}
.faq-card[open] summary::after {
  content: "−";
}
.faq-card .faq-card__answer {
  padding: 0 1.25rem 1rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.faq-card p { margin-top: 0; padding: 0 1.25rem 1rem; color: var(--gray-600); }

/* ========================
   INFO CARDS (services)
   ======================== */
.info-card {
  background: var(--green-pale);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: none;
}
.info-card h3 { color: var(--green-dark); margin-bottom: var(--space-3); }

/* ========================
   PRICE CARDS (pricing page)
   ======================== */
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.price-card:hover { box-shadow: var(--shadow-hover); }
.price-card h3 { color: var(--green-dark); margin-bottom: var(--space-2); }
.price-highlight {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-primary);
  margin-bottom: var(--space-2);
}

/* ==========================
   CONTENT SECTIONS (inner pages)
   ========================== */
.content-section {
  padding: var(--space-6) 0;
}
.content-section h2 { margin-bottom: var(--space-4); }
.content-section h3 { margin-top: var(--space-4); }

/* --- FAQ Items (non-accordion style) --- */
.faq-item {
  margin-bottom: var(--space-4);
}
.faq-item h3 { margin-bottom: var(--space-2); }

/* ==============
   NOTICE BANNER
   ============== */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #FFF8F2;
  border: 1px solid #FFD7C7;
  color: #9B4F2B;
}

/* ================================
   FOOTER — White bg + green links (matches freshii.com)
   ================================ */
.footer {
  background: var(--white);
  color: var(--gray-600);
  padding: 3.5rem 0 2rem;
  margin-top: var(--space-7);
  border-top: 4px solid var(--green-primary);
}
.footer a { color: var(--green-primary); font-weight: 400; }
.footer a:hover { color: var(--green-dark); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .85rem;
  color: var(--green-dark);
}
.footer__links { display: grid; gap: .5rem; line-height: 2; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  font-size: .9rem;
}

/* --- Footer centered layout variant (for cleaner design) --- */
.footer--centered .footer__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer--centered .footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer--centered .footer__bottom {
  justify-content: center;
  text-align: center;
}

/* Leaf border strip at bottom of page (before footer) --- */
.leaf-bottom {
  display: block;
  height: 60px;
  background: url('../images/leaf-border.png') center/cover;
  width: 100%;
  margin: 0 0 var(--space-7) 0;
  position: relative;
}

/* Footer leaf border (alternative placement) */
.footer::before {
  content: "";
  display: block;
  height: 60px;
  background: url('../images/leaf-border.png') center/cover;
  margin: -3.5rem -50vw 2rem;
  padding: 0 50vw;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

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

/* === v34: Neutral placeholder for missing product images === */
.item-card__placeholder,
.product-card__placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, #13763C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
}
.item-card__placeholder span,
.product-card__placeholder span {
  display: block;
  font-size: 2rem;
  margin-bottom: .5rem;
  opacity: .7;
}

/* === v34: Review testimonial grid === */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* === v34: Visible Q&A cards (non-accordion) === */
.qa-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: var(--space-3);
}
.qa-card__q {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.qa-card__a {
  color: var(--gray-900);
  line-height: 1.6;
}

/* Tablet landscape */
@media (max-width: 960px) {
  .card-grid--3,
  .diet-grid,
  .steps-grid,
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band,
  .map-contact { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .featured-strip { grid-template-columns: 1fr; }
  .green-band { padding: 2rem 0; }
  .green-band__text { text-align: center; }
}

/* Tablet portrait / mobile */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
  .site-header { top: 40px; }
  .card-grid--3,
  .card-grid--4,
  .steps-grid,
  .diet-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0; }
  .hero__content h1 { font-size: 1.75rem; }
  .featured-item { grid-template-columns: 80px 1fr; }
  .featured-item__img { width: 80px; height: 80px; }
  .review-card { padding: 1rem; }
  .cta-band { padding: 1.5rem; text-align: center; }
  .offer-banner { flex-direction: column; text-align: center; }
  .green-band { flex-direction: column; padding: 1.5rem; }
  .green-band__cta { width: 100%; }
  .footer--centered .footer__links { flex-direction: column; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 1rem)); }
  .order-bar a { font-size: .88rem; }
  .btn { width: 100%; justify-content: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .hero { padding: 2.5rem 0; }
  .step-card { padding: 1rem; }
  h2 { font-size: 1.4rem; }
}
