/** Shopify CDN: Minification failed

Line 112:2 Unexpected "}"

**/
/* - -------- PRODUCT PAGE ---------- - */

.variant-option--equal-width-buttons {
  --variant-min-width: 33.33%; /* Ensures each button takes up approximately one-third of the container width */

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Explicitly sets three columns of equal width */
  gap: 10px; /* Adds spacing between buttons for better visual separation */
  width: 100%; /* Ensures the grid takes full container width */

  .variant-option__button-label {
    min-width: 0; /* Prevents buttons from exceeding the grid cell width */
    width: 100%; /* Ensures buttons fill their grid cell */
    box-sizing: border-box; /* Ensures padding and borders are included in the width */
  }

  .variant-option__button-label__text {
    text-align: center; /* Centers text within each button */
    text-wrap: balance; /* Balances text wrapping for consistent appearance */
  }
}

@media (max-width: 600px) {
  .variant-option--equal-width-buttons {
    grid-template-columns: repeat(2, calc(50% - 4px));
    gap: 8px; /* Slightly smaller gap for mobile */
  }
}

.variant-option__button-label {
    min-height:35px;
}


@media screen and (min-width: 750px) {
    .product-details {
      max-width: 600px;
      margin: auto;
    }
}




/* - -------- NAVIGATION ---------- - */

.mega-menu__link {
  font-size:14px;
  }
  .mega-menu__link--parent{
    font-size:22px;
  }   

.mega-menu__grid{
  max-width:1280px;
}

/* - -------- Flavor Tags ---------- - */


.flavour-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position:absolute;
    bottom: 18px;
    left: 8px;
    bottom: 12px;
  }

  .flavour-tag {
    box-sizing: border-box;
    width: auto;
    height: 25px;
    padding: 0 10px;
    background: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flavour-tag-text {
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    color: #383838;
  }

  @media (max-width: 600px) {
      .flavour-tags-container {
        gap: 2px;
        left: 0px;
    }
       
}
    .flavour-tag {
      height: 19px;
      padding: 0 3px;
    }
    .flavour-tag-text {

    }

  }

@media (min-width: 900px) {
  .mega-menu__grid{
    margin-left:122px !important;
  }
}


.loop-selling-plan-fieldset{
  border-radius:0px !important;
  background:#f8f8f8;
}
.loop-selected-selling-plan-group {
    background-color: black;
    color: white;
    }
    .loop-selling-plan-selector{
      color:black;
    }
.loop-subscription-group, .loop-one-time-purchase-option{
    padding: .7em 1.1em 0.7em 1.1em !important;
}

/* Mobile Menu */

.menu-drawer__menu-item--mainlist {
    font-size: 1rem
}

.menu-drawer__menu-item--parent, .menu-drawer__menu-item-text {
    font-size: 1rem;
    text-transform: none;
}

.menu-drawer__list-item--divider {
    border-block-end: 0px solid var(--color-border);
}

.menu-drawer__menu-item--parent{
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 14px;
}
.menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
    margin-block-end: 12px;
}

.menu-drawer__menu-container--divider {
    border-block-end: 0px solid var(--color-border); 
}

/* Mobile Menu */

.cart-drawer__summary{
  margin-bottom:20px;
}


/* Cart Page */

.cart-page.spacing-style{
  width: 1200px;
  margin: auto;
  max-width: 100%;
}