:root {
  --a35-orange: #E8913A;
  --a35-orange-dark: #D07A28;
  --a35-forest: #3D5A45;
  --a35-sage: #6B9080;
  --a35-rose: #C2557A;
  --a35-cream: #FFF8F0;
  --a35-warm: #FFFBF5;
  --a35-white: #FFFFFF;
  --a35-ink: #2A2118;
  --a35-muted: #6B6058;
  --a35-border: #E8DFD6;
  --a35-gold: #F4A024;
  --a35-yellow: #E8913A;
  --a35-yellow-dark: #D07A28;
  --a35-red: #D64545;
  --a35-link: #3D5A45;
  --a35-dark: #1E1E1E;
  --a35-radius: 8px;
  --a35-shadow: 0 10px 32px rgba(42, 33, 24, 0.08);
  --a35-photo-bg: linear-gradient(165deg, #ffffff 0%, #faf6f2 100%);
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-display: 'Lora', Georgia, serif;
}

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

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

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

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.5rem; border-radius: var(--a35-radius); font-weight: 700;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
}
.btn-primary { background: var(--a35-forest); color: #fff; }
.btn-primary:hover { background: var(--a35-orange); }
.btn-soft {
  background: rgba(61, 90, 69, 0.08);
  color: var(--a35-forest);
  border: 2px solid rgba(61, 90, 69, 0.15);
}
.btn-soft:hover { background: rgba(61, 90, 69, 0.14); text-decoration: none !important; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-light { background: #fff; color: var(--a35-ink); }

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

.a35-prod-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--a35-photo-bg);
  border: 1px solid var(--a35-border);
  border-radius: 8px;
  padding: 0.85rem;
  overflow: hidden;
}
.a35-prod-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.a35-stars { color: var(--a35-gold); font-size: 0.85rem; letter-spacing: 0.05em; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--a35-muted); }
.empty-state .sub { font-size: 0.9rem; margin-top: 0.5rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a35-orange);
  margin-bottom: 0.5rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--a35-cream) 0%, #fff 100%);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--a35-border);
}
.page-hero h1 { font-family: var(--font-display); margin: 0.25rem 0 0.5rem; }
.hero-lede { color: var(--a35-muted); max-width: 60ch; margin: 0; }
