
/* --- Toàn trang giỏ hàng --- */
.cart-page {
    padding: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cart-page .page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.cart-page table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-page table th,
.cart-page table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cart-page table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #555;
}

.cart-page table tr:hover {
    background-color: #f9f9f9;
}

/* --- Ảnh sản phẩm --- */
.cart-page table td img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Tổng tiền --- */
.total-price {
    text-align: right;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
}
.btn-primary {
    margin-left: 10px;
    background-color: #ec4899; /* Pink-600 */
    color: white;
    border: 1px solid #e1d8dd;
    border-radius: 20px;
    text-decoration: none;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #db2777 !important; /* Pink-700 */
}
