/* SECTION OFFRES */
.products-section {
  margin: 50px auto;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 95%; /* Largeur globale augmentée */
  max-width: 1400px; /* Largeur maximale */
  box-sizing: border-box;
}

/* TITRE DE LA SECTION */
.products-title {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

/* CONTENEUR DES CARTES */
.products {
  display: flex; /* Flexbox */
  flex-direction: column; /* Affiche les cartes en colonne */
  gap: 30px; /* Espacement entre les cartes */
  box-sizing: border-box;
}

/* CARTE INDIVIDUELLE */
.product {
  display: flex;
  flex-direction: column; /* Organisation verticale */
  justify-content: space-between;
  width: 100%; /* Largeur étendue */
  min-height: 500px; /* Hauteur augmentée */
  background-color: #ffffff;
  padding: 30px; /* Plus d'espace interne */
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Ombre plus marquée */
  color: #555;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* EFFET AU SURVOL */
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* PRODUITS EN VEDETTE */
.highlight {
  box-shadow: inset 0.5em 0.5em #f0c690; /* Accentuation visuelle */
}

/* TITRE DES CARTES */
.product-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-title img {
  height: 40px; /* Icônes plus grandes */
  margin-right: 15px;
}

.product-title h2 {
  font-size: 20px; /* Texte légèrement plus grand */
  color: #333;
  font-weight: bold;
}

/* INFORMATIONS */
.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Remplit l'espace disponible */
}

/* DESCRIPTION */
.product-description {
  text-align: center;
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 15px; /* Texte légèrement agrandi */
  line-height: 1.8; /* Espacement des lignes pour aérer */
  color: #555;
}

/* LISTE DES FONCTIONNALITÉS */
.product-description-list {
  flex-grow: 1;
}

.product-description-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ÉLÉMENTS DE LISTE */
.product-description-list li {
  display: flex;
  align-items: center; /* Aligne verticalement au centre */
  margin-bottom: 15px; /* Espacement ajusté */
  padding: 5px 0; /* Marge interne */
  line-height: 1.6; /* Espacement entre les lignes */
}

/* ICÔNES DES LISTES */
.product-description-list li img {
  height: 24px; /* Taille fixe pour l'icône */
  margin-right: 12px; /* Espace entre l'icône et le texte */
  flex-shrink: 0; /* Empêche l'icône de se redimensionner */
  align-self: center; /* Centre l'icône verticalement */
}

/* TEXTE DES LISTES */
.product-description-list li span {
  font-size: 15px; /* Texte plus grand */
  color: #444; /* Couleur légèrement plus foncée */
}
