As Seen On
Recognized By
Alcohol Laws in Arizona: Sale and Consumption
Â
Introduction
Alcohol laws in Arizona are determined by a variety of factors, including the type of alcohol, the location of sale or consumption, and the age of the individuals involved. Understanding these laws is crucial for residents and visitors alike to ensure they are in compliance and avoid legal issues.
Sale of Alcohol
Arizona law permits any store with an off-premises liquor license to sell any type of alcohol. This includes grocery stores, convenience stores, and specialty liquor stores. Drive-through liquor stores are also permissible in the state. Bars and restaurants can sell closed containers of alcohol for off-premises consumption. However, on Native American reservations, the laws can be more restrictive or even prohibitive, reflecting the sovereign nature of tribal lands​​.The state controls the sale of alcohol through the Arizona Department of Liquor Licenses and Control, which is governed by Title 4 of the Arizona liquor laws, found in the Arizona Revised Statutes. These statutes, along with the Arizona Administrative Code, provide the regulatory framework for all aspects of alcohol licensing and sales in the state​​.
Licensing and Unlawful Acts
Under A.R.S. § 4-244, it is illegal for a person to buy for resale, sell, or deal in spirituous liquors without a proper license issued by the state. There are also provisions for temporary permits under certain conditions, such as for trustees in bankruptcy​​. The law also addresses unlicensed business establishments and premises, outlining penalties and the potential for seizure and forfeiture of property for unlawful consumption of spirituous liquor​​.
Consumption of Alcohol
The legal drinking age in Arizona is 21, and it is against the law to consume alcohol in public places. There are specific provisions for underage consumption in religious services. Adults 19 years of age or older may serve alcohol or tend bar, and those aged 16 or older can sell alcohol in stores for off-premises consumption, provided they are supervised by someone over 19​​.
Hours of Sale
Arizona stipulates specific hours during which alcohol can be sold, both for on-premises consumption, such as in bars and restaurants, and off-premises consumption, such as in liquor stores. These hours are from 6:00 AM to 2:00 AM, seven days a week​​.
Conclusion
Navigating the complexities of Arizona’s alcohol laws requires a solid understanding of the statutes and regulations that govern the sale and consumption of alcohol. Whether you are a business owner in need of a liquor license, an employee selling or serving alcohol, or a consumer enjoying what Arizona has to offer, staying informed of these laws is essential. If you need assistance with alcohol-related legal issues or have questions regarding Arizona’s liquor laws, Tamou Law Group PLLC is here to help. Contact us at 623-321-4699 for experienced legal guidance.
Awards & Recognition
Our recognition for Phoenix DUI defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix DUI lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






