/* Terpene profile row with left color border */
.terpene-profile {
  border-left: 4px solid transparent;
  padding: 28px 0 28px 24px;
  border-bottom: 1px solid #E5E7EB;
}
.terpene-profile:last-child { border-bottom: none; }

/* Profile icon circle */
.profile-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}

/* Section label (AROMA, EFFECTS, etc.) */
.profile-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 4px;
  margin-top: 14px;
}
.profile-label:first-child { margin-top: 0; }

/* Associated strain pill */
.strain-pill {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  color: #374151;
  margin: 3px 3px 0 0;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.strain-pill:hover { background: #F3F4F6; border-color: #D1D5DB; }
