@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.4);
}
.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 { 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.75rem 1.25rem;
}
.cat-filter-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cat-filter-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.cat-filter-inner::-webkit-scrollbar { display: none; }

/* ── Search + sort controls ───────────────────── */
.shop-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.shop-search-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
}
.shop-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}
.shop-search-input {
  width: 100%;
  padding: 0.5rem 2.2rem 0.5rem 2.1rem;
  min-height: 42px;
  border: 2px solid var(--cream-border);
  border-radius: 50px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.shop-search-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,45,0.12);
}
.shop-search-input::placeholder { color: var(--text-light); }
.shop-search-clear {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream-border);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.shop-search-clear:hover { background: var(--cream-dark); }
.shop-sort-select {
  padding: 0.5rem 0.85rem;
  min-height: 42px;
  border: 2px solid var(--cream-border);
  border-radius: 50px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.shop-sort-select:focus {
  outline: none;
  border-color: var(--green);
}
.view-toggle {
  display: flex;
  border: 2px solid var(--cream-border);
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-height: 42px;
  border: none;
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.view-btn:first-child { border-right: 1px solid var(--cream-border); }
.view-btn.active { background: var(--green); color: #fff; }
.view-btn:not(.active):hover { background: var(--cream); color: var(--green); }
.view-btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
@media (max-width: 600px) {
  .shop-controls { flex-wrap: nowrap; }
  .shop-search-wrap { min-width: 0; }
  .shop-sort-select { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
}
.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-card.out-of-stock { opacity: 0.55; }
.product-card.out-of-stock:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.product-card.out-of-stock .product-img-wrap img,
.product-card.out-of-stock .product-img-placeholder { filter: grayscale(1); }
.product-notes { font-size: 0.78rem; color: #888; margin: 6px 0 0; text-align: center; font-style: italic; }
.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-order-num { font-size: 1rem; color: var(--text-light); letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.confirm-order-num strong { color: var(--green-dark); font-weight: 700; }
.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; }

/* Promotional badge on product card */
.promo-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #e53935;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  line-height: 1.4;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* "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; }
}

/* ═══════════════════════════════════════════════════
   ROUND 2 — PROFESSIONAL POLISH
   ═══════════════════════════════════════════════════ */

/* ── Font preconnect hint (applied via HTML <link>) */

/* ── Scroll-reveal ───────────────────────────────── */
.js-on .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-on .reveal.revealed { opacity: 1; transform: none; }
.js-on .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.js-on .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── SVG leaf logo adjustment ────────────────────── */
.nav-logo { flex-direction: row !important; align-items: center !important; gap: 0.5rem; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-leaf { flex-shrink: 0; }

/* ── Hero subtle texture ─────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cellipse cx='40' cy='40' rx='14' ry='24' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='2'/%3E%3Cellipse cx='40' cy='40' rx='5' ry='9' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

/* ── Wave divider (trust-bar → cream) ───────────── */
.wave-divider {
  display: block;
  line-height: 0;
  background: var(--green-dark);
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; height: 52px; }

/* ── Hamburger button ────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.13);
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(255,255,255,0.22); }
.hamburger:focus-visible { outline: 3px solid rgba(255,255,255,0.7); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.15s, width 0.15s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 600px) { .hamburger { display: flex; } }

/* ── Mobile menu ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--green-dark);
  z-index: 190;
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu-body { padding: 0.5rem 0 1.5rem; }
.mobile-menu-body a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.12s;
  min-height: 56px;
}
.mobile-menu-body a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-menu-sep { height: 1px; background: rgba(255,255,255,0.12); margin: 0.5rem 0; }
.mobile-menu-phone {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #a0ffb0 !important;
  background: rgba(0,0,0,0.15) !important;
}
.mobile-menu-hours {
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ── Cart — 2-column sticky summary on desktop ───── */
@media (min-width: 769px) {
  #cart-root.has-items {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
  }
  #cart-root.has-items .cart-summary {
    position: sticky;
    top: 90px;
  }
}

/* ── Checkout progress indicator ─────────────────── */
.checkout-progress {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--cream-border);
  padding: 1.1rem 1.25rem;
}
.cp-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.cp-step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.cp-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--cream-border);
  color: var(--text-light);
}
.cp-step.cp-done  .cp-circle { background: var(--green); color: #fff; }
.cp-step.cp-active .cp-circle { background: var(--green); color: #fff; box-shadow: 0 0 0 4px rgba(45,106,45,0.22); }
.cp-label { font-size: 0.72rem; font-weight: 700; color: var(--text-light); white-space: nowrap; letter-spacing: 0.02em; text-transform: uppercase; }
.cp-step.cp-done .cp-label, .cp-step.cp-active .cp-label { color: var(--green); }
.cp-line { flex: 1; height: 2px; background: var(--cream-border); margin: 0 0.5rem 1.1rem; }
.cp-line.cp-done { background: var(--green); }

/* ── Float-call button (mobile homepage) ─────────── */
.float-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(45,106,45,0.5);
  z-index: 88;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call:hover, .float-call:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(45,106,45,0.6);
  outline: none;
}
@media (max-width: 600px) { .float-call { display: flex; } }


/* ═══════════════════════════════════════════════════
   ROUND 3 — REAL IMAGES · STRIPE · GALLERY · POLISH
   ═══════════════════════════════════════════════════ */

/* ── Nav logo image pill ─────────────────────────── */
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
}
/* Override legacy flex/column layout from round-2 */
.nav-logo { flex-direction: row !important; align-items: center !important; }

