.cart-area {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}
.cart-area input{
    text-align: center;
}

h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #333;
}

h3 {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns content to the sides */
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.remove-item-button {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 20px;
    cursor: pointer;
}

.cart-item-image {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
}

.cart-item-category, .cart-item-color {
    color: #666;
}

.cart-item-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
}

.quantity-decrease,
.quantity-increase {
    background-color: #f1f1f1;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    margin: 0 2px;
}

.quantity-value {
    font-size: 16px;
    margin: 0 5px;
}

.cart-item-price {
    font-weight: bold;
}

.shipping-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.delivery-area, .delivery-date {
    margin: 10px 0;
}

.cart-total {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
}

.cart-buttons {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    justify-content: space-between;
}

.checkout-button,
.clear-cart-button {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

.clear-cart-button {
    background-color: #dc3545; /* Red for clear cart */
}

.checkout-button i,
.clear-cart-button i {
    margin-right: 5px;
}

.checkout-button:hover,
.clear-cart-button:hover {
    opacity: 0.9;
}
