/* ==========================================================
   Harvest Table — Fresh Grocery Delivery
   Brand palette: green / orange / cream / forest
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ── Custom properties ──────────────────────────────────── */
:root {
  --green:   #2f7d4f;
  --green-lt:#4aaa70;
  --green-bg:#e8f5ee;
  --orange:  #f08a24;
  --orange-lt:#ffa94d;
  --orange-bg:#fff3e0;
  --cream:   #fbf6ec;
  --forest:  #14361f;
  --ink:     #22281f;
  --ink-60:  #636b5e;
  --ink-30:  #b4bab0;
  --white:   #ffffff;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(20,54,31,.07);
  --shadow-md: 0 6px 24px rgba(20,54,31,.10);
  --shadow-lg: 0 16px 48px rgba(20,54,31,.13);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);

  --nav-h: 68px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utility ────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

/* ── Page-load reveal ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--transition), transform .6s var(--transition);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1.5px solid rgba(47,125,79,.1);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo span em {
  font-style: normal;
  color: var(--orange);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin-left: 8px;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-60);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-bg);
  color: var(--green);
  outline: none;
}

/* Postcode chip */
.nav-postcode {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid rgba(47,125,79,.18);
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-postcode:hover { background: #d3ede0; box-shadow: var(--shadow-sm); }
.nav-postcode svg { width: 14px; height: 14px; }

/* Cart button */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  position: relative;
}
.cart-btn:hover, .cart-btn:focus-visible {
  background: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,138,36,.35);
  outline: none;
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-meta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.cart-meta .cart-count { font-size: 11px; font-weight: 600; opacity: .85; }
.cart-meta .cart-total { font-size: 14px; font-weight: 800; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transition: transform .15s;
}
.cart-badge.bump { animation: badge-bump .25s ease; }
@keyframes badge-bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100svh - var(--nav-h));
  background:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(240,138,36,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(47,125,79,.10) 0%, transparent 60%),
    var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange-bg), #fff8ed);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(240,138,36,.25);
  width: fit-content;
}
.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
}
.hero h1 .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-60);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(47,125,79,.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,125,79,.30);
  outline: none;
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(34,40,31,.18);
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--white);
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.hero-delivery-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.hero-delivery-chip svg { width: 16px; height: 16px; }

/* Hero illustration / photo */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-visual svg.hero-svg { width: min(420px, 90%); height: auto; }

