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 (
    77237, 77238, 77236, 77245, 77243, 77244, 
    77255, 77257, 77256, 77260, 77262, 
    77261
  )

Query time 0.00428

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": 12,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (77237,77238,77236,77245,77243,77244,77255,77257,77256,77260,77262,77261)"
        }
      },
      {
        "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
77236 0 Small size
77237 0 Big size
77238 0 Big size with twisted rope
77243 0 Yellow and brown tone
77244 0 Orange and multicolor tone
77245 0 Yellow and green tone
77255 0 KTB01
77256 0 KTB02
77257 0 KTB03
77260 0 Macrame lamp shade CD07
77261 0 Macrame lamp shade CD08
77262 0 Macrame lamp shade CD09