/* Vùng bao toàn bộ giỏ hàng */
.custom-cart {
    padding: 40px 0;
}

/* Tiêu đề */
.custom-cart h3 {
    color: #2a3448;
    font-weight: bold;
    font-size: 28px;
}

/* === BẢNG GIỎ HÀNG === */
.cart-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-table {
    border-radius: 8px;
    overflow: hidden;
}

/* Header table */
.cart-table thead {
    background-color: #2a3448;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

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

/* Giá gốc */
.cart-table .text-decoration-line-through {
    font-size: 14px;
    color: #aaa;
}

/* Giá sale */
.cart-table .text-danger {
    color: #2a3448 !important;
    font-size: 16px;
    font-weight: 600;
}

/* Tổng tiền từng dòng */
.cart-table .text-success {
    color: #2a3448 !important;
    font-size: 16px;
    font-weight: 600;
}

/* Tổng cộng */
.cart-table tr.table-light td.text-success {
    font-size: 18px;
    font-weight: bold;
    color: #2a3448 !important;
}

/* === NÚT === */

/* Nút thanh toán */
.btn-success {
    background-color: #2a3448 !important;
    border-color: #2a3448 !important;
    color: #fff !important;
    font-weight: 600;
}
.btn-success:hover {
    background-color: #b8bbc4 !important;
    border-color: #b8bbc4 !important;
}

/* Nút xoá */
.btn-outline-danger {
    border-color: #2a3448 !important;
    color: #2a3448 !important;
    font-weight: 500;
}
.btn-outline-danger:hover {
    background-color: #2a3448 !important;
    color: white !important;
}

/* Hover từng dòng */
.cart-table tbody tr:hover {
    background-color: #fdf7f1;
}
