:root {
  --bg: #fdf8f6;
  --surface: #ffffff;
  --border: #f9a8d4;
  --text: #831843;
  --muted: #9d174d;
  --accent: #db2777;
  --accent-2: #0d9488;
  --price: #be185d;
  --cta-bg: #db2777;
  --cta-text: #fff;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-display: "Merriweather", Georgia, serif;
  --radius: 12px;
  --cta-radius: 8px;
  --header-bg: rgba(253, 248, 246, 0.98);
}

body {
  background: var(--bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(236, 72, 153, 0.08) 0%, transparent 55%);
}

.v-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.v-brand-sub {
  font-size: 0.62rem;
  color: var(--accent-2);
  font-weight: 600;
}

.v-header {
  border-bottom: 3px double var(--border);
  box-shadow: 0 2px 12px rgba(219, 39, 119, 0.08);
}

.hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent-2);
  background: rgba(13, 148, 136, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

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

.v-grid-label {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.v-grid--inspiredliving {
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  border: 2px solid #fce7f3;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.08);
  background: var(--surface);
}

.product-card img {
  aspect-ratio: 1;
  object-fit: contain;
  background: #fdf8f6;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

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

.product-tagline {
  font-style: italic;
  font-size: 0.8rem;
}

.v-cart-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: var(--cta-radius);
}

.add-btn, .primary-btn {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--cta-radius);
  border: none;
}

.v-footer {
  text-align: center;
  font-family: var(--font-display);
  color: var(--muted);
}

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