.boutique{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    background-color: #121212;
}

.produits{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/*NAVBAR BOUTIQUE*/

.boutique-nav{
    grid-column: span 3;
}

.boutique-nav ul{
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.boutique-nav li{
    list-style-type: none;
}

.card-title, .card-text{
    color: black !important;
}

/*ShowMore*/

.product_details{
    background-color: var(--bm-block);
    border-radius: 5px;
    padding: 20px;
    display: flex;
}

.left_side{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.right_side{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;
}

.product_img{
    width: 100%;
}


