/* Toàn trang */
body {
    font-family: Arial;
    background-color: #f5f5f5;
}

/* Khung chứa */
.container {
    width: 900px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cột */
    gap: 15px;
}

/* Mỗi sản phẩm */
.card {
    height: 300px; /* đảm bảo không lệch */
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px;

    box-shadow: 0 0 5px rgba(0,0,0,0.2);

    display: flex;
    flex-direction: column;
    align-items: center; /* căn giữa ngang */
    justify-content: space-between;
}

/* Ảnh sản phẩm */
.card img {
    width: 100%;
    height: 150px;
    object-fit: contain; /* FIX lệch ảnh */
    display: block;
    margin: auto;
}

/* Tên sản phẩm */
.card h4 {
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

/* Giá */
.price {
    color: red;
    font-weight: bold;
}