SELECT 
  pfv.feature_id, 
  pfv.product_id, 
  pfv.variant_id, 
  gp.group_id 
FROM 
  cscart_product_features_values AS pfv 
  INNER JOIN cscart_product_variation_group_products AS gp ON pfv.product_id = gp.product_id 
  INNER JOIN cscart_product_variation_group_features AS gpf ON gpf.group_id = gp.group_id 
  AND gpf.feature_id = pfv.feature_id 
WHERE 
  pfv.lang_code = 'en' 
  AND gp.group_id IN (143, 141, 140, 78, 77, 76, 75, 74, 73)

Query time 0.01356

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "21.81"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "gp",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "idx_group_id"
          ],
          "key": "idx_group_id",
          "used_key_parts": [
            "group_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 17,
          "rows_produced_per_join": 17,
          "filtered": "100.00",
          "index_condition": "(`wearethehelpful_scalesta_net`.`gp`.`group_id` in (143,141,140,78,77,76,75,74,73))",
          "cost_info": {
            "read_cost": "8.21",
            "eval_cost": "1.70",
            "prefix_cost": "9.91",
            "data_read_per_join": "272"
          },
          "used_columns": [
            "product_id",
            "group_id"
          ]
        }
      },
      {
        "table": {
          "table_name": "gpf",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "idx_group_id"
          ],
          "key": "idx_group_id",
          "used_key_parts": [
            "group_id"
          ],
          "key_length": "3",
          "ref": [
            "wearethehelpful_scalesta_net.gp.group_id"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 17,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "4.25",
            "eval_cost": "1.70",
            "prefix_cost": "15.86",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "feature_id",
            "group_id"
          ]
        }
      },
      {
        "table": {
          "table_name": "pfv",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "fpl",
          "used_key_parts": [
            "feature_id",
            "product_id",
            "lang_code"
          ],
          "key_length": "12",
          "ref": [
            "wearethehelpful_scalesta_net.gpf.feature_id",
            "wearethehelpful_scalesta_net.gp.product_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 17,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "4.25",
            "eval_cost": "1.70",
            "prefix_cost": "21.81",
            "data_read_per_join": "13K"
          },
          "used_columns": [
            "feature_id",
            "product_id",
            "variant_id",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

feature_id product_id variant_id group_id
555 1258 1245 73
555 1259 1283 73
555 1260 1343 73
555 1261 1245 74
555 1262 1283 74
555 1263 1343 74
555 1264 1245 75
555 1265 1283 75
555 1266 1343 75
555 1267 1344 76
555 1268 1245 76
555 1269 1283 76
555 1270 1343 76
555 1271 1245 77
555 1272 1283 77
555 1273 1343 77
555 1274 1245 78
555 1275 1283 78
555 1276 1343 78