.cart-system-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: auto;
    margin-top: 45px;
    width: 1450px;
    height: 100%;
    letter-spacing: 0.5px;
}
.cart-section {
    width: 50%;
}
.cart-header h2 {
    font-weight: bold;
}
.cart-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 35px;
    box-shadow: -1px 6px 7px 1px rgba(0, 0, 0, 0.51);
    -webkit-box-shadow: -1px 6px 7px 1px rgba(0, 0, 0, 0.51);
    -moz-box-shadow: -1px 6px 7px 1px rgba(0, 0, 0, 0.51);
    margin-top: 50px;
    width: auto;
    height: 300px;
}
.cart-item img {
    width: 170px;
    height: 80%;
    border-radius: 15px;
}
.cart-item p {
    width: 225px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;

    font-size: large;
}
.quantity-control {
    display: flex;
    flex-direction: row;
    width: 100px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 10px;
}
.cart-item .decrease {
    width: 25px;
    height: 40px;
    background-color: white !important;
    outline: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-right: 2px solid black;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: auto;
    font-size: x-large;
    font-weight: bold;
}
.cart-item .quantity {
    font-size: large;
    margin: auto;
}
.cart-item .increase {
    width: 25px;
    height: 40px;
    background-color: white !important;
    outline: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-left: 2px solid black;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    font-size: x-large;
    font-weight: bold;
}
.cart-item .price {
    width: auto;
    margin-left: 15px;
    font-size: large;
}

.checkout-section {
    margin-top: 2rem;
    background-color: #1c71d5;
    border-radius: 25px;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.checkout-section h2 {
    margin-top: 30px;
    margin-left: 30px;
    color: white;
}
form {
    color: white;
    margin-left: 30px;
    margin-right: 30px;
}
.form-group {
    margin-top: 15px;
}

.form-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-control {
    margin-top: 10px;
}

.final-quantity,
.final-price {
    margin-left: auto;
    text-align: right;
}

button {
    background-color: #ecf2f6 !important;
    color: black;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 30px;
    padding: auto;
    font-weight: bold !important;
}
button:hover {
    color: black !important;
}

@media screen and (min-width: 351px) and (max-width: 650px) {
    .cart-system-container {
        width: 100%;
        flex-direction: column;
        padding-left: 5%;
        padding-right: 5%;
    }
    .cart-section {
        width: 100%;
    }
    .cart-item {
        flex-direction: column;
        height: 100%;
        padding-top: 15px;
    }
    .cart-item img {
        padding-bottom: 15px;
    }
    .cart-item .quantity-control {
        margin-bottom: 16px;
    }
    .cart-item .price {
        margin-bottom: 16px;
    }
    .checkout-section {
        width: 100%;
    }
}
@media screen and (min-width: 651px) and (max-width: 1200px) {
    .cart-system-container {
        width: 100%;
        flex-direction: row;
        padding-left: 5%;
        padding-right: 5%;
    }
    .cart-section {
        width: 50%;
    }
    .cart-item {
        flex-direction: column;
        height: 100%;
        padding-top: 15px;
    }
    .cart-item img {
        padding-bottom: 15px;
    }
    .cart-item .quantity-control {
        margin-bottom: 16px;
    }
    .cart-item .price {
        margin-bottom: 16px;
    }
    .checkout-section {
        width: 50%;
    }
}
@media screen and (min-width: 1201px) and (max-width: 1800px) {
    .cart-system-container {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .cart-section {
        width: 50%;
    }
    .cart-item {
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    .cart-item .quantity-control {
        flex-shrink: 0;
        width: 75px;
    }
    .checkout-section {
        width: 50%;
    }
}
