@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2d6a2d;
  --green-dark:   #1a4a1a;
  --green-mid:    #3d8b3d;
  --green-light:  #e8f5e8;
  --cream:        #faf8f2;
  --cream-dark:   #f0ebe0;
  --cream-border: #d8d0c0;
  --text:         #1a1a1a;
  --text-mid:     #444;
  --text-light:   #777;
  --red:          #b83232;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --radius:       12px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

/* ── NAV ─────────────────────────────────────────── */
.site-nav {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-head);
  color: #fff;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.nav-logo small {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.78;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
}
.nav-links a:hover,
.nav-links a:focus-visible { background: rgba(255,255,255,0.18); outline: none; color: #fff; }
.nav-links a.active { background: rgba(255,255,255,0.22); font-weight: 700; }
.nav-cart { background: rgba(255,255,255,0.15) !important; font-weight: 700 !important; }

.cart-badge {
  background: #fff;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.visible { display: inline-flex; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 56px;
  padding: 0.8rem 1.75rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 4px 14px rgba(0,0,0,0.22); color: #fff; }

.btn-green-light { background: var(--green-light); color: var(--green-dark); border: 2px solid #b8dbb8; }
.btn-green-light:hover { background: #d0ecd0; }

.btn-cream { background: var(--cream); color: var(--green); border: 2px solid var(--cream-border); }
.btn-cream:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.14); }

.btn-outline { background: transparent; color: var(--green); border: 2.5px solid var(--green); }
.btn-outline:hover { background: var(--green-light); }

.btn-outline-white { background: transparent; color: #fff; border: 2.5px solid rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #8b2020; }

.btn-full { width: 100%; }
.btn-lg { min-height: 64px; font-size: 1.25rem; padding: 1rem 2.5rem; border-radius: 12px; }

/* ── PAGE WRAPPER ────────────────────────────────── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 55%, #3d8b3d 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '🌿';
  position: absolute;
  font-size: 18rem;
  opacity: 0.06;
  right: -3rem;
  bottom: -4rem;
  line-height: 1;
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 3.5rem 1.25rem; }
.section-alt { background: var(--cream-dark); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--green);
  margin-bottom: 0.4rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* ── FEATURES GRID (homepage) ────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2.8rem; display: block; margin-bottom: 0.75rem; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--green); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.95rem; color: var(--text-mid); }

/* ── HOW IT WORKS ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step-card { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 58px; height: 58px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-head);
  box-shadow: 0 4px 12px rgba(45,106,45,0.35);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.step-card p { font-size: 0.95rem; color: var(--text-mid); }

/* ── CATEGORY CARDS (homepage) ───────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.1rem;
}
.cat-card {
  background: #fff;
  border: 2.5px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-card:hover, .cat-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(45,106,45,0.15);
  transform: translateY(-3px);
  outline: none;
}
.cat-emoji { font-size: 2.8rem; display: block; margin-bottom: 0.5rem; }
.cat-name { font-weight: 700; font-size: 0.98rem; color: var(--text); }

/* ── STORE INFO ───────────────────────────────────── */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.store-block h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--green); margin-bottom: 0.75rem; }
.store-block p, .store-block li { font-size: 1rem; color: var(--text-mid); margin-bottom: 0.35rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.35rem 0; font-size: 1rem; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green); }

