If all you want to do is make sure the quantity a customer orders does not exceed 15, and that limit is constant (i.e., it does not depend on what previous customers ordered), then a simple if will do the job:
if quantity_ordered > 15:
# display some message
A slightly better practice would be not to hardwire the 15 into that code but to define a constant in advance and then use that variable, since you might want to use the limit at several places in the code, and if you hardwire it it's easy to miss one in case you want to change it later:
ORDER_LIMIT = 15
if quantity_ordered > ORDER_LIMIT:
# display some message
(The capitalisation is a widespread Python convention for variables that are not supposed to be altered during the execution of the code.)
If, on the other hand, you want to keep track of your stockpile (initial stockpile is 15, and each order reduces it), then the most elegant solution would be to set up a dictionary that has the various products as keys, their stockpile as values, and you compare the quantity_ordered against that:
INITIAL_SUPPLY = 15
product_stockpiles = {"product_a": INITIAL_SUPPLY, "product_b": INITIAL_SUPPLY, # ...}
if quantity_ordered > product_stockpiles[selected_product]:
# display some error message
else:
product_stockpiles[selected_product] -= quantity_ordered