SELECT 
  cscart_shippings.shipping_id, 
  cscart_shipping_descriptions.shipping, 
  cscart_shipping_descriptions.delivery_time, 
  cscart_shipping_descriptions.description, 
  cscart_shippings.rate_calculation, 
  cscart_shippings.service_params, 
  cscart_shippings.destination, 
  cscart_shippings.min_weight, 
  cscart_shippings.max_weight, 
  cscart_shippings.service_id, 
  cscart_shippings.free_shipping, 
  cscart_shipping_services.module, 
  cscart_shipping_services.code as service_code, 
  cscart_shippings.is_address_required 
FROM 
  cscart_shippings 
  LEFT JOIN cscart_shipping_descriptions ON cscart_shippings.shipping_id = cscart_shipping_descriptions.shipping_id 
  LEFT JOIN cscart_shipping_services ON cscart_shipping_services.service_id = cscart_shippings.service_id 
  LEFT JOIN cscart_storefronts_shippings AS storefronts_shippings ON storefronts_shippings.shipping_id = cscart_shippings.shipping_id 
WHERE 
  cscart_shippings.status = 'A' 
  AND cscart_shippings.shipping_id IN (76, 75) 
  AND (
    cscart_shippings.min_weight <= 0.630 
    AND (
      cscart_shippings.max_weight >= 0.630 
      OR cscart_shippings.max_weight = 0.00
    )
  ) 
  AND cscart_shipping_descriptions.lang_code = 'pl' 
  AND (
    cscart_shippings.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_shippings.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_shippings.usergroup_ids
    )
  ) 
  AND (
    storefronts_shippings.storefront_id = 1 
    OR storefronts_shippings.storefront_id IS NULL
  ) 
ORDER BY 
  cscart_shippings.position

Query time 0.00036

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "2.00"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "0.05"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_shippings",
            "access_type": "range",
            "possible_keys": [
              "shipping_id",
              "c_status"
            ],
            "key": "shipping_id",
            "used_key_parts": [
              "shipping_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 2,
            "rows_produced_per_join": 0,
            "filtered": "2.50",
            "index_condition": "(`cscartdevel`.`cscart_shippings`.`shipping_id` in (76,75))",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.01",
              "prefix_cost": "1.41",
              "data_read_per_join": "119"
            },
            "used_columns": [
              "shipping_id",
              "destination",
              "min_weight",
              "max_weight",
              "usergroup_ids",
              "rate_calculation",
              "service_id",
              "service_params",
              "position",
              "status",
              "free_shipping",
              "is_address_required"
            ],
            "attached_condition": "((`cscartdevel`.`cscart_shippings`.`status` = 'A') and (`cscartdevel`.`cscart_shippings`.`min_weight` <= 0.630) and ((`cscartdevel`.`cscart_shippings`.`max_weight` >= 0.630) or (`cscartdevel`.`cscart_shippings`.`max_weight` = 0.000)) and ((`cscartdevel`.`cscart_shippings`.`usergroup_ids` = '') or (0 <> find_in_set(0,`cscartdevel`.`cscart_shippings`.`usergroup_ids`)) or (0 <> find_in_set(1,`cscartdevel`.`cscart_shippings`.`usergroup_ids`))))"
          }
        },
        {
          "table": {
            "table_name": "cscart_shipping_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "shipping_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "cscartdevel.cscart_shippings.shipping_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.01",
              "eval_cost": "0.01",
              "prefix_cost": "1.43",
              "data_read_per_join": "49"
            },
            "used_columns": [
              "shipping_id",
              "lang_code",
              "shipping",
              "delivery_time",
              "description"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_shipping_services",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "sa"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "service_id"
            ],
            "key_length": "3",
            "ref": [
              "cscartdevel.cscart_shippings.service_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.01",
              "eval_cost": "0.01",
              "prefix_cost": "1.45",
              "data_read_per_join": "20"
            },
            "used_columns": [
              "service_id",
              "module",
              "code"
            ]
          }
        },
        {
          "table": {
            "table_name": "storefronts_shippings",
            "access_type": "index",
            "key": "PRIMARY",
            "used_key_parts": [
              "storefront_id",
              "shipping_id"
            ],
            "key_length": "8",
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "using_index": true,
            "using_join_buffer": "hash join",
            "cost_info": {
              "read_cost": "0.50",
              "eval_cost": "0.01",
              "prefix_cost": "1.95",
              "data_read_per_join": "0"
            },
            "used_columns": [
              "storefront_id",
              "shipping_id"
            ],
            "attached_condition": "(<if>(found_match(storefronts_shippings), ((`cscartdevel`.`storefronts_shippings`.`storefront_id` = 1) or (`cscartdevel`.`storefronts_shippings`.`storefront_id` is null)), true) and <if>(is_not_null_compl(storefronts_shippings), (`cscartdevel`.`storefronts_shippings`.`shipping_id` = `cscartdevel`.`cscart_shippings`.`shipping_id`), true))"
          }
        }
      ]
    }
  }
}

