* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --title-color: #1E1E1E;
}

body {
    background-color: #F5EBDC;
    
}

.mand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 3%;
    gap: 20px;
}

.mand a {
    text-decoration: none;
    color: #1E1E1E;
    margin-bottom: 10px;
}

.product {
    display: flex;
    align-items: center;
    width: 70%;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    gap: 20px;
}

.productImg {
    width: 10%;
    height: auto;
    border-radius: 8px;
}

.productInfo {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.productInfo p {
    width: 25%;
    text-align: center;
    font-size: 1.1rem;
}

.cartIcons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
}

.cartIcons p {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.plusImg, .minImg, .deleteImg {
    font-size: 30px;
    cursor: pointer;
    color: #D32200;
}

.overzicht {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: 40px auto;
}

.overzicht h2 {
    width: 100%;
    padding-bottom: 5px;
    border-bottom: black solid 1px;
}

.overzichtInfo {
    width: 60%;
    /*padding-left: 2%;*/
    margin-top: 1%;
}

.totaal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35%;
    /*padding-right: 2%;*/
}

.totaal p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

.afronding {
    background-color: #D32200;
    color: #F5EBDC;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    /*width: 80%;*/
    margin-top: 20px;
}

.afronding a {
    text-decoration: none;
    color: #F5EBDC;
    font-weight: bold;
}

/* Responsive styles for checkout page */
@media (max-width: 900px) {
    .overzicht {
        flex-direction: column;
        align-items: center;
    }
    .overzichtInfo, .totaal {
        width: 90%;
        margin: 0 auto 20px auto;
    }
    .product {
        width: 95%;
    }
}

@media (max-width: 600px) {
    .mand {
        gap: 10px;
        margin-top: 10px;
    }
    .product {
        flex-direction: column;
        width: 80%;
        padding: 10px;
        gap: 10px;
    }
    .productImg {
        width: 60%;
    }
    .productInfo {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .productInfo p {
        width: 100%;
        font-size: 1rem;
    }
    .cartIcons {
        flex-direction: row;
        width: 100%;
        margin-top: 10px;
    }
    .totaal p {
        font-size: 1.1rem;
    }
    .afronding {
        padding: 8px;
        font-size: 1rem;
    }
}

