/* ===============================
   FIX AFFICHAGE MOBILE PRODUITS
   =============================== */
@media (max-width: 767px) {

  .product-item-holder .row {
    display: block;
  }

  .product-item-holder .image-holder,
  .product-item-holder .body-holder,
  .product-item-holder .price-area {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .product-item-holder .image-holder img {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 220px;
    height: auto;
  }

  .product-item-holder .body {
    padding: 0 10px;
  }

  .product-item-holder .price-area {
    margin-top: 15px;
  }

  .product-item-holder .le-button {
    display: inline-block;
    width: auto;
    min-width: 200px;
    margin-top: 10px;
  }

  .product-item-holder .availability {
    display: block;
    margin-bottom: 8px;
  }
}

/* ================================
   FIX FEATURES BOX IN PRODUCT PAGE
   ================================ */

/* empêcher Owl de cacher le contenu */
#owl-single-product,
.single-product-gallery-item{
    overflow: visible !important;
}

/* box sous l’image */
.features-box{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 0 10px;
}

/* chaque badge */
.features-box span{
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f7fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

/* icônes */
.features-box i{
    color: #2a7cff; /* BLEU */
    font-size: 14px;
}

/* mobile */
@media (max-width: 768px){
    .features-box{
        gap: 8px;
    }
    .features-box span{
        font-size: 11px;
        padding: 5px 10px;
    }
}
