.cartContainer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
    margin-left: 2%;
    margin-right: 2%;
}

.cartProducts {
    width: 60%;
    margin-left: 2%;
}

.cartProduct {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.cartProductDetails {
    flex-grow: 1;
}

.cartProductPriceActions {
    text-align: right;
    
}

.cartSummary {
    width: 35%;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .cartContainer {
        flex-direction: column;
    }

    .cartProducts,
    .cartSummary {
        width: 100%;
    }
}

.remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eee;
    color: #333;
    border: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    padding: 0;
    text-decoration: none;
    margin-left: 10px;
    margin-top: -10%;
}

.remove-btn:hover {
    background-color: #ffdddd;
    color: #c00;
}