/* ── Hero — real photo background ────────────────── */
.hero-photo {
  background: url('/Images/g6.jpg') center 60% / cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 35, 10, 0.78) 0%,
    rgba(20, 60, 20, 0.62) 50%,
    rgba(10, 30, 10, 0.72) 100%
  );
  pointer-events: none;
}
.hero-photo > * { position: relative; z-index: 1; }
.hero-photo h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}
.hero-photo p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  opacity: 0.93;
  max-width: 600px;
  margin: 0 auto 2.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-photo .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero-photo { padding: 4.5rem 1.25rem 4rem; }
  .hero-photo .hero-btns { flex-direction: column; align-items: stretch; }
}

/* ── Photo gallery grid ───────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
  overflow: hidden;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:first-child { grid-row: span 2; }

@media (max-width: 700px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 400px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4,140px); }
}

/* ── Store exterior banner ────────────────────────── */
.store-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.store-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem 1.5rem;
  background: rgba(10,35,10,0.52);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
  max-width: 480px;
}
.store-hero-overlay h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 0.5rem; }
.store-hero-overlay p  { opacity: 0.9; font-size: 1.05rem; margin-bottom: 1.25rem; }
@media (max-width: 600px) { .store-hero { height: 280px; } }

/* ── Product card — real image support ───────────── */
.product-img-wrap {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--cream-dark);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.product-img-placeholder {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder::after {
  content: '🛒';
  font-size: 2.8rem;
  opacity: 0.18;
}

/* ── Stripe payment step ──────────────────────────── */
#payment-step { animation: fadeSlide 0.35s ease; }
@keyframes fadeSlide {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: none; }
}
.stripe-card-wrap {
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  background: #fafafa;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.stripe-card-wrap.focused {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,45,0.15);
}
#card-errors {
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.6rem;
  min-height: 1.4em;
}
.secure-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: var(--text-light);
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.secure-badges span { display: flex; align-items: center; gap: 0.25rem; }
.order-total-banner {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* ── Footer logo image ────────────────────────────── */
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
}

/* ── 4-col footer on desktop ─────────────────────── */
@media (min-width: 801px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── Product grid — 3 col on wide screens ────────── */
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── List view ──────────────────────────────────── */
.product-grid.list-view,
.product-grid.list-view { grid-template-columns: 1fr !important; gap: 0.6rem; }
.product-grid.list-view .product-card {
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 0.75rem 1rem;
  gap: 1rem;
  border-top: none;
  overflow: visible;
}
.product-grid.list-view .product-card .product-img-wrap,
.product-grid.list-view .product-card .product-img-placeholder {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0;
}
.product-grid.list-view .product-card .product-img-wrap img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.product-grid.list-view .product-card .product-name {
  flex: 1;
  font-size: 1rem;
  margin: 0;
}
.product-grid.list-view .product-card .product-price {
  font-size: 1.1rem;
  margin: 0;
  white-space: nowrap;
}
.product-grid.list-view .product-card .btn-add { width: auto; white-space: nowrap; flex-shrink: 0; }
.product-grid.list-view .product-card .in-cart-badge,
.product-grid.list-view .product-card .promo-badge { display: none; }
.product-grid.list-view .product-card .product-notes { margin: 0; text-align: left; }

/* ── Account page ────────────────────────────────── */
.account-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cream-border);
  margin-bottom: 1.5rem;
}
.account-tab {
  flex: 1;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.account-tab:hover { color: var(--green); }
.account-tab.active { color: var(--green-dark); border-bottom-color: var(--green); }

.pw-wrap { position: relative; display: flex; align-items: center; }
.pw-wrap .form-input { padding-right: 3rem; flex: 1; }
.pw-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.pw-toggle:hover { opacity: 1; }

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--green);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}
.link-btn:hover { color: var(--green-dark); }

.form-error {
  background: #fde8e8;
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Google Maps embed ───────────────────────────── */
.map-link { display:inline-block; margin-bottom:0.5rem; font-weight:600; color:var(--green-dark); text-decoration:none; }
.map-link:hover { text-decoration:underline; }
.map-embed-wrap { border-radius:12px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,0.10); }
