SELECT 
  c.option_id, 
  c.product_id 
FROM 
  cscart_product_global_option_links AS c 
  LEFT JOIN cscart_product_options AS a ON a.option_id = c.option_id 
WHERE 
  a.status = 'A' 
  AND c.product_id IN (47631, 2292, 38765)

Query time 0.00107

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "c",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "rows": 3,
          "filtered": 100,
          "index_condition": "c.product_id in (47631,2292,38765)"
        }
      },
      {
        "table": {
          "table_name": "a",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["option_id"],
          "ref": ["dev_db.c.option_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "a.`status` = 'A'"
        }
      }
    ]
  }
}

Result

option_id product_id
1425 47631