/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.cart-container {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.cart-item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
    padding: 0 20px;
}

.item-details h3 {
    font-size: 20px;
}

.item-details p {
    color: #777;
}

.item-details span {
    font-weight: bold;
    margin-top: 10px;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity label {
    margin-right: 10px;
}

.quantity-dropdown {
    padding: 5px;
}

.item-total {
    font-size: 18px;
    font-weight: bold;
}

.remove-btn {
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.cart-summary {
    text-align: right;
    margin-top: 20px;
}

.cart-summary h2 {
    font-size: 24px;
}

.checkout-btn button {
    background-color: #333; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkout-btn button:hover {
    background-color: #555; 
   
}

