.barre-promo {
  display: flex;              /* Active le mode flex */
  justify-content: center;    /* Centre horizontalement */
  align-items: center;        /* Centre verticalement sur la hauteur du bloc */
  gap: 20px;                   /* Espace entre les éléments */
  padding: 10px;               /* Petit espace intérieur */
  box-sizing: border-box;
  border: #a00000 solid 1px;
}

.barre-promo .bottom1,
.barre-promo .bottom2,
.barre-promo .bottom3 {
  text-align: center;          /* Centre le texte dans chaque bloc */
}

.barre-promo a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #cc0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.barre-promo a:hover {
  background-color: #a00000;
}

.barre-promo img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* --- Responsive pour mobile --- */
@media (max-width: 768px) {
  .barre-promo {
    flex-direction: column;    /* Les éléments passent en colonne */
    text-align: center;
  }

  .barre-promo .bottom1,
  .barre-promo .bottom2 {
    justify-content: center;   /* Centre horizontalement le texte et bouton */
  }

  .barre-promo img {
    margin-top: 10px;          /* Espace entre texte/bouton et image */
  }
}