/* ── PAGE HEADER (inner pages) ───────────────────── */
.page-header {
  background: linear-gradient(to right, var(--green-dark), var(--green));
  color: #fff;
  padding: 2.5rem 1.25rem 2rem;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0.2rem;
}
.page-header p { opacity: 0.85; font-size: 1rem; }
.breadcrumb { font-size: 0.88rem; opacity: 0.7; margin-bottom: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ── SHOP: CATEGORY FILTER ───────────────────────── */
.cat-filter {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
  padding: 0.8rem 1.25rem;
}
.cat-filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.cat-filter-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  min-height: 44px;
  border: 2px solid var(--cream-border);
  border-radius: 50px;
  background: #fff;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.cat-btn:hover { border-color: var(--green); color: var(--green); }
.cat-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.cat-btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* ── PRODUCT GRID ─────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.15s;
}
.product-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.11); }
.product-emoji { font-size: 4rem; line-height: 1; margin-bottom: 0.75rem; display: block; }
.product-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.3; flex: 1; }
.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  font-family: var(--font-head);
}
.product-card .btn { width: 100%; }
.btn-added { background: #155724 !important; }

/* ── TOAST ───────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  background: var(--green-dark);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ── CART PAGE ───────────────────────────────────── */
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty .empty-icon { font-size: 5rem; display: block; margin-bottom: 1rem; }
.cart-empty h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--green); margin-bottom: 0.5rem; }
.cart-empty p { color: var(--text-mid); margin-bottom: 2rem; font-size: 1.05rem; }

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}
.cart-item-emoji { font-size: 2.6rem; line-height: 1; }
.cart-item-info { min-width: 0; }
.cart-item-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.cart-item-unit { font-size: 0.88rem; color: var(--text-light); }
.cart-item-subtotal { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-top: 0.2rem; }
.cart-item-controls { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.qty-row { display: flex; align-items: center; gap: 0.6rem; }
.qty-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--cream-border);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.qty-btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.qty-display { font-size: 1.25rem; font-weight: 700; min-width: 32px; text-align: center; }
.remove-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  transition: background 0.15s;
  font-family: var(--font-body);
}
.remove-btn:hover { background: #fde8e8; }

.cart-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--cream-border);
}
.cart-total-label { font-size: 1.1rem; color: var(--text-mid); }
.cart-total-amount { font-size: 2.2rem; font-weight: 700; color: var(--green); font-family: var(--font-head); }
.cart-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.keep-shopping {
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: block;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.keep-shopping:hover { background: var(--green-light); }

/* ── CHECKOUT ─────────────────────────────────────── */
.checkout-wrap { max-width: 680px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.form-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.form-card h2 { font-family: var(--font-head); font-size: 1.35rem; color: var(--green); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--cream-border); }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 56px;
  appearance: none;
}
.form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,45,0.15); outline: none; }
.form-input::placeholder { color: #aaa; }
textarea.form-input { min-height: 100px; resize: vertical; line-height: 1.5; }

.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.delivery-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.delivery-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.25rem 1rem;
  border: 2.5px solid var(--cream-border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 115px;
  justify-content: center;
  text-align: center;
}
.delivery-option label:hover { border-color: var(--green); background: var(--green-light); }
.delivery-option input[type="radio"]:checked + label { border-color: var(--green); background: var(--green); color: #fff; }
.delivery-option input[type="radio"]:focus-visible + label { outline: 3px solid var(--green); outline-offset: 3px; }
.opt-icon { font-size: 2.2rem; }
.opt-name { font-weight: 700; font-size: 1.05rem; }
.opt-desc { font-size: 0.88rem; opacity: 0.75; }

.reassurance {
  background: var(--green-light);
  border: 1.5px solid #b8dbb8;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ── CONFIRMATION ─────────────────────────────────── */
.confirm-wrap { max-width: 680px; margin: 0 auto; padding: 2rem 1.25rem 4rem; text-align: center; }
.confirm-icon { font-size: 5rem; display: block; margin: 1.5rem auto 1rem; }
.confirm-title { font-family: var(--font-head); font-size: 2.2rem; color: var(--green); margin-bottom: 0.4rem; }
.confirm-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2rem; }
.confirm-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); text-align: left; margin-bottom: 1.25rem; }
.confirm-card h3 { font-family: var(--font-head); color: var(--green); font-size: 1.2rem; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--cream-border); }
.confirm-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.45rem 0; border-bottom: 1px solid var(--cream-border); font-size: 1rem; gap: 1rem; }
.confirm-row:last-child { border-bottom: none; }
.confirm-row-name { color: var(--text-mid); }
.confirm-row-val { font-weight: 600; text-align: right; }
.confirm-total-row { display: flex; justify-content: space-between; font-size: 1.25rem; font-weight: 700; color: var(--green); padding-top: 1rem; margin-top: 0.5rem; border-top: 2.5px solid var(--green-light); }
.confirm-notice { background: var(--green-light); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem; }
.confirm-notice h3 { font-family: var(--font-head); color: var(--green); margin-bottom: 0.5rem; font-size: 1.2rem; }
.confirm-notice p { color: var(--text-mid); font-size: 0.98rem; margin-bottom: 0.3rem; }
.confirm-notice a { color: var(--green); font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  padding: 3rem 1.25rem 1.75rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.92rem; opacity: 0.72; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.7rem; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,0.68); text-decoration: none; font-size: 0.92rem; padding: 0.2rem 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.68); margin-bottom: 0.25rem; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 800px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .store-grid    { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  html { font-size: 18px; }

  .nav-links .hide-mobile { display: none; }

  .hero { padding: 3rem 1rem 2.5rem; }
  .hero::after { display: none; }
  .hero-btns { flex-direction: column; align-items: stretch; padding: 0 1rem; }

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

  .product-grid { grid-template-columns: 1fr; }

  .delivery-options { grid-template-columns: 1fr; }

  .cart-item { grid-template-columns: auto 1fr; }
  .cart-item-controls {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--cream-border);
    margin-top: 0.5rem;
    width: 100%;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }

  .form-card { padding: 1.25rem; }
  .confirm-card { padding: 1.25rem; }
}

