/* CSS Fix pour les carrousels de deals */
/* Corrections pour l'alignement et les dimensions des carrousels */

/* Container principal du carousel */
.deal-carousel.owl-carousel {
    margin: 0 -15px;
}

/* Item du carousel - hauteur uniforme */
.deal-carousel .owl-item {
    padding: 0 15px;
    box-sizing: border-box;
}

.deal-carousel .product__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* Container des images - dimensions fixes */
.deal-carousel .product__thumb {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

/* Images principales - object-fit pour respecter les proportions */
.deal-carousel .product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Container du contenu - flexbox pour étaler verticalement */
.deal-carousel .product__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

/* Titre du produit - hauteur fixe */
.deal-carousel .product__title {
    min-height: 2.5em;
    line-height: 1.25;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Section des prix */
.deal-carousel .product__price {
    margin-bottom: 10px;
}

/* Boutons d'action */
.deal-carousel .product__action {
    margin-top: auto;
}

/* Navigation du carousel */
.deal-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deal-carousel .owl-nav button:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.deal-carousel .owl-nav .owl-prev {
    left: -20px;
}

.deal-carousel .owl-nav .owl-next {
    right: -20px;
}

/* Dots de pagination */
.deal-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.deal-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.deal-carousel .owl-dots .owl-dot.active {
    background: #333;
    width: 12px;
    height: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .deal-carousel .product__item {
        min-height: 350px;
    }

    .deal-carousel .product__thumb {
        height: 200px;
    }

    .deal-carousel .owl-nav button {
        width: 35px;
        height: 35px;
    }
}