Result

shipping_id shipping delivery_time description rate_calculation service_params destination min_weight max_weight service_id free_shipping module service_code is_address_required
75 Kurier InPost 1-3 dni M a:29:{s:19:"ss_paczkomaty_token";s:0:"";s:24:"ss_paczkomaty_test_token";s:0:"";s:25:"ss_paczkomaty_shipping_id";s:2:"80";s:30:"ss_paczkomaty_test_shipping_id";s:2:"80";s:18:"ss_shipx_test_mode";s:1:"N";s:19:"ss_shipx_size_label";s:6:"normal";s:21:"ss_shipx_format_label";s:3:"pdf";s:23:"ss_shipx_default_status";s:0:"";s:21:"ss_shipx_weight_param";s:0:"";s:21:"ss_shipx_length_param";s:0:"";s:20:"ss_shipx_width_param";s:0:"";s:21:"ss_shipx_height_param";s:0:"";s:20:"ss_shipx_disable_cod";s:1:"N";s:26:"ss_shipx_disable_insurance";s:1:"N";s:25:"ss_shipx_weekend_delivery";s:1:"N";s:26:"ss_shipx_sender_point_name";s:0:"";s:20:"ss_shipx_sender_name";s:0:"";s:28:"ss_shipx_sender_company_name";s:0:"";s:26:"ss_shipx_sender_first_name";s:0:"";s:25:"ss_shipx_sender_last_name";s:0:"";s:21:"ss_shipx_sender_phone";s:0:"";s:21:"ss_shipx_sender_email";s:0:"";s:22:"ss_shipx_sender_street";s:0:"";s:31:"ss_shipx_sender_building_number";s:0:"";s:20:"ss_shipx_sender_city";s:0:"";s:25:"ss_shipx_sender_post_code";s:0:"";s:28:"ss_shipx_sender_country_code";s:0:"";s:28:"ss_shipx_sender_office_hours";s:0:"";s:23:"ss_shipx_sender_comment";s:0:"";} I 0.000 25.000 600 N shipx InPost_Express Y
76 Paczkomat InPost 1-2 dni M a:30:{s:19:"ss_paczkomaty_token";s:0:"";s:24:"ss_paczkomaty_test_token";s:0:"";s:25:"ss_paczkomaty_shipping_id";s:2:"80";s:30:"ss_paczkomaty_test_shipping_id";s:2:"80";s:18:"ss_shipx_test_mode";s:1:"N";s:19:"ss_shipx_size_label";s:6:"normal";s:21:"ss_shipx_format_label";s:3:"pdf";s:23:"ss_shipx_default_status";s:0:"";s:21:"ss_shipx_weight_param";s:0:"";s:23:"ss_shipx_sending_method";s:13:"parcel_locker";s:20:"ss_shipx_disable_cod";s:1:"N";s:26:"ss_shipx_disable_insurance";s:1:"N";s:25:"ss_shipx_weekend_delivery";s:1:"N";s:13:"ss_shipx_size";s:1:"A";s:29:"ss_paczkomaty_displayed_types";s:3:"ALL";s:27:"ss_paczkomaty_dropoff_point";s:0:"";s:26:"ss_shipx_sender_point_name";s:0:"";s:20:"ss_shipx_sender_name";s:0:"";s:28:"ss_shipx_sender_company_name";s:0:"";s:26:"ss_shipx_sender_first_name";s:0:"";s:25:"ss_shipx_sender_last_name";s:0:"";s:21:"ss_shipx_sender_phone";s:0:"";s:21:"ss_shipx_sender_email";s:0:"";s:22:"ss_shipx_sender_street";s:0:"";s:31:"ss_shipx_sender_building_number";s:0:"";s:20:"ss_shipx_sender_city";s:0:"";s:25:"ss_shipx_sender_post_code";s:0:"";s:28:"ss_shipx_sender_country_code";s:0:"";s:28:"ss_shipx_sender_office_hours";s:0:"";s:23:"ss_shipx_sender_comment";s:0:"";} I 0.000 25.000 601 N shipx InPost_Paczkomaty Y