/* ====== Giỏ hàng ====== */
.cart {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* ====== Tiêu đề giỏ hàng ====== */
.cart h1 {
    text-align: center;
    background-color: #F4F7F9; /* Thay đổi: Xám nhạt/Trắng nhạt */
    color: #1E4162; /* Thay đổi: Navy Blue */
    font-weight: bold;
    font-size: 32px;
    padding: 15px;
    border-radius: 40px;
}

/* ====== Danh sách sản phẩm ====== */
#cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 60px;
    height: auto;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-item p {
    margin: 0;
    flex: 1;
    font-size: 16px;
}

/* ====== Nút Xóa ====== */
.remove-btn {
    background-color: #E76F51; /* Thay đổi: Cam Đất */
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.remove-btn:hover {
    background-color: #d13a52; /* Màu đậm hơn cho hover */
}

/* ====== Tổng tiền và Thanh toán ====== */
.cart-footer {
    text-align: right;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

#total-price {
    font-size: 20px;
    color: blue; /* Giữ màu xanh cho giá tổng */
}

/* ====== Nút Thanh toán ====== */
#checkout {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #2A9D8F; /* Thay đổi: Xanh Mòng Két */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}

#checkout:hover {
    background-color: #1E4162; /* Thay đổi: Navy Blue */
    transform: scale(1.05);
}

.ban {
    padding: 30px 0; 
    text-align: center; 
}

.ban h1 {
    font-size: 2em; 
    margin-bottom: 5px; 
}

.ban p {
    font-size: 1em;
    margin-bottom: 0;
}