/* --- Slide produit --- */
.product-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    min-height: 434px;
    padding: 50px;
    margin: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);

    -webkit-box-shadow:   0 4px 14px rgba(0, 0, 0, 0.07);
    -moz-box-shadow:   0 4px 14px rgba(0, 0, 0, 0.07);
}

/* Image du produit */
.product-slide img {
    max-height: 166px !important;
    min-height: 166px !important;
    object-fit: contain;
}

/* Titre produit */
.product-title {
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* limite à 2 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bouton CTA */
.product-cta-container {
    width: 90%;
    height: 50px;
    background: #df4d08;
    border-radius: 25px;
    margin: auto;
    transition: background-color 0.3s ease;
}

.product-cta-container:hover {
    background-color: #bd591e;
}

.product-cta {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.product-cta:hover,.product-cta:active,.product-cta:focus {
    text-decoration: none !important;
    color: white;
    outline: none;
}

/* Dot active du slider */
.bb-product-slider .slick-dots .slick-active {
    background-color: #EA5A1B;
}
