@layer sections {
/* ── Ingredients checklist ─────────────────────────────── */
.ingredients-section { padding: 18px 22px; flex: 1; }
.ingredient-review-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-radius: var(--r);
  background: var(--peach-bg);
  color: var(--peach-fg);
  font-size: 13px;
  line-height: 1.4;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--faint);
  margin-bottom: 12px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.check-row:hover .check-box { border-color: var(--sage-dot) !important; }
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-mark { color: white; font-size: 13px; line-height: 1; display: none; }
.check-row.checked .check-box { background: var(--sage-dot) !important; border-color: var(--sage-dot) !important; }
.check-row.checked .check-mark { display: block; }
.check-row.checked .check-label { text-decoration: line-through; color: var(--faint) !important; }
.check-label { font-size: 16px; color: var(--text); transition: color var(--t); line-height: 1.4; }
}
