/* ── Pages matière ── */

/* Breadcrumb */
.breadcrumb-bar {
  background: white;
  border-bottom: 1px solid var(--beige-mid);
  padding: 0.7rem 2.5rem;
  margin-top: 68px; /* hauteur nav */
  font-size: 0.82rem;
  color: var(--text-soft);
}
.breadcrumb-bar a { color: var(--text-soft); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--terracotta); }
.bc-sep { margin: 0 0.4rem; opacity: 0.5; }

/* Hero matière */
.matiere-hero {
  background: var(--beige);
  padding: 4rem 2.5rem 3rem;
  text-align: center;
}
.matiere-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

/* Grille de niveaux */
.levels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.level-chip {
  background: white;
  border: 1.5px solid var(--beige-mid);
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.level-chip:hover {
  border-color: var(--terracotta);
  background: var(--terracotta-pale);
  color: var(--terracotta);
}

/* Prix dans les cartes */
.offer-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.offer-price {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige-mid);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--terracotta);
}
.price-unit {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-left: 0.3rem;
}
.offer-card.featured .offer-price { border-top-color: rgba(184,68,42,0.2); }
.offer-card.featured .price-amount { color: #F5A882; }

/* Responsive */
@media (max-width: 820px) {
  .breadcrumb-bar { padding: 0.7rem 1.2rem; }
  .matiere-hero { padding: 3rem 1.2rem 2rem; }
  .levels-grid { gap: 0.5rem; }
  .level-chip { font-size: 0.82rem; padding: 0.5rem 1rem; }
}
