/* Tổng thể */
body {
    font-family: Arial;
    background: #f2f2f2;
}

/* Khung chứa */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card sản phẩm */
.card {
    width: 220px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Hover giống hiệu ứng nhẹ */
.card:hover {
    transform: scale(1.05);
}

/* Ảnh */
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Tên */
.card h3 {
    font-size: 16px;
    margin: 10px 0;
}

/* Giá */
.price {
    color: red;
    font-weight: bold;
}

/* Mô tả */
.desc {
    color: gray;
    font-size: 14px;
}