/* Single Product Theme - homepage focuses on one product */

:root {
  --theme-primary: #7c3aed;
  --theme-secondary: #5b21b6;
  --theme-accent: #a78bfa;
  --theme-font-family: 'Inter', system-ui, sans-serif;
  --theme-heading-font: 'Inter', system-ui, sans-serif;
}

.single-product-theme {
  font-family: var(--theme-font-family);
}

.single-product-theme h1,
.single-product-theme h2,
.single-product-theme h3,
.single-product-theme h4,
.single-product-theme h5,
.single-product-theme h6 {
  font-family: var(--theme-heading-font);
}

/* Subtle theming of the primary CTA (Add to Cart) while still allowing Tailwind defaults */
.single-product-theme .add-to-cart-btn {
  background: var(--theme-primary) !important;
}

.single-product-theme .add-to-cart-btn:hover {
  background: var(--theme-secondary) !important;
}

/* Ensure links can pick up accent color if desired */
.single-product-theme a:hover {
  color: var(--theme-primary);
}
