.vss-container{
    margin-bottom:10px;
}
.vss-sub-container{
    height:inherit;
    overflow:hidden;
}
.vss-heading{
    border-bottom:1px grey solid;
    text-align:center;
    background:rgb(5, 5, 5);
    color:white;
    font-size:18px;
    padding:1%;
}
.vss-product-slider{
    width:100%;
    display:table;
    border:2px grey solid;
    margin:1% 0;
    background: #f6f6f6;
    overflow:hidden;
}
.vss-products-ul{
    display: flex;
    justify-content: center; /* Centre les produits horizontalement */
    gap: 20px; /* Ajoute un espacement entre les produits */
    flex-wrap: wrap;
}
.vss-products-li{
    flex: 1 1 200px; /* Assigne une largeur minimale de 200px par produit */
    max-width: 250px; /* Empêche les produits de devenir trop grands */
    text-align: center; /* Centre le texte sous l'image */
    
}

.vss-products-li img {
    width: 100%; /* Les images prennent toute la largeur du conteneur */
    height: auto; /* Garde les proportions */
    display: block; /* Supprime l'espace blanc sous l'image */
}
.vss-slider-buttons{
    vertical-align:middle;
    display:table-cell
}
.vss-li-product{
    text-align:center;
    width:100px;
}
.vss-li-product {
    text-align: center;
    width: auto; /* Permet au texte de s’adapter à la taille de l’image */
    max-width: 150px; /* Définissez une largeur max pour éviter les débordements */
    margin: 0 auto;
}

.vss-text {
    margin-top: 10px; /* Ajoute un espacement entre l’image et le texte */
    font-size: 14px; /* Ajuste la taille du texte */
    font-weight: bold;
    color: rgb(0, 0, 0); /* Rouge pour rester visible */
}
.vss-hide-products{
    overflow:hidden;
    position:relative;
}    
#sliderPrev {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("../../img/front/prev-horizontal.png") no-repeat 0 0;
    z-index: 999;
}
#sliderNext {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("../../img/front/next-horizontal.png") no-repeat 0 0;
    z-index: 999;
}

body {
    font-family:verdana,arial;
    padding:20px;
}
.bd {
    text-align:center;
    margin-top:2%;
}
.vss-slot-container {
    margin:0 auto;
    width:750px;
}
.slot {
    width:250px;
    height:250px;
    float:left;
    border:1px solid #000;
    background-position:0 0px;
    overflow:hidden;
    border:1px solid gray;
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
    -moz-box-shadow:    0px 0px 8px rgba(0,0,0,0.3);
    display: block;
    overflow: hidden;
    text-align: center;
    border: 10px solid;
    border-radius: 3px;
    -moz-box-shadow: #fff 0px 1px 0px;
}
.vss-button {
    display:block;
    min-width:158px;
    margin:0 auto;
    font-size:16px;
    cursor:pointer;
}
.clear {
    clear:both;
}
.vss-btn {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -moz-linear-gradient(top, #3498db, #2980b9);
    background-image: -ms-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 10px;
    font-family: Arial;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
}

.vss-btn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
}


@media (min-width: 320px) and (max-width: 768px) {
    .vss-slot-container {
        width:270px;
    }
    .slot {
        width:90px;
        height:120px;
    }
    .vss-button{
        min-width:100px;
    }
    .vss-btn{
        font-size:16px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .vss-slot-container {
        width:600px;
    }
    .slot {
        width:200px;
    }
}

/* Styles pour ajuster l'espacement entre les images dans le carrousel */
.slick-slide {
    margin: 10 10px !important; /* Espacement horizontal entre les images */
}

/* Optionnel : ajuster le padding global du conteneur du carrousel */
.slick-track {
    display: flex !important;
    flex-wrap: nowrap !important; /* Empêche le retour à la ligne */
    justify-content: center !important;
}








