:root {
  --bg: #ecfdf5;
  --surface: #ffffff;
  --border: #a7f3d0;
  --text: #14532d;
  --muted: #4d7c0f;
  --accent: #16a34a;
  --accent-2: #fbbf24;
  --price: #15803d;
  --cta-bg: #16a34a;
  --cta-text: #fff;
  --header-bg: rgba(236, 253, 245, 0.95);
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --radius: 14px;
  --cta-radius: 999px;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(34, 197, 94, 0.15) 0%, transparent 45%);
}

.sun-rays {
  pointer-events: none;
  position: fixed;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 65%);
  z-index: 0;
}

.v-header, .v-main, .v-footer { position: relative; z-index: 1; }

.v-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.v-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
}

.heliotrope-hero {
  padding: 2.5rem 0 2rem;
  max-width: 42ch;
}

.heliotrope-eyebrow {
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.heliotrope-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.heliotrope-title em {
  font-style: normal;
  color: var(--accent);
}

.heliotrope-lede {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.v-grid-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.community-block { margin-top: 2.5rem; }

.v-grid--heliotrope { gap: 1.15rem; }

.product-card {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.08);
  border-radius: var(--radius);
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.15);
}

.product-collection { color: var(--accent); font-weight: 600; }

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.v-footer a { color: var(--accent); font-weight: 600; }