.top-banner-livraison {
    background-color: #58806a;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between; /* gauche / droite */
    align-items: center; /* centrage vertical */
}

.top-banner-left {
    text-align: center;
    flex: 1;
}
.top-banner-right {
    text-align: center;
    flex: 1;
}

.top-banner-right a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

/* Masquer la pastille/label (SAVON) au dessus du produit 
.product-flag, .product-flags, .label, .badge {
  display: none !important;
}
*/

.top-banner-univers {
    background-color: #ffffff;
    color: #58806a;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 16px;
    letter-spacing: 0.3px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

.top-banner-univers .banner-line-1 {
    margin-bottom: 4px;
}

.top-banner-univers .banner-line-2 {
    font-size: 14px;
}

.bloc-type-peau {
  background-color: #ffe2ec;
  border-radius: 12px;      /* bords courbés */
  padding: 15px 18px;
  margin: 15px 0;
}

.bloc-type-peau ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.bloc-produits ul li a {
  font-size: 20px;
}

.taille-produits {
    font-size: 16px;
}


/* CSS associé à la page revendeur */
.revendeurs-wrapper {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LISTE GAUCHE */
.revendeurs-list {
  width: 35%;
  overflow-y: auto;
}

.revendeurs-list h3 {
  margin-bottom: 10px;
}

.revendeurs-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.revendeurs-list li {
  padding: 10px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.revendeurs-list li:hover {
  background: #f6f6f6;
}

.revendeurs-list strong {
  color: #000000;
}

/* CARTE DROITE */
.revendeurs-map {
  width: 65%;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .revendeurs-wrapper {
    flex-direction: column;
  }

  .revendeurs-list,
  .revendeurs-map {
    width: 100%;
  }

  #map {
    height: 400px;
  }
}


.hidden {
  display: none;
}