/* Ajout du logo Stripe */
#payment-option-1-container label[for="payment-option-1"] span::after {
  content: "";
  display: inline-block;
  width: 201px; /* largeur réelle de ton image */
  height: 29px; /* hauteur réelle de ton image */
  background: url("/modules/stripe_official/paiement_cb.png") no-repeat center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
}

/* --- Style bannière catégorie --- */
.page-category .block-category {
  text-align: center;
  padding: 2rem 0;
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.page-category .block-category h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.page-category .block-category p {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Sous-catégories alignées --- */
.subcategories-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.subcategories-list li {
  list-style: none;
  text-align: center;
}

.subcategories-list img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.subcategories-list img:hover {
  transform: scale(1.05);
}

.category-cover img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
