/* ====== 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: #c9d7a6;
    color: #6F4E37;
    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: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.remove-btn:hover {
    background-color: #c82333;
}

/* ====== 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;
}

/* ====== Nút Thanh toán ====== */
#checkout {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #899d5a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}

#checkout:hover {
    background-color: #6F4E37;
    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;
}