/* Menü Ürün Görselleri için Özel Stiller */

.menu_tab-list_item {
    position: relative;
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease;
}

.menu_tab-list_item:hover {
    background-color: rgba(179, 142, 106, 0.05);
    transform: translateX(5px);
}

.menu_tab-list_item-img {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.menu_tab-list_item-img img {
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu_tab-list_item:hover .menu_tab-list_item-img img {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(139,69,19,0.2);
}

.menu_tab-list_item .main {
    margin-bottom: 8px;
}

.menu_tab-list_item .description {
    clear: none;
    margin-top: 5px;
}

/* Mobil için responsive */
@media (max-width: 768px) {
    .menu_tab-list_item-img {
        float: none;
        margin: 0 auto 15px;
        text-align: center;
        display: block;
    }
    
    .menu_tab-list_item-img img {
        max-width: 100%;
        height: auto;
    }
}
