:root {
  --a32-teal: #0D7377;
  --a32-teal-dark: #0A3D40;
  --a32-coral: #FF6B4A;
  --a32-purple: #2D1B4E;
  --a32-lime: #B4FF39;
  --a32-blue: #0088CC;
  --a32-ink: #121212;
  --a32-muted: #6B7280;
  --a32-cream: #F8F6F3;
  --a32-white: #FFFFFF;
  --a32-border: #E5E7EB;
  --a32-radius: 12px;
  --a32-shadow: 0 8px 30px rgba(13, 115, 119, 0.12);
  --font-body: 'Sora', system-ui, sans-serif;
  --font-display: 'Syne', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a32-store {
  margin: 0;
  font-family: var(--font-body);
  color: var(--a32-ink);
  background: var(--a32-white);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--a32-teal); text-decoration: none; }
a:hover { color: var(--a32-coral); }
.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: 2.75rem 0; }
.section-muted { background: var(--a32-cream); }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.6rem; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); text-decoration: none !important; }
.btn-primary {
  background: var(--a32-blue);
  color: #fff;
  border-color: var(--a32-blue);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.35);
}
.btn-primary:hover { background: #0077b3; color: #fff; }
.btn-light { background: #fff; color: var(--a32-purple); border-color: #fff; }
.btn-soft { background: var(--a32-cream); color: var(--a32-ink); }

.price { font-weight: 700; color: var(--a32-coral); }
.price s { color: var(--a32-muted); font-weight: 400; margin-right: 0.35rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--a32-border);
  border-radius: var(--a32-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--a32-shadow); transform: translateY(-3px); }

.page-hero {
  background: linear-gradient(135deg, var(--a32-purple), var(--a32-teal-dark));
  color: #fff;
  padding: 3rem 0;
}
.page-hero h1 { font-family: var(--font-display); margin: 0.5rem 0; }
.page-hero .eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; opacity: 0.85; }
.page-hero .hero-lede { opacity: 0.9; max-width: 52ch; }

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