.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 1 0 33%; /* Show 3 items at a time */
    box-sizing: border-box;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.2em;
    margin: 10px 0;
}

.product-price {
    color: #f00;
    font-size: 1.1em;
}

.product-old-price {
    color: #888;
    text-decoration: line-through;
}

.product-rating i {
    color: gold;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.carousel-container::before {
    left: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.carousel-container::after {
    right: 10px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 1 0 50%;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        flex: 1 0 100%;
    }
}
.recommendation-carousel .seller-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 10px rgb(0 0 0 / 24%);
    transition: 0.3s;
    background-color: beige;
    border-radius: 15px;
    padding: 2px 5px;
}
.recommendation-carousel .seller-card:hover {
        box-shadow: 0 0 20px #ffbd59;
}
.recommendation-carousel img {
    border: 5px solid #FFF;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.recommendation-carousel .seller-info {
    margin-top: 10px;
}
.recommendation-carousel .rating {
    display: flex;
    align-items: center;
    justify-content: center;
}
.recommendation-carousel .rating i {
    color: #ff9800;
}

.seller-card {
    margin: 0 15px; /* Ajustez la valeur selon vos besoins */
}

.slick-prev, .slick-next {
    position: absolute;
    top: auto;
    transform: translateY(-50%);
    background-color: rgb(0 0 0 / 28%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    left: 10px; /* Ajustez selon vos besoins */
    top: 390px;
}

.slick-next {
    right: 10px; /* Ajustez selon vos besoins */
    top: 390px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.slick-prev:before {
    content: '\f053'; /* Icône de la flèche gauche de Font Awesome */
}

.slick-next:before {
    content: '\f054'; /* Icône de la flèche droite de Font Awesome */
}