/* ===== Boutons réutilisables ===== */
.btn-main {
  background: #6e3071;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-main:hover {
  background: #eb7f97;
}

.btn-secondary {
  background: #eb7f97;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-secondary:hover {
  background: #f29229;
}

/* ===== Badges ===== */
.badge {
  display: inline-block;
  background: #f29229;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 16px;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 2px 8px #c9c7e4;
}

/* ===== Cartes réutilisables ===== */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px #c9c7e4;
  padding: 24px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.card h3 {
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 8px;
}

.card p {
  color: #9d6232;
  margin-bottom: 16px;
}