.food-image {
    width: 50px; /* Đặt chiều rộng cố định */
    height: 50px; /* Đặt chiều cao cố định */
    object-fit: cover; /* Đảm bảo hình ảnh bao phủ đầy đủ kích thước của thẻ img */
    object-position: center; /* Đảm bảo hình ảnh được căn giữa */
    transition: all 0.3s ease;
    position: relative;
}

.food-image:hover {
    transform: scale(1.1);
}

.food-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51,51,51,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.food-image:hover::before {
    opacity: 1;
    visibility: visible;
}

.food-image::before h2 {
    color:#999999;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.food-image::before span {
    display: inline-block;
    color: #aaa;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}