/**
 * Özellikler ve Alerjenler için CSS
 */

/* Özellikler ve Alerjenler Konteynerı */
.features-allergens-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid var(--menu-item-border-color, #f0f0f0);
    padding-top: 10px;
}

/* Özellikler Bölümü */
.menu-item-features {
    flex: 1;
    min-width: 45%;
}

/* Alerjenler Bölümü */
.menu-item-allergens {
    flex: 1;
    min-width: 45%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* Özellik Rozeti */
.menu-item-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Alerjen Rozeti */
.allergen-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray, #f5f5f5);
    border-radius: 4px;
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.allergen-badge img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* Mobil Görünüm */
@media (max-width: 576px) {
    .features-allergens-container {
        flex-direction: column;
    }
    
    .menu-item-features,
    .menu-item-allergens {
        width: 100%;
        min-width: 100%;
    }
    
    .menu-item-allergens {
        margin-top: 10px !important;
    }
}
