/* ==================================
   Réinitialisation générale
   ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}


/* ==================================
   Promotions - contenu propre et sans bordure flashy
   ================================== */

.info-section,
.offres-du-moment {
  max-width: 900px;
  margin: 40px auto;
  background-color: #111;
  border-radius: 10px;
  padding: 30px 20px;
  /* Suppression du contour rouge et ombre flashy */
  /* border: 2px solid #e60000; */
  /* box-shadow: 0 0 15px rgba(230, 0, 0, 0.4); */
}

.info-section h2,
.offres-du-moment h3,
.offres-du-moment h4 {
  color: #e60000;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000;
}

.info-section p,
.offres-du-moment p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}
