/* Hero gradient: herbal green */
.effects-hero { background: linear-gradient(135deg, #1A6B3A 0%, #2D9B5A 50%, #58BB48 100%); }

/* Effect category card */
.effect-card {
  background: white; border: 1px solid #E5E7EB;
  border-radius: 12px; padding: 22px 24px;
  border-top: 4px solid transparent;
}
.effect-card-relaxation  { border-top-color: #45B8E6; }   /* hoppy blue */
.effect-card-mood        { border-top-color: #F5A523; }   /* citrus */
.effect-card-pain        { border-top-color: #E04D6B; }   /* spicy */
.effect-card-focus       { border-top-color: #58BB48; }   /* herbal */
.effect-card-wellness    { border-top-color: #9B6BAB; }   /* floral */

.effect-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.effect-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 17px; font-weight: 800;
  text-transform: uppercase; color: #1C1C1C;
  margin-bottom: 14px;
}

/* Terpene entry within effect card */
.effect-entry { margin-bottom: 14px; }
.effect-entry:last-child { margin-bottom: 0; }
.effect-terpene-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #C8700A; margin-bottom: 3px;
  display: block; text-decoration: none;
}
.effect-terpene-name:hover { text-decoration: underline; }
.effect-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; color: #3D4A56; line-height: 1.5;
}

/* Entourage effect section */
.entourage-card {
  border-radius: 12px; padding: 24px;
}
.entourage-green { background: #F0FDF4; border: 1px solid #BBF7D0; }
.entourage-amber { background: #FFF8EE; border: 1px solid #FDDBA0; }
.entourage-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 16px; font-weight: 800;
  text-transform: uppercase; color: #1C1C1C;
  margin-bottom: 12px;
}
.entourage-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; color: #3D4A56; line-height: 1.7;
  margin-bottom: 10px;
}
.entourage-card p:last-child { margin-bottom: 0; }

/* Key takeaway */
.takeaway-box {
  background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: 12px; padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}

/* Medical disclaimer */
.disclaimer-box {
  background: #FFF8EE; border: 1px solid #FDDBA0;
  border-radius: 12px; padding: 20px 24px;
}
.disclaimer-box h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 14px; font-weight: 800;
  text-transform: uppercase; color: #C8700A;
  margin-bottom: 10px; display: flex; align-items: center; gap-8px;
}
.disclaimer-box p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; color: #3D4A56; line-height: 1.6;
  margin-bottom: 8px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }

/* CTA section: dark green */
.effects-cta { background: linear-gradient(135deg, #1A6B3A 0%, #2D9B5A 100%); }
