
.abonnement-cartes-js {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.2rem 0;
}
.carte-duree {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  min-width: 140px;
  background: #f9f9f9;
  flex: 1 1 140px;
}
.carte-duree:hover {
  border-color: #0073aa;
  background-color: #e8f5ff;
}
.carte-duree.active {
  border-color: #0073aa;
  background-color: #d0ebff;
  font-weight: bold;
}
.prix-carte {
  display: block;
  margin-top: 6px;
  color: #0073aa;
}
.duree-selectionnee {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #333;
}
