/* ========================================================================
   Performance Meals — extends tokens/classes from css/style.css + shop.css.
   Only additive: does not modify any shared selector.
   ======================================================================== */

.perf-hero { padding-bottom: 0; text-align: center; }
.perf-hero-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 10px; }
.perf-hero .section-sub { max-width: 640px; margin-inline: auto; }

.perf-goals { padding-top: 32px; }
.perf-goal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.perf-macros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.perf-macro {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--cream-200);
  font-size: 0.7rem;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.perf-macro strong {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-900);
  text-transform: none;
  letter-spacing: normal;
}

.perf-ingredients {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ink-600);
  line-height: 1.5;
}
.perf-ingredients strong { color: var(--navy-900); }

.perf-goal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.perf-goal-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-500);
  background: rgba(31, 169, 138, 0.1);
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.perf-plans { background: var(--cream-200); }

/* Homepage teaser card (index.html, between Meal Packages and This Week's Menu) */
.perf-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.perf-teaser-copy { padding: 48px; color: var(--white); }
.perf-teaser-copy .eyebrow { color: var(--teal-300); }
.perf-teaser-copy h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 8px; }
.perf-teaser-copy .section-sub { color: rgba(255,255,255,0.75); }
.perf-teaser-copy .btn { margin-top: 24px; }
.perf-teaser-photo { height: 100%; min-height: 320px; }
.perf-teaser-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .perf-teaser-inner { grid-template-columns: 1fr; }
  .perf-teaser-photo { min-height: 220px; order: -1; }
  .perf-teaser-copy { padding: 32px 24px; }
}

@media (max-width: 720px) {
  .perf-goal-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}
