/* Cart Page Styles */
.cart-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cart-table th, .cart-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    background-color: #f8f9fa;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.remove-btn {
    color: #ff0241;
    text-decoration: none;
}

.remove-btn:hover {
    text-decoration: underline;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}


.checkout-btn {
    background-color: #8e44ad;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart img {
    max-width: 300px;
    margin-bottom: 2rem;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 1rem;
}

.quantity-selector input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}