/* General Styles */
.cart-page {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #f8f9fa;
}

.cart-page-title {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 20px;
}

/* Table Styles */
.cart-table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.cart-table thead {
    background-color: #007bff;
    color: #fff;
}

.cart-table thead th {
    font-weight: bold;
    text-align: center;
    padding: 15px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #dee2e6;
}

.cart-table tbody td {
    vertical-align: middle;
    text-align: center;
    padding: 10px;
}

.cart-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 5px;
}

/* Button Styles */
.update-btn, .remove-btn, .checkout-btn, .continue-shopping-btn, .shop-now-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.update-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
}

.update-btn:hover {
    background-color: #0056b3;
}

.remove-btn {
    background-color: #dc3545;
    color: #fff;
    border: none;
}

.remove-btn:hover {
    background-color: #a71d2a;
}

.checkout-btn {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.checkout-btn:hover {
    background-color: #218838;
}

.continue-shopping-btn {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

.continue-shopping-btn:hover {
    background-color: #5a6268;
}

.shop-now-btn {
    font-size: 1rem;
    padding: 10px 20px;
}

/* Cart Summary */
.cart-summary-container {
    margin-top: 20px;
}

.cart-summary-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.cart-summary p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.cart-summary .btn {
    margin-top: 15px;
    width: 100%;
}

/* Empty Cart Styles */
.empty-cart-message h2 {
    color: #343a40;
    font-size: 2rem;
    margin-bottom: 20px;
}

.empty-cart-message .shop-now-btn {
    font-size: 1rem;
    padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-summary-container {
        margin-top: 20px;
    }

    .cart-table tbody td img.cart-img {
        width: 60px;
        height: 60px;
    }

    .quantity-input {
        width: 50px;
    }
}