@media (max-width: 400px) {
  .btn-lg { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════
   PROFESSIONAL POLISH — additions
   ═══════════════════════════════════════════════════ */

/* ── Section title accent underline ─────────────── */
.section-title {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green-mid);
  border-radius: 2px;
  margin-top: 0.6rem;
}
.section-title-center { text-align: center; }
.section-title-center::after { margin-left: auto; margin-right: auto; }
.section-title-white { color: #fff; }
.section-title-white::after { background: rgba(255,255,255,0.5); }

/* ── Trust bar ───────────────────────────────────── */
.trust-bar {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.7rem 1.25rem;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.trust-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.trust-sep { color: rgba(255,255,255,0.25); font-size: 0.85rem; }
@media (max-width: 600px) { .trust-sep { display: none; } }

/* ── Nav phone + open/closed status ─────────────── */
.nav-phone {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 44px;
  letter-spacing: 0.01em;
}
.nav-phone:hover { color: #fff; background: rgba(255,255,255,0.1); }
.open-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.open-dot.is-open  { background: rgba(100,255,120,0.18); color: #a0ffb0; }
.open-dot.is-closed{ background: rgba(255,100,100,0.18); color: #ffb0b0; }
.open-dot-circle {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.is-open  .open-dot-circle { background: #4dff70; animation: pulse-green 2s infinite; }
.is-closed .open-dot-circle { background: #ff7070; }
@keyframes pulse-green {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* ── Feature card icon circle ────────────────────── */
.feature-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid rgba(45,106,45,0.15);
}
.feature-icon { font-size: 2rem; margin-bottom: 0; display: block; }
.feature-card {
  border-top: 3px solid var(--green-light);
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-top-color: var(--green); box-shadow: 0 6px 24px rgba(45,106,45,0.12); }

/* ── Step connector line ─────────────────────────── */
@media (min-width: 801px) {
  .steps-grid { position: relative; }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(33.33% - 0px);
    right: calc(33.33% - 0px);
    height: 2px;
    background: linear-gradient(to right, transparent, var(--green-light) 20%, var(--cream-border) 50%, var(--green-light) 80%, transparent);
    z-index: 0;
    pointer-events: none;
  }
  .step-card { position: relative; z-index: 1; }
}

/* ── Category cards — per-category colour ────────── */
.cat-card[href*="vegetables"] { background: #f2faf2; border-color: #b8dbb8; }
.cat-card[href*="vegetables"]:hover { border-color: #4a9a4a; background: #e8f5e8; }
.cat-card[href*="fruit"]      { background: #fffbf0; border-color: #e8cc80; }
.cat-card[href*="fruit"]:hover{ border-color: #c89020; background: #fff5d8; }
.cat-card[href*="meat"]       { background: #fdf5f5; border-color: #e0b8b8; }
.cat-card[href*="meat"]:hover { border-color: #c03030; background: #feeae8; }
.cat-card[href*="asian"]      { background: #f8f2fd; border-color: #d0b0e8; }
.cat-card[href*="asian"]:hover{ border-color: #8844bb; background: #f0e4fc; }
.cat-card[href*="juices"]     { background: #f0f6ff; border-color: #a8c8e8; }
.cat-card[href*="juices"]:hover{ border-color: #2068b0; background: #e0eefa; }

/* ── Product card — category top accent ─────────── */
.product-card { border-top: 4px solid var(--cream-border); position: relative; overflow: hidden; }
.product-card[data-cat="vegetables"] { border-top-color: #4a9a4a; }
.product-card[data-cat="fruit"]      { border-top-color: #d4861a; }
.product-card[data-cat="meat"]       { border-top-color: #c03030; }
.product-card[data-cat="asian"]      { border-top-color: #8844bb; }
.product-card[data-cat="juices"]     { border-top-color: #2068b0; }

/* "In cart" badge on product card */
.in-cart-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Product emoji on coloured circle */
.product-emoji-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.product-card[data-cat="vegetables"] .product-emoji-wrap { background: #edf7ed; }
.product-card[data-cat="fruit"]      .product-emoji-wrap { background: #fff8e8; }
.product-card[data-cat="meat"]       .product-emoji-wrap { background: #fdf0f0; }
.product-card[data-cat="asian"]      .product-emoji-wrap { background: #f6f0fc; }
.product-card[data-cat="juices"]     .product-emoji-wrap { background: #edf3ff; }
.product-emoji { font-size: 3.2rem; line-height: 1; margin-bottom: 0; }

/* ── Sticky cart bar (shop page) ─────────────────── */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  z-index: 150;
  transform: translateY(105%);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-info { flex: 1; }
.sticky-cart-count { font-size: 1rem; font-weight: 700; }
.sticky-cart-total { font-size: 0.88rem; opacity: 0.8; }
.sticky-cart-bar .btn { flex-shrink: 0; min-height: 48px; }

/* Push content up when sticky bar is shown */
.shop-page-wrap { padding-bottom: 5rem; }

/* Category heading on shop page */
.cat-heading {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cat-heading-sub { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1rem; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-light);
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { border-left-color: var(--green); box-shadow: 0 6px 24px rgba(45,106,45,0.1); }
.t-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
  quotes: '\201C' '\201D';
}
.testimonial-card blockquote::before { content: open-quote; font-size: 1.4em; color: var(--green-light); vertical-align: -0.3em; line-height: 0; margin-right: 0.1em; }
.testimonial-card cite { font-size: 0.9rem; font-weight: 700; color: var(--green); font-style: normal; }

@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Cart badge pop animation ────────────────────── */
@keyframes badge-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.pop { animation: badge-pop 0.4s ease; }

/* ── Delivery area banner ────────────────────────── */
.delivery-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: #fff;
  padding: 2rem 1.25rem;
  text-align: center;
}
.delivery-banner-inner { max-width: 800px; margin: 0 auto; }
.delivery-banner h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 0.5rem; }
.delivery-banner p { opacity: 0.9; font-size: 1rem; margin-bottom: 1.25rem; }
.delivery-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.delivery-chip {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Print styles (confirmation page) ───────────── */
@media print {
  .site-nav, .site-footer, .btn, .keep-shopping, .trust-bar, .sticky-cart-bar { display: none !important; }
  body { background: #fff; font-size: 14px; }
  .confirm-wrap { max-width: 100%; padding: 0; }
  .confirm-card, .confirm-notice { box-shadow: none; border: 1px solid #ccc; }
}

