SELECT 
  pfv.feature_id, 
  pfv.product_id, 
  pfv.variant_id, 
  fv.position, 
  fvd.variant 
FROM 
  cscart_product_features_values AS pfv 
  INNER JOIN cscart_product_feature_variants AS fv ON pfv.feature_id = fv.feature_id 
  AND pfv.variant_id = fv.variant_id 
  INNER JOIN cscart_product_feature_variant_descriptions AS fvd ON pfv.variant_id = fvd.variant_id 
  AND fvd.lang_code = 'en' 
WHERE 
  pfv.feature_id IN (
    625, 624, 628, 595, 627, 623, 622, 626, 
    553
  ) 
  AND pfv.product_id IN (6641, 6219, 5807, 3722, 5819, 1516) 
  AND pfv.lang_code = 'en'

Query time 0.00315

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "42.18"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "variant_id",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "idx_product_feature_variant_id",
          "used_key_parts": [
            "product_id",
            "feature_id",
            "lang_code"
          ],
          "key_length": "12",
          "rows_examined_per_scan": 54,
          "rows_produced_per_join": 54,
          "filtered": "100.00",
          "using_index": true,
          "cost_info": {
            "read_cost": "7.28",
            "eval_cost": "5.40",
            "prefix_cost": "12.68",
            "data_read_per_join": "41K"
          },
          "used_columns": [
            "feature_id",
            "product_id",
            "variant_id",
            "lang_code"
          ],
          "attached_condition": "((`gaseus`.`pfv`.`feature_id` in (625,624,628,595,627,623,622,626,553)) and (`gaseus`.`pfv`.`product_id` in (6641,6219,5807,3722,5819,1516)) and (`gaseus`.`pfv`.`lang_code` = 'en'))"
        }
      },
      {
        "table": {
          "table_name": "fv",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY",
            "feature_id"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id"
          ],
          "key_length": "3",
          "ref": [
            "gaseus.pfv.variant_id"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 30,
          "filtered": "56.10",
          "cost_info": {
            "read_cost": "13.50",
            "eval_cost": "3.03",
            "prefix_cost": "31.58",
            "data_read_per_join": "34K"
          },
          "used_columns": [
            "variant_id",
            "feature_id",
            "position"
          ],
          "attached_condition": "(`gaseus`.`fv`.`feature_id` = `gaseus`.`pfv`.`feature_id`)"
        }
      },
      {
        "table": {
          "table_name": "fvd",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id",
            "lang_code"
          ],
          "key_length": "9",
          "ref": [
            "gaseus.pfv.variant_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 30,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "7.57",
            "eval_cost": "3.03",
            "prefix_cost": "42.18",
            "data_read_per_join": "94K"
          },
          "used_columns": [
            "variant_id",
            "variant",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

feature_id product_id variant_id position variant
553 1516 1973 1 up to 4.5 (technical gases)
595 1516 1904 0 Oxygen (O2)
622 1516 2029 0 M 24 x 1.5 RHak (Vareo)
623 1516 2002 0 G 1/2 RHak (according to EN 560)
624 1516 1705 0 200
625 1516 2337 0 20,00
626 1516 1721 0 75
627 1516 1659 1 Brass
628 1516 1660 0 Single stage
553 3722 1973 1 up to 4.5 (technical gases)
595 3722 1904 0 Oxygen (O2)
622 3722 2029 0 M 24 x 1.5 RHak (Vareo)
623 3722 2002 0 G 1/2 RHak (according to EN 560)
624 3722 1803 0 300
625 3722 2337 0 20,00
626 3722 1721 0 75
627 3722 1659 1 Brass
628 3722 1660 0 Single stage
553 5807 1973 1 up to 4.5 (technical gases)
595 5807 1748 0 Carbon Dioxide (CO2)
622 5807 2325 0 DIN 477-1 No. 6 (W 21.8 x 1/14 RH)
623 5807 2098 0 G1/2 RHak according to EN 560
624 5807 1876 0 100
625 5807 2337 0 20,00
626 5807 1721 0 75
627 5807 1659 1 Brass
628 5807 1660 0 Single stage
553 5819 1973 1 up to 4.5 (technical gases)
595 5819 1904 0 Oxygen (O2)
622 5819 2029 0 M 24 x 1.5 RHak (Vareo)
623 5819 2002 0 G 1/2 RHak (according to EN 560)
624 5819 1705 0 200
625 5819 2337 0 20,00
626 5819 1721 0 75
627 5819 1659 1 Brass
628 5819 1660 0 Single stage
553 6219 1973 1 up to 4.5 (technical gases)
595 6219 1905 0 Nitrogen (N2)
622 6219 2029 0 M 24 x 1.5 RHak (Vareo)
623 6219 2002 0 G 1/2 RHak (according to EN 560)
624 6219 1803 0 300
625 6219 2334 0 10,00
626 6219 2043 0 50
627 6219 1659 1 Brass
628 6219 1660 0 Single stage
553 6641 1973 1 up to 4.5 (technical gases)
595 6641 1905 0 Nitrogen (N2)
622 6641 1946 0 DIN 477-1 No. 10 (W 24.32 x 1/14 RH)
623 6641 2098 0 G1/2 RHak according to EN 560
624 6641 1705 0 200
625 6641 2334 0 10,00
626 6641 2043 0 50
627 6641 1659 1 Brass
628 6641 1660 0 Single stage