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 = 'uk' 
WHERE 
  pfv.variant_id IN (
    4763, 3085, 4766, 3096, 3099, 3089, 3104, 
    5063, 3100, 4922, 5074, 3090, 3103, 
    4915
  )

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": 14,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (4763,3085,4766,3096,3099,3089,3104,5063,3100,4922,5074,3090,3103,4915)"
        }
      },
      {
        "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 = 'uk'"
        }
      }
    ]
  }
}

Result

variant_id position variant
3085 0 Молочний
3089 0 Рожевий
3090 0 Салатовий
3096 0 Бежевий
3099 0 Блакитний
3100 0 Жовтий
3103 0 Коричневий
3104 0 Червоний
4763 30 30 мл
4766 15 15 мл
4915 0 Нюдовий
4922 0 Бузковий
5063 0 М'ятний
5074 0 Кораловий