/*
 * BLOOM — Health & Wellness E-Commerce Theme
 * Elegant, feminine, premium. Rose gold + blush + ivory.
 * Best for: beauty wellness, skincare, collagen, essential oils.
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Brand ─────────────────────────────────────────────── */
  --ec-primary:         #C084A0;
  --ec-primary-dark:    #9D6480;
  --ec-primary-light:   rgba(192,132,160,0.1);
  --ec-accent:          #D4A574;
  --ec-accent-dark:     #B08055;

  /* ── Surface ────────────────────────────────────────────── */
  --ec-bg:              #FDF8F5;
  --ec-surface:         #FFFFFF;
  --ec-surface-2:       #FAF0F3;
  --ec-surface-3:       #F5E8EE;
  --ec-border:          rgba(192,132,160,0.18);
  --ec-border-subtle:   rgba(0,0,0,0.06);

  /* ── Typography ─────────────────────────────────────────── */
  --ec-text-heading:    #3D1F2E;
  --ec-text-body:       #6B4A58;
  --ec-text-muted:      #B090A0;
  --ec-font-heading:    'Playfair Display', Georgia, serif;
  --ec-font-body:       'Nunito', system-ui, sans-serif;
  --ec-letter-heading:  -0.01em;

  /* ── Hero ────────────────────────────────────────────────── */
  --ec-hero-bg:         linear-gradient(135deg, #FDF0F5 0%, #FAF0F8 40%, #F5EEF8 100%);
  --ec-hero-text:       #3D1F2E;
  --ec-hero-accent:     #C084A0;
  --ec-hero-overlay:    rgba(192,132,160,0.03);

  /* ── Buttons ────────────────────────────────────────────── */
  --ec-btn-bg:          #C084A0;
  --ec-btn-hover:       #9D6480;
  --ec-btn-text:        #FFFFFF;
  --ec-btn-radius:      50px;
  --ec-btn-transform:   none;
  --ec-btn-weight:      600;
  --ec-btn-letter:      0.02em;
  --ec-btn-secondary-bg: transparent;
  --ec-btn-secondary-border: #C084A0;
  --ec-btn-secondary-text:   #C084A0;

  /* ── Cards ──────────────────────────────────────────────── */
  --ec-card-bg:         #FFFFFF;
  --ec-card-border:     rgba(192,132,160,0.12);
  --ec-card-shadow:     0 2px 20px rgba(192,132,160,0.08);
  --ec-card-shadow-hover: 0 12px 40px rgba(192,132,160,0.18);
  --ec-card-radius:     20px;
  --ec-img-radius:      16px;

  /* ── Badges ─────────────────────────────────────────────── */
  --ec-badge-new:       #C084A0;
  --ec-badge-sale:      #D4A574;
  --ec-badge-best:      #9D6480;
  --ec-badge-autoship:  #7B68C8;
  --ec-badge-radius:    50px;

  /* ── Inputs ─────────────────────────────────────────────── */
  --ec-input-bg:        #FFFFFF;
  --ec-input-border:    rgba(192,132,160,0.25);
  --ec-input-border-focus: #C084A0;
  --ec-input-text:      #3D1F2E;
  --ec-input-radius:    50px;

  /* ── Category pills ─────────────────────────────────────── */
  --ec-pill-bg:         #F5E8EE;
  --ec-pill-bg-active:  #C084A0;
  --ec-pill-text:       #6B4A58;
  --ec-pill-text-active:#FFFFFF;

  /* ── Trust bar ──────────────────────────────────────────── */
  --ec-trust-bg:        #FAF0F3;
  --ec-trust-text:      #6B4A58;
  --ec-trust-icon:      #C084A0;

  /* ── Price ──────────────────────────────────────────────── */
  --ec-price-color:     #3D1F2E;
  --ec-compare-color:   #B090A0;
  --ec-save-color:      #C084A0;

  /* ── Stars ──────────────────────────────────────────────── */
  --ec-star-filled:     #D4A574;
  --ec-star-empty:      #EED8E4;

  /* ── Spacing ─────────────────────────────────────────────── */
  --ec-section-py:      5.5rem;
  --ec-hero-py:         9rem;
}

.ec-storefront {
  background: var(--ec-bg);
  color: var(--ec-text-body);
  font-family: var(--ec-font-body);
  min-height: 100vh;
}

.ec-storefront h1,
.ec-storefront h2,
.ec-storefront h3,
.ec-storefront h4 {
  font-family: var(--ec-font-heading);
  color: var(--ec-text-heading);
  font-weight: 600;
}

/* ── Bloom-specific: subtle petal pattern ──────────────────── */
.ec-hero {
  background: var(--ec-hero-bg);
  position: relative;
  overflow: hidden;
}
.ec-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,132,160,0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.ec-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Bloom card: elegant hover lift ───────────────────────── */
.ec-product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ec-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ec-card-shadow-hover) !important;
}
