:root {
  --a43-green: #2F5233;
  --a43-green-dark: #243D28;
  --a43-orange: #E07B54;
  --a43-orange-dark: #C45A35;
  --a43-berry: #A84550;
  --a43-gold: #D4A017;
  --a43-mint: #C8D9C0;
  --a43-cream: #F5F1E8;
  --a43-warm: #EDE8DF;
  --a43-surface: #FAFAF7;
  --a43-surface-elevated: #FFFFFF;
  --a43-white: #FFFFFF;
  --a43-ink: #1A2E1F;
  --a43-muted: #6B7A6E;
  --a43-border: #D8DFD4;
  --a43-link: #2F5233;
  --a43-radius: 12px;
  --a43-shadow: 0 12px 40px rgba(26, 46, 31, 0.08);
  --a43-photo-bg: linear-gradient(165deg, #FAFAF7 0%, #F0EDE6 100%);
  --a43-hero-gradient: linear-gradient(160deg, #E8F0E5 0%, #F5F1E8 55%, #EDE8DF 100%);
  --a43-blob-warm: rgba(212, 160, 23, 0.08);
  --a43-blob-cool: rgba(47, 82, 51, 0.06);
  --a43-layout-gap: clamp(1rem, 2vw, 1.75rem);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  /* legacy aliases */
  --a43-teal: var(--a43-green);
  --a43-teal-dark: var(--a43-green-dark);
  --a43-mango: var(--a43-orange);
  --a43-mango-dark: var(--a43-orange-dark);
  --a43-purple: var(--a43-berry);
  --a43-terracotta: var(--a43-orange);
  --a43-olive: var(--a43-green);
  --a43-sage: var(--a43-mint);
  --a43-hero-orange: var(--a43-orange);
  --a43-hero-green: var(--a43-green);
  --a43-red: var(--a43-berry);
  --a43-yellow: var(--a43-gold);
  --a43-yellow-dark: var(--a43-orange-dark);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a43-store {
  margin: 0;
  font-family: var(--font-body);
  color: var(--a43-ink);
  background: var(--a43-cream);
  line-height: 1.55;
}
body.a43-crudo {
  background: var(--a43-cream);
}
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--a43-link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}
.page-main {
  min-height: 50vh;
  flex: 1;
}
.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: clamp(2rem, 4vw, 3rem) 0; }
.section-muted { background: var(--a43-cream); }

.a43-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(--a43-ink);
}
.a43-section-title em {
  font-family: var(--font-display);
  font-style: normal;
  border-bottom: 2px solid var(--a43-mango);
  padding-bottom: 0.15rem;
}
.a43-section-title--inline { text-align: left; margin-bottom: 0; }

.a43-btn-shop {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: var(--a43-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;
}
.a43-btn-shop:hover { background: var(--a43-teal); transform: translateY(-1px); text-decoration: none !important; }
.a43-btn-shop--dark { background: #1a1a1a; font-size: 0.78rem; padding: 0.6rem 1.2rem; }

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

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

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

/* Catalog product photo frame — full fruit visible, clean white stage */
.a43-prod-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--a43-photo-bg);
  border: 1px solid var(--a43-border);
  border-radius: 8px;
  padding: 0.85rem;
  overflow: hidden;
}
.a43-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(--a43-border); border-radius: var(--a43-radius);
  overflow: hidden; transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: var(--a43-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(--a43-green-dark) 0%, var(--a43-green) 50%, var(--a43-orange) 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(--a43-muted); }
