:root {
  --a34-terracotta: #C84B31;
  --a34-terracotta-dark: #A63D28;
  --a34-olive: #5A7247;
  --a34-sage: #52796F;
  --a34-hero-orange: #D35400;
  --a34-hero-green: #4A7C59;
  --a34-cream: #FEF7ED;
  --a34-warm: #FFF9F3;
  --a34-white: #FFFFFF;
  --a34-ink: #2C2416;
  --a34-muted: #6B5E52;
  --a34-border: #E8DFD4;
  --a34-gold: #D4A017;
  --a34-red: #C44540;
  --a34-link: #5A7247;
  --a34-yellow: #5A7247;
  --a34-yellow-dark: #4A6741;
  --a34-radius: 6px;
  --a34-shadow: 0 8px 28px rgba(44, 36, 22, 0.08);
  --a34-photo-bg: linear-gradient(165deg, #ffffff 0%, #f9f7f4 100%);
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a34-store {
  margin: 0;
  font-family: var(--font-body);
  color: var(--a34-ink);
  background: var(--a34-warm);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--a34-link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1280px, 94vw); margin: 0 auto; }
.page-main { min-height: 50vh; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { padding: 3rem 0; }
.section-muted { background: var(--a34-cream); }

.a34-section-title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--a34-ink);
}
.a34-section-title em {
  font-family: var(--font-display);
  font-style: normal;
  border-bottom: 2px solid var(--a34-terracotta);
  padding-bottom: 0.15rem;
}
.a34-section-title--inline { text-align: left; margin-bottom: 0; }

.a34-btn-shop {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: var(--a34-ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.15s;
}
.a34-btn-shop:hover { background: var(--a34-terracotta); transform: translateY(-1px); text-decoration: none !important; }
.a34-btn-shop--dark { background: #1a1a1a; font-size: 0.78rem; padding: 0.6rem 1.2rem; }

.a34-btn-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--a34-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
}
.a34-btn-all:hover { background: var(--a34-terracotta-dark); text-decoration: none !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.5rem; border-radius: var(--a34-radius); font-weight: 700;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
}
.btn-primary { background: var(--a34-sage); color: #fff; }
.btn-light { background: #fff; color: var(--a34-ink); }

.price, .a34-product-price { font-weight: 700; color: var(--a34-red); }
.price s, .a34-product-price s { color: var(--a34-muted); font-weight: 400; margin-right: 0.35rem; }

/* Catalog product photo frame — full fruit visible, clean white stage */
.a34-prod-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--a34-photo-bg);
  border: 1px solid var(--a34-border);
  border-radius: 8px;
  padding: 0.85rem;
  overflow: hidden;
}
.a34-prod-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.product-card {
  background: #fff; border: 1px solid var(--a34-border); border-radius: var(--a34-radius);
  overflow: hidden; transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: var(--a34-shadow); }
.product-img { display: block; aspect-ratio: 1; background: #fafafa; position: relative; padding: 0.5rem; }
.product-img img { width: 100%; height: 100%; object-fit: contain; }

.page-hero {
  background: linear-gradient(135deg, var(--a34-sage) 0%, var(--a34-olive) 100%);
  color: #fff; padding: 2.5rem 0;
}
.page-hero h1 { margin: 0.25rem 0 0; font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero .eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; opacity: 0.85; margin: 0; }
.page-hero .hero-lede { margin: 0.5rem 0 0; opacity: 0.9; max-width: 52ch; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--a34-muted); }
