/* Container global */
.builder-product-carousel-container{
    margin: 20px 0;
    padding: 1px;
}
.builder-product-carousel {
  margin: 0px 0;
}

/* Carte produit */
.product-card,
.swiper-slide[data-role="card"] {
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  padding: 12px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Titre */
.product-title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}

/* Image */
.product-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Prix */
.product-price {
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 6px;
}

.product-old-price {
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 6px;
}

/* Bouton */
.product-button,
.product-card form button {
  display: inline-block;
  padding: 6px 14px;
  background: #3498db;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.product-button:hover,
.product-card form button:hover {
  background: #2980b9;
}

/* Badge promo */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f1c40f;
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
}

/* Swiper dots (pagination) */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  border-radius: 50%;
  transition: background 0.2s;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #007bff;
  color: #fff;
}
