#cart {
    column-count: 3;
    column-gap: 10px;
    margin: 20px;
}

#information{
    width:100%;
    text-align:center;
}

.cart-item {
    break-inside: avoid;
    margin-bottom: 10px;
    text-align:center;
}

.cart-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.cart-item img:hover {
    transform: scale(1.03);
}


#nbcolumns{
    display:none;
}

@media screen and (max-width: 736px) {
    #cart{
        margin:0px;
    }
}

@media screen and (min-width: 737px) {
    .box{
        margin-top:-16em;
    }
}