/* Hero real photo */
.hero-photo {
  width: min(480px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.free-delivery-badge {
  position: absolute;
  bottom: 12px; right: 0;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.free-delivery-badge em { font-style: normal; color: var(--orange-lt); }

/* ══════════════════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════════════════ */
section { padding: 72px 0; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 2.5vw + .5rem, 2.5rem);
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.7;
}
.section-header .section-label {
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   CATEGORIES
   ══════════════════════════════════════════════════════════ */
.categories-section { background: var(--white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px 18px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background: var(--cream);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  position: relative;
}
.cat-tile:hover {
  background: var(--green-bg);
  border-color: rgba(47,125,79,.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-tile:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
.cat-tile.active {
  background: var(--green-bg);
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.cat-tile.active .cat-name { color: var(--green); }

.cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-icon svg { width: 36px; height: 36px; }

.cat-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  transition: color var(--transition);
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════════════ */
.products-section { background: var(--cream); }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-visual {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.product-visual svg { width: 90px; height: 90px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.08)); }

/* Real photo variant — no padding, image fills the slot */
.product-visual--photo {
  padding: 0;
  overflow: hidden;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-photo {
  transform: scale(1.04);
}

.product-info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-category-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
}
.product-unit {
  font-size: 13px;
  color: var(--ink-60);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-add:hover, .btn-add:focus-visible {
  background: var(--green-lt);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(47,125,79,.3);
  outline: none;
}
.btn-add.added {
  background: var(--orange);
  animation: add-pulse .3s ease;
}
@keyframes add-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.btn-add svg { width: 14px; height: 14px; }

.product-card[data-hidden="true"] {
  display: none;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 24px;
  color: var(--ink-60);
  font-size: 16px;
  display: none;
}
.no-results.visible { display: block; }

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════ */
.trust-section {
  background: linear-gradient(135deg, var(--forest) 0%, #1e5232 100%);
  padding: 56px 0;
}

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,.9);
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--orange-lt); }
.trust-item-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.trust-item-text p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.how-section { background: var(--white); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-bg) 0 8px, transparent 8px 14px);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
}

.how-step-num {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--green-bg);
  border: 2px solid rgba(47,125,79,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.how-step-num svg { width: 32px; height: 32px; color: var(--green); }

.how-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--forest);
}
.how-step p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   DELIVERY / POSTCODE BAND
   ══════════════════════════════════════════════════════════ */
.delivery-section {
  background: linear-gradient(135deg, rgba(240,138,36,.08) 0%, rgba(47,125,79,.08) 100%),
              var(--cream);
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.delivery-info h2 {
  font-size: clamp(1.5rem, 2vw + .5rem, 2.2rem);
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 16px;
}
.delivery-info p {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 24px;
}
.delivery-times {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.delivery-times li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.delivery-times li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.postcode-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.postcode-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 8px;
}
.postcode-box p {
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.postcode-form {
  display: flex;
  gap: 10px;
}
.postcode-input {
  flex: 1;
  background: var(--cream);
  border: 2px solid rgba(47,125,79,.2);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: border-color var(--transition);
}
.postcode-input:focus {
  outline: none;
  border-color: var(--green);
}
.postcode-input::placeholder { color: var(--ink-30); text-transform: none; letter-spacing: 0; }

.btn-check {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-check:hover { background: var(--green-lt); transform: translateY(-1px); }

.postcode-result {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.postcode-result.success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-bg);
  color: var(--green);
  border: 1.5px solid rgba(47,125,79,.25);
}
.postcode-result.error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff0f0;
  color: #c0392b;
  border: 1.5px solid rgba(192,57,43,.2);
}
.postcode-result svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.postcode-result span { line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--cream);
  padding: 72px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--orange); }

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
}
.testimonial-author-info span {
  font-size: 13px;
  color: var(--ink-60);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255,255,255,.6);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li svg { width: 12px; height: 12px; color: var(--green-lt); flex-shrink: 0; }
.footer-col ul a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: var(--orange-lt);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,54,31,.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(20,54,31,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1.5px solid rgba(47,125,79,.1);
  flex-shrink: 0;
}
.cart-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--forest);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cart-close:hover { background: #e0d9ce; }
.cart-close svg { width: 18px; height: 18px; color: var(--ink); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-60);
  font-size: 15px;
  text-align: center;
  padding: 40px;
}
.cart-empty svg { width: 64px; height: 64px; opacity: .3; }
.cart-empty h3 { font-size: 17px; color: var(--ink); font-weight: 700; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.cart-item-thumb {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-thumb svg { width: 36px; height: 36px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--forest); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-unit { font-size: 12px; color: var(--ink-60); }
.cart-item-price { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--ink); }
.cart-item-remove {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(192,57,43,.1);
  color: #c0392b;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.cart-item-remove:hover { background: rgba(192,57,43,.2); }
.cart-item-remove svg { width: 12px; height: 12px; }

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(47,125,79,.12);
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.cart-qty-btn:hover { background: rgba(47,125,79,.22); }
.cart-qty { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1.5px solid rgba(47,125,79,.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-60);
}
.cart-subtotal strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
}
.free-delivery-note {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  text-align: center;
}
.btn-checkout {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(47,125,79,.25);
}
.btn-checkout:hover {
  background: var(--green-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(47,125,79,.30);
}
.btn-continue {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  transition: color var(--transition);
}
.btn-continue:hover { color: var(--green); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 60px;
  }
  .hero-copy { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { order: -1; }
  .free-delivery-badge { position: static; margin-top: 16px; display: inline-block; }
  .hero-visual { flex-direction: column; }

  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }

  .delivery-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links, .nav-postcode { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner .cart-btn .cart-meta { display: none; }

  .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }

  /* Mobile nav open */
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(47,125,79,.1);
    z-index: 99;
  }
  .nav-mobile-open .nav-links li { width: 100%; }
  .nav-mobile-open .nav-links a {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .postcode-form { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
}

/* ── Focus ring global ─────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
