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 = 'en' 
WHERE 
  pfv.variant_id IN (
    78091, 78090, 78116, 78117, 78118, 78119, 
    78120, 78121, 78122, 78123, 78124, 
    78125, 78095, 78105, 78094, 78104, 
    78112, 78111, 78110, 78109, 78108, 
    78107, 78106, 78096, 78097, 78098, 
    78099, 78100, 78101, 78102, 78103
  )

Query time 0.00314

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": 31,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (78091,78090,78116,78117,78118,78119,78120,78121,78122,78123,78124,78125,78095,78105,78094,78104,78112,78111,78110,78109,78108,78107,78106,78096,78097,78098,78099,78100,78101,78102,78103)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["dev_db.pfv.variant_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

variant_id position variant
78090 0 Cream White Color
78091 0 Gray Color
78094 0 White Dress And Long Hair
78095 0 White Dress And Short Hair
78096 0 White Dress And Simple Hair Bun
78097 0 White Dress And Simple Hair Bun Hairstyle (bigger veil)
78098 0 Pink Dress And Long Hair
78099 0 Ao Dai And Simple Hair Bun
78100 0 Red Dress And Long Hair
78101 0 Ao Dai And Long Hair
78102 0 Brocade Ao Dai
78103 0 Silk Ao Dai (Yellow)
78104 0 Black Vest
78105 0 Dark Gray Vest
78106 0 Gray Vest
78107 0 Black Blue Vest
78108 0 Brown Vest
78109 0 Golden Silk Ao Dai
78110 0 Blue Brocade Ao Dai
78111 0 Red Brocade Ao Dai
78112 0 Deep Red Brocade Ao Dai
78116 0 White Dress And Long Hair
78117 0 White Dress And Short Hair
78118 0 White Dress And Simple Hair Bun
78119 0 White Dress And Simple Hair Bun Hairstyle (bigger veil)
78120 0 Pink Dress And Long Hair
78121 0 Ao Dai And Simple Hair Bun
78122 0 Red Dress And Long Hair
78123 0 Ao Dai And Long Hair
78124 0 Brocade Ao Dai
78125 0 Silk Ao Dai (Yellow)