:root {
  --a36-teal: #1A535C;
  --a36-teal-dark: #0F3A40;
  --a36-mango: #FF9F1C;
  --a36-mango-dark: #E88A00;
  --a36-berry: #E63946;
  --a36-purple: #5A189A;
  --a36-mint: #4ECDC4;
  --a36-cream: #FFFBF5;
  --a36-warm: #FFF8F0;
  --a36-white: #FFFFFF;
  --a36-ink: #14213D;
  --a36-muted: #5C6778;
  --a36-border: #E2DDD4;
  --a36-gold: #FFB703;
  --a36-link: #1A535C;
  --a36-radius: 8px;
  --a36-shadow: 0 10px 32px rgba(20, 33, 61, 0.1);
  --a36-photo-bg: linear-gradient(165deg, #ffffff 0%, #faf8f5 100%);
  --a36-layout-gap: clamp(1rem, 2vw, 1.75rem);
  --a36-sidebar-min: 220px;
  --a36-sidebar-max: 300px;
  --a36-stage-cols: minmax(0, 1fr) minmax(var(--a36-sidebar-min), var(--a36-sidebar-max));
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
  /* legacy aliases for page CSS */
  --a36-terracotta: var(--a36-mango);
  --a36-terracotta-dark: var(--a36-mango-dark);
  --a36-olive: var(--a36-teal);
  --a36-sage: var(--a36-teal);
  --a36-hero-orange: var(--a36-mango);
  --a36-hero-green: var(--a36-teal);
  --a36-red: var(--a36-berry);
  --a36-ink: #14213D;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a36-store {
  margin: 0;
  font-family: var(--font-body);
  color: var(--a36-ink);
  background: var(--a36-warm);
  line-height: 1.55;
}
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--a36-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(--a36-cream); }

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

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

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

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

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

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