.cart {
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 200px;
    height: 350px;
}

.cart-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
    margin: 0 10%;
}

.cart-retour {
    margin: 10px 10%;
    margin-top: 100px;
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
    gap: 10px;
    font-size: 20px;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.product-panier {
    padding: 10px;
    background-color: #FAFAFA;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-panier button {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    height: 30px;
}

.imganddescr {
    display: flex;
    gap: 10px;
}

.imganddescr img {
    border-radius: 5px;
}

.titre {
    font-size: 20px;
    margin: 0;
}

.annee {
    font-size: 16px;
    margin: 0;
    color: #949494;
}

select {
    height: 30px;
    padding: 0 20px;
    border: none;
    background-color:  #F1F1F1;
    border-radius: 5px;
    cursor: pointer;
}

/* TOTAL */

.total {
    background-color: #F1F1F1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 400px;
    height: 100%;
}

.total h1 {
    font-size: 36px;
    margin: 0;
}

.total button {
    background-color: black;
    color: white;
    border-radius: 6px;
    font-size: 24px;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

.redirect {
    margin-top: 10px;
    display: flex;
    /* align-items: center; */
    gap: 5px;
}

.phoneform {
    display: none;
}

@media screen and (max-width : 1170px) {
    .cart {
        flex-direction: column;
        padding: 10px 0;
        height: auto;
        margin-bottom: 20px;
    }
    .cart-title {
        margin: 10px;
    }
    .cart-retour {
        margin-top: 20px;
        margin: 10px 10px;
    }
    .total {
        /* width: 100%; */
        padding: 20px;
        margin: 0 10px;
        width: auto;
    }
    .product-container {
        width: auto;
    }
    .total button {
        width: 100%;
    }
    .product-panier {
        flex-direction: column;
        width: auto;
        gap: 10px;
        background-color: white;
    }
    /* form {
        justify-content: end;
    } */
    /* .product-panier button {
        padding: 0;
    }
    .product-panier select {
        padding: 0;
    } */
    /* .product-panier form {
        display: none;
    }
    .product-panier .imganddescr form {
        display: flex;
    } */
    .phoneform {
        display: flex;
        gap: 0;
    }
    .pcform {
        display: none;
    }
}