/** Shopify CDN: Minification failed

Line 27:0 Unexpected "<"

**/
/* Css pour le micro slider present, a l'origine, dans la fiche produit */
.banner-slider__dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.banner-dot {
  width: 10px;
  height: 10px;
  background: #d4d4d4;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-dot.active {
  background: #000; /* point actif */
}
</style>

<style>
.banner-slider {
  width: 100%;
}

.banner-slider__wrapper {
  display: flex;
  overflow-x: auto;
scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; 
  scroll-snap-type: x mandatory;
}

.banner-slide {
  min-width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}

.banner-slide__content {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  width: 90%;
  text-align: center;
  padding: 12px;
}

.banner-slide__icon {
  font-size: 20px;
}

.banner-slide__title {
  font-size: 18px;
  font-weight: 600;
  margin:0;
}

.banner-slide__subtitle {
  font-size: 16px;
  opacity: .8;
}
