/* Filter tabs */
.filter-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: white;
  color: #3D4A56;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s;
}
.filter-tab:hover { border-color: #F5A523; color: #1C1C1C; }
.filter-tab.active { background: #1C1C1C; border-color: #1C1C1C; color: white; font-weight: 600; }

/* Terpene flavor card */
.flavor-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 16px;
  transition: box-shadow 0.15s;
}
.flavor-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.07); }

/* Tier badge */
.tier-badge {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}
.tier-primary   { background: #FEF3C7; color: #92400E; }
.tier-secondary { background: #DBEAFE; color: #1E40AF; }
.tier-rare      { background: #FCE7F3; color: #9D174D; }

.flavor-section { display: block; }
.flavor-section.hidden { display: none; }

/* Table of contents */
.toc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
  transition: color 0.15s;
}
.toc-item:last-child { border-bottom: none; }
.toc-item:hover { color: #F5A523; }
.toc-count {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-right: 12px;
}
