SELECT 
  pfv.variant_id, 
  pfv.position, 
  pfvd.variant 
FROM 
  cscart_product_feature_variants AS pfv 
  INNER JOIN cscart_product_feature_variant_descriptions AS pfvd ON pfv.variant_id = pfvd.variant_id 
  AND pfvd.lang_code = 'ru' 
WHERE 
  pfv.variant_id IN (
    3686, 3094, 3087, 4981, 4983, 3089, 4979, 
    3100, 5019, 3104, 3101, 3093, 3099
  )

Query time 0.00055

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "rows": 13,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (3686,3094,3087,4981,4983,3089,4979,3100,5019,3104,3101,3093,3099)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["lillyshop_lillyshop.pfv.variant_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'ru'"
        }
      }
    ]
  }
}

Result

variant_id position variant
3087 0 Оранжевый
3089 0 Розовый
3093 0 Синий
3094 0 Фиолетовый
3099 0 Голубой
3100 0 Желтый
3101 0 Зеленый
3104 0 Красный
3686 0 Персиковый
4979 0 Фуксия
4981 0 Вишневый
4983 0 Малиновый
5019 0 Оливковый