/** Shopify CDN: Minification failed

Line 33:17 Unexpected "*"

**/
/* =============================================
   AGA BevCo — Global Responsive Fixes
   Ensures all pages are fully responsive across
   mobile, tablet, and desktop breakpoints.
   ============================================= */

/* ──────────────────────────────────────────────
   1. GLOBAL SAFETY NET
   Prevent horizontal scroll on all devices
   ────────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Exclude elements that legitimately need overflow */
iframe,
video,
object,
embed,
svg,
canvas,
.ticker-x__strip-*,
[class*="ticker-x__strip-"],
[class*="ai-marquee-track-"],
[class*="ticker-x__content-"] {
  max-width: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────────
   2. TYPOGRAPHY — RESPONSIVE TEXT
   Prevent long words from overflowing containers
   ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5,
.hxl, .hxxl,
p, li, td, th, dd, dt, figcaption, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ──────────────────────────────────────────────
   3. IMAGE-WITH-TEXT SECTION
   Fix "Expression" heading breaking badly on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .image-with-text .grid {
    display: flex;
    flex-direction: column;
  }

  .image-with-text .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .image-with-text__content {
    padding: 2.5rem 2rem 3rem;
  }

  .image-with-text--overlap .image-with-text__content {
    width: 100%;
    margin: -2rem auto 0;
  }

  .image-with-text__heading {
    font-size: clamp(1.8rem, 6vw, 3rem) !important;
    line-height: 1.15;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .image-with-text__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .image-with-text__media--small,
  .image-with-text__media--medium,
  .image-with-text__media--large {
    height: auto;
    min-height: 22rem;
    aspect-ratio: 4 / 3;
  }
}

/* ──────────────────────────────────────────────
   4. TICKER / MARQUEE BANNER
   Fix overflow and sizing on mobile
   ────────────────────────────────────────────── */
[class*="ticker-x__wrapper-"] {
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 479px) {
  [class*="ticker-x__wrapper-"] {
    height: 150px;
  }

  [class*="ticker-x__text-"] {
    font-size: 14px !important;
    padding: 0 15px !important;
  }

  [class*="ticker-x__strip-1-"],
  [class*="ticker-x__strip-2-"] {
    height: 36px !important;
  }
}

/* Marquee banner blocks */
@media screen and (max-width: 749px) {
  [class*="ai-marquee-container-"] {
    overflow: hidden;
  }

  [class*="ai-marquee-text-"] {
    font-size: 14px !important;
  }
}

/* ──────────────────────────────────────────────
   5. FEATURED COLLECTION / PRODUCT CARDS
   Better spacing on small mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 479px) {
  .aga-product-grid {
    gap: 10px;
  }

  .aga-card-content {
    padding: 0;
  }

  .aga-card-name {
    font-size: 12px;
    line-height: 1.3;
  }

  .aga-price-row {
    gap: 3px;
  }

  .aga-price-btn {
    padding: 5px 4px;
    font-size: 7px;
    min-width: 0;
  }

  .aga-price-btn-label {
    font-size: 6px;
  }

  .aga-price-btn-amount {
    font-size: 12px;
  }

  .aga-add-btn {
    font-size: 8px;
    padding: 7px 6px;
    gap: 3px;
  }

  .aga-card-image-wrap {
    aspect-ratio: 1 / 1.1;
  }
}

/* ──────────────────────────────────────────────
   6. PRODUCT PAGE
   Fix layout, quantity/ATC, and tabs on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .product {
    display: flex;
    flex-direction: column;
  }

  .product__media-wrapper,
  .product__info-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .product__info-container {
    padding: 0 1.5rem;
  }

  /* Reduce spacing between product info blocks */
  .product__info-container > * + * {
    margin: 1rem 0;
  }

  .product__info-container .product-form,
  .product__info-container .product__description,
  .product__info-container .icon-with-text {
    margin: 1.5rem 0;
  }

  /* Product title */
  .product__title {
    margin-bottom: 0.8rem;
  }

  .product__title h1,
  .product__title h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 1.15;
  }

  /* Price — tighter spacing */
  .price--large .price-item {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .product .price {
    margin-bottom: 0.5rem;
  }

  .product .price dl {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }

  /* Variant picker — compact pills */
  .product-form__input {
    margin-bottom: 0.8rem;
  }

  .product-form__input .form__label {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .product-form__input--pill input[type='radio'] + label {
    padding: 0.7rem 1.4rem;
    font-size: 1.2rem;
    margin: 0.4rem 0.4rem 0.2rem 0;
  }

  /* Quantity selector — inline and compact */
  [id*="Quantity-Form-"] {
    float: none !important;
    width: auto;
    display: inline-flex !important;
    margin-right: 0 !important;
    margin-bottom: 0.8rem;
  }

  .quantity__input {
    width: 3.5rem;
    font-size: 1.3rem;
  }

  .quantity__button {
    width: 3rem;
    height: 3.5rem;
  }

  /* Add to Cart + Buy Now — full width, tighter gap */
  .product-form__buttons {
    flex-direction: column;
    gap: 0.8rem;
    max-width: 100%;
  }

  .product-form__submit {
    width: 100%;
    min-width: 0 !important;
    min-height: 4.4rem;
    font-size: 1.4rem;
  }

  .shopify-payment-button {
    flex-basis: 100%;
    margin-top: 0;
  }

  .shopify-payment-button__button {
    min-height: 4.4rem;
  }

  .shopify-payment-button__more-options {
    margin: 0.8rem 0 0.5rem;
    font-size: 1.1rem;
  }

  /* Share button — reduce whitespace */
  .share-button {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    padding-top: 0;
    padding-bottom: 0;
  }

  .product__info-container .share-button {
    margin: 0.5rem 0 !important;
  }

  /* Pickup availability */
  .product__pickup-availabilities {
    margin-top: 0.5rem !important;
  }

  /* Tabs — scrollable, compact, prevent clipping */
  .aga-product-tabs {
    margin-top: 1.5rem !important;
    overflow: visible;
    clear: both;
    width: 100%;
    max-width: 100%;
  }

  .product__info-container {
    overflow: visible;
  }

  .aga-product-tabs__nav {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 1rem;
  }

  .aga-product-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .aga-product-tabs__btn {
    padding: 8px 10px;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .aga-product-tabs__panel {
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.65;
  }

  /* Tab content — description text */
  .product__description {
    font-size: 1.4rem;
    line-height: 1.65;
  }

  .product__description ul,
  .product__description ol {
    padding-left: 2rem;
  }

  /* Additional info table */
  .aga-addl-info-table td:first-child {
    width: 40%;
    font-size: 12px;
  }

  .aga-addl-info-table td:last-child {
    font-size: 12px;
  }

  /* Product media gallery — reduce bottom margin */
  .product__media-list {
    padding-left: 0;
    margin-bottom: 1.5rem;
  }

  .thumbnail-list {
    gap: 8px !important;
    padding: 8px 0 !important;
  }

  /* Collapsible/accordion tabs on product page */
  .product__accordion {
    margin: 0.5rem 0 !important;
  }

  .product__accordion summary {
    padding: 1rem 0;
  }

  /* Star rating */
  .aga-star-rating {
    margin-bottom: 0.5rem;
  }

  /* Related products / You may also like */
  .related-products__heading {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .related-products .grid {
    gap: var(--grid-mobile-horizontal-spacing);
  }

  /* Product tax/shipping note */
  .product__tax {
    margin-top: -0.8rem;
    font-size: 1.1rem;
  }

  /* Installment payment terms */
  .installment {
    margin: 0.5rem 0 !important;
  }

  /* Inventory status */
  .product__inventory {
    font-size: 1.2rem;
    margin: 0.3rem 0 !important;
  }

  /* SKU */
  .product__sku {
    font-size: 1.1rem;
    margin: 0.3rem 0 !important;
  }

  /* Product popup (size guide etc.) */
  .product-popup-modal__button {
    font-size: 1.2rem;
    margin: 0.5rem 0 !important;
  }
}

/* Extra-small mobile product page */
@media screen and (max-width: 479px) {
  .product__info-container {
    padding: 0 1rem;
  }

  .product-form__input--pill input[type='radio'] + label {
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
  }

  .product-form__submit {
    font-size: 1.3rem;
    min-height: 4rem;
  }

  .aga-product-tabs__btn {
    padding: 6px 8px;
    font-size: 11px;
  }

  .aga-product-tabs__panel {
    font-size: 13px;
  }
}

/* ──────────────────────────────────────────────
   7. CART PAGE
   Styles moved to main-cart-items.liquid and
   main-cart-footer.liquid inline styles for
   black & white theme consistency.
   ────────────────────────────────────────────── */

/* ──────────────────────────────────────────────
   8. COLLECTION PAGE (AI BLOCK)
   Fix grid and filter bar on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 479px) {
  [class*="ai-collection-section-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  [class*="ai-product-grid-"] {
    gap: 8px !important;
  }

  [class*="ai-product-info-"] {
    padding: 10px !important;
  }

  [class*="ai-product-title-"] {
    font-size: 13px !important;
    line-height: 1.3;
  }

  [class*="ai-product-price-"] {
    font-size: 14px !important;
  }

  [class*="ai-product-button-"] {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  [class*="ai-filter-pill-"] {
    padding: 5px 10px;
    font-size: 11px;
  }

  [class*="ai-pagination-btn-"] {
    padding: 5px 8px;
    font-size: 11px;
  }

  /* Filter drawer full width on small mobile */
  [class*="ai-filter-drawer-"] {
    width: 100% !important;
    right: -100% !important;
  }

  [class*="ai-filter-drawer-overlay-"].active [class*="ai-filter-drawer-"] {
    right: 0 !important;
  }
}

/* ──────────────────────────────────────────────
   9. HEADER / NAVIGATION
   Fix pill header on various mobile sizes
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .section-header {
    padding: 8px 10px !important;
  }

  .header {
    gap: 8px;
  }

  .header__heading-logo {
    max-height: 28px;
  }

  /* Ensure drawer menu toggle is visible */
  header-drawer {
    display: flex !important;
  }

  /* Hide desktop nav on mobile */
  .header__nav,
  .header__actions {
    display: none !important;
  }

  /* Menu drawer full width */
  .menu-drawer {
    width: 100%;
    max-width: 100%;
  }

  .menu-drawer__inner-container {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 359px) {
  .header__heading-logo {
    max-height: 22px;
  }

  .header__heading-link {
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────────
   10. FOOTER
   Fix grid and spacing on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .aga-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .aga-footer__desc {
    max-width: 100%;
  }

  .aga-footer__contact-item {
    font-size: 13px;
  }

  .aga-footer__nav a {
    font-size: 14px;
  }

  /* Bottom bar stacking */
  .aga-footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .aga-footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .aga-footer__bottom-links a {
    font-size: 12px;
  }

  /* Default Dawn footer */
  .footer__content-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .footer__content-bottom .footer__column {
    width: 100%;
    justify-content: center;
  }

  .footer-block--menu .footer__content-top {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   11. RICH TEXT SECTION
   Fix container and text on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .rich-text:not(.rich-text--full-width) .rich-text__wrapper {
    width: calc(100% - 3rem);
  }

  .rich-text__blocks .h1,
  .rich-text__blocks h1 {
    font-size: clamp(2rem, 7vw, 3.6rem);
  }

  .rich-text__blocks .h0 {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }

  .rich-text__buttons--multiple > * {
    min-width: 100%;
  }
}

/* ──────────────────────────────────────────────
   12. ABOVE FOOTER HERO
   Fix height and text on mobile
   ────────────────────────────────────────────── */
@media screen and (max-width: 479px) {
  .above-footer-hero__container {
    min-height: 180px;
    padding: 0 16px;
  }

  .above-footer-hero__title {
    font-size: 22px;
    max-width: 100%;
  }

  .above-footer-hero__btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* ──────────────────────────────────────────────
   13. ANNOUNCEMENT BAR
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .announcement-bar {
    font-size: 1.1rem;
  }

  .utility-bar__grid.page-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   14. IMAGE BANNER SECTION
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .banner__content {
    padding: 2rem 1.5rem;
  }

  .banner__heading {
    font-size: clamp(2rem, 7vw, 4rem);
  }

  .banner--medium {
    min-height: 30rem;
  }

  .banner--large {
    min-height: 40rem;
  }

  /* Fix fixed position images on mobile */
  .banner__media.animate--zoom-in > img,
  .banner__media.animate--zoom-in > svg,
  .animate--fixed > img,
  .animate--fixed > svg {
    position: absolute;
    height: 100%;
  }
}

/* ──────────────────────────────────────────────
   15. MULTICOLUMN SECTION
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .multicolumn-list:not(.slider) {
    flex-direction: column;
    gap: 2rem;
  }

  .multicolumn-list__item {
    width: 100% !important;
    max-width: 100%;
  }

  .multicolumn__title {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   16. COLLAPSIBLE CONTENT / FAQ
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .collapsible-content .grid {
    flex-direction: column;
  }

  .collapsible-content .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .accordion__content {
    padding: 1rem 0;
  }
}

/* ──────────────────────────────────────────────
   17. SEARCH PAGE
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .template-search__search {
    padding: 0 1.5rem;
  }

  .search__input {
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────────
   18. SLIDESHOW SECTION
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .slideshow__text {
    padding: 2rem 1.5rem;
  }

  .slideshow__heading {
    font-size: clamp(2rem, 7vw, 3.6rem);
  }
}

/* ──────────────────────────────────────────────
   19. EMAIL SIGNUP / NEWSLETTER
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .newsletter__wrapper {
    flex-direction: column;
  }

  .newsletter-form__field-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-form__field-wrapper .field {
    width: 100%;
  }

  .newsletter-form__button {
    width: 100%;
  }
}

/* ──────────────────────────────────────────────
   20. CONTACT FORM
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .contact .field {
    margin-bottom: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   21. CUSTOMER ACCOUNT PAGES
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .customer .grid {
    display: flex;
    flex-direction: column;
  }

  .customer .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .customer table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .customer .field {
    margin-bottom: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   22. PAGINATION
   ────────────────────────────────────────────── */
@media screen and (max-width: 479px) {
  .pagination__list {
    gap: 0.3rem;
  }

  .pagination__item a,
  .pagination__item span {
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.2rem;
  }
}

/* ──────────────────────────────────────────────
   23. PREDICTIVE SEARCH
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  predictive-search {
    width: 100%;
  }

  .predictive-search {
    width: 100%;
  }

  .predictive-search__result-group {
    padding: 1rem;
  }
}

/* ──────────────────────────────────────────────
   24. CART DRAWER
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .drawer__inner {
    padding: 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   25. VIDEO SECTION
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .video-section__media {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* ──────────────────────────────────────────────
   26. QUICK ADD MODAL
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .quick-add-modal__content {
    width: 95%;
    max-height: 90vh;
    margin: 5vh auto;
  }
}

/* ──────────────────────────────────────────────
   27. BLOG / ARTICLE
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .article-template__hero-container {
    padding: 0 1.5rem;
  }

  .article-template__content {
    padding: 0 1.5rem;
  }

  .blog-articles .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

/* ──────────────────────────────────────────────
   28. STOCK FLAVORS / HERO SECTIONS (AI blocks)
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  [class*="ai_gen_block"] .hero-title,
  [class*="hero-heading"] {
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 1.1;
  }
}

/* ──────────────────────────────────────────────
   29. TABLES — RESPONSIVE
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  table:not(.cart-items) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
}

/* ──────────────────────────────────────────────
   30. POLICY PAGES
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .shopify-policy__container {
    padding: 0 1.5rem;
  }
}

/* ──────────────────────────────────────────────
   31. MEDIA GRID (featured-collection videos/GIFs)
   ────────────────────────────────────────────── */
@media screen and (max-width: 479px) {
  .aga-media-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .aga-media-card {
    aspect-ratio: 16 / 9;
  }

  .aga-media-overlay {
    padding: 16px;
  }
}

/* ──────────────────────────────────────────────
   32. GIFT CARD PAGE
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .gift-card__image-wrapper {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .gift-card__price {
    font-size: 2.4rem;
  }
}

/* ──────────────────────────────────────────────
   33. PASSWORD PAGE
   ────────────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .password-main {
    padding: 0 1.5rem;
  }

  .password-login label {
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────────
   34. TABLET-SPECIFIC FIXES (750px — 989px)
   ────────────────────────────────────────────── */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .page-width {
    padding: 0 3rem;
  }

  .product__info-wrapper {
    padding-left: 2.5rem !important;
  }

  .product--right .product__info-wrapper {
    padding-right: 2.5rem !important;
    padding-left: 0 !important;
  }

  /* Ensure 2-col grid on tablet */
  .image-with-text .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
