/*
 * ZENIFY — Health & Wellness E-Commerce Theme
 * Calm, natural, grounded. Sage green + warm cream + sand.
 * Best for: yoga, meditation, herbal, organic, teas, oils.
 */

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

:root {
  /* ── Brand ─────────────────────────────────────────────── */
  --ec-primary:         #5F8B6A;
  --ec-primary-dark:    #3F6B4A;
  --ec-primary-light:   rgba(95,139,106,0.1);
  --ec-accent:          #C8A96E;
  --ec-accent-dark:     #A8895E;

  /* ── Surface ────────────────────────────────────────────── */
  --ec-bg:              #F9F7F0;
  --ec-surface:         #FEFDF8;
  --ec-surface-2:       #F2EDE0;
  --ec-surface-3:       #EAE4D4;
  --ec-border:          rgba(95,139,106,0.15);
  --ec-border-subtle:   rgba(0,0,0,0.06);

  /* ── Typography ─────────────────────────────────────────── */
  --ec-text-heading:    #2D3A2E;
  --ec-text-body:       #4A5C4B;
  --ec-text-muted:      #8A9E8B;
  --ec-font-heading:    'Cormorant Garamond', Georgia, serif;
  --ec-font-body:       'DM Sans', system-ui, sans-serif;
  --ec-letter-heading:  0.01em;

  /* ── Hero ────────────────────────────────────────────────── */
  --ec-hero-bg:         linear-gradient(135deg, #E8F0E9 0%, #EEE8D8 50%, #F5F0E4 100%);
  --ec-hero-text:       #2D3A2E;
  --ec-hero-accent:     #5F8B6A;
  --ec-hero-overlay:    rgba(95,139,106,0.04);

  /* ── Buttons ────────────────────────────────────────────── */
  --ec-btn-bg:          #5F8B6A;
  --ec-btn-hover:       #3F6B4A;
  --ec-btn-text:        #FFFFFF;
  --ec-btn-radius:      50px;
  --ec-btn-transform:   none;
  --ec-btn-weight:      500;
  --ec-btn-letter:      0.01em;
  --ec-btn-secondary-bg: transparent;
  --ec-btn-secondary-border: #5F8B6A;
  --ec-btn-secondary-text:   #5F8B6A;

  /* ── Cards ──────────────────────────────────────────────── */
  --ec-card-bg:         #FFFFFF;
  --ec-card-border:     rgba(95,139,106,0.12);
  --ec-card-shadow:     0 2px 16px rgba(95,139,106,0.08);
  --ec-card-shadow-hover: 0 8px 32px rgba(95,139,106,0.15);
  --ec-card-radius:     20px;
  --ec-img-radius:      16px;

  /* ── Badges ─────────────────────────────────────────────── */
  --ec-badge-new:       #5F8B6A;
  --ec-badge-sale:      #C8A96E;
  --ec-badge-best:      #8B5E3C;
  --ec-badge-autoship:  #6B7FBE;
  --ec-badge-radius:    50px;

  /* ── Inputs ─────────────────────────────────────────────── */
  --ec-input-bg:        #FFFFFF;
  --ec-input-border:    rgba(95,139,106,0.2);
  --ec-input-border-focus: #5F8B6A;
  --ec-input-text:      #2D3A2E;
  --ec-input-radius:    50px;

  /* ── Category pills ─────────────────────────────────────── */
  --ec-pill-bg:         #F2EDE0;
  --ec-pill-bg-active:  #5F8B6A;
  --ec-pill-text:       #4A5C4B;
  --ec-pill-text-active:#FFFFFF;

  /* ── Trust bar ──────────────────────────────────────────── */
  --ec-trust-bg:        #EAF0EB;
  --ec-trust-text:      #4A5C4B;
  --ec-trust-icon:      #5F8B6A;

  /* ── Price ──────────────────────────────────────────────── */
  --ec-price-color:     #2D3A2E;
  --ec-compare-color:   #A09080;
  --ec-save-color:      #5F8B6A;

  /* ── Stars ──────────────────────────────────────────────── */
  --ec-star-filled:     #C8A96E;
  --ec-star-empty:      #DDD8CC;

  /* ── Spacing ─────────────────────────────────────────────── */
  --ec-section-py:      5rem;
  --ec-hero-py:         8rem;
}

.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);
  letter-spacing: var(--ec-letter-heading);
  color: var(--ec-text-heading);
  font-weight: 600;
}

/* ── Zenify-specific: leaf pattern overlay on hero ─────────── */
.ec-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q45 20 30 40 Q15 20 30 5Z' fill='none' stroke='rgba(95,139,106,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Organic border-radius throughout ─────────────────────── */
.ec-product-card {
  border-radius: var(--ec-card-radius) !important;
}

.ec-product-card:hover {
  box-shadow: var(--ec-card-shadow-hover) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
