body {
    font-family: Arial;
    background: #f0f0f0;
}

/* container */
.container {
    width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 🔥 dùng gap thay vì space-between */
}

/* sản phẩm */
.product {
    width: calc(25% - 15px); /* 🔥 chuẩn 4 cột */
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    box-sizing: border-box; /* 🔥 QUAN TRỌNG */
}

/* hover */
.product:hover {
    transform: translateY(-5px);
}

/* ảnh */
.product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* tên */
.product h3 {
    font-size: 16px;
}

/* giá */
.price {
    color: red;
    font-weight: bold;
}
/* để tag nằm trên ảnh */
.product {
    position: relative;
}

/* TAG trả góp */
.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: orange;
    color: white;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 5px;
}

/* SAO đánh giá */
.stars {
    color: gold;
    margin-top: 5px;
    font-size: 14px;
}