
/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  padding: 12px 16px;
  background: #fff;
  color: #000;
  z-index: 9999;
  text-decoration: none;
  border: 2px solid #000;
  border-radius: 8px;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* Menu and dropdown buttons */
.menu-button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #d32f2f; /* red flame */
  border-radius: 10px; /* for nicer focus ring */
}

.menu-button i.fa-fire-flame-curved {
  font-size: 3rem;
  transition: color 0.2s ease;
}

.menu-button:hover {
  color: #d4af37; /* gold hover */
}

.menu-button:hover i.fa-fire-flame-curved,
.menu-button:focus-visible i.fa-fire-flame-curved {
  color: currentColor;
}

.menu-button:focus-visible {
  outline: 2px solid #d32f2f;
  outline-offset: 4px;
}

.dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-transform: uppercase;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    height: 100%;  
    flex-direction: column;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  main {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right,
      #357117 0%, #357117 10%,
      #3a7719 10%, #3a7719 20%,
      #3f7f1a 20%, #3f7f1a 30%,
      #45871c 30%, #45871c 40%,
      #4b901d 40%, #4b901d 50%,
      #51991f 50%, #51991f 60%,
      #57a220 60%, #57a220 70%,
      #5daa22 70%, #5daa22 80%,
      #63b423 80%, #63b423 90%,
      #6abd25 90%, #6abd25 100%
    );
    color: #fff;
    padding-bottom: 40px;
  }
  
  /* On smaller screens, fewer stops */
  @media (max-width: 768px) {
    .hero {
      background: linear-gradient(to right,
        #3a7719 0%, #3a7719 20%,
        #45871c 20%, #45871c 40%,
        #51991f 40%, #51991f 60%,
        #5daa22 60%, #5daa22 80%,
        #6abd25 80%, #6abd25 100%
      );
    }
  }
  
  /* Simple Hero variant for page2 */
  .hero.hero--simple {
    padding-bottom: 0;
  }
  
  /* Top bar */
  .top-bar {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 40px;
  }

  .hero--index .top-bar {
    justify-content: flex-end;
  }

  .top-bar .top-logo {
    min-height: 60px;
    display: block;
    margin: 0; 
  }
  
  /* Flame icon */
  .top-bar .menu-button {
    font-size: 3rem;
  }

/* Mobile view adjustments */
@media (max-width: 768px) {
    .top-bar {
      height: 80px;
      padding: 0 20px;
    }
  
    .top-bar .top-logo {
      min-height: 40px; /* smaller logo on mobile */
    }
  
    .top-bar .menu-button {
      font-size: 2rem; /* smaller flame icon on mobile */
    }
  }  

  .center-bar {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
  
  .center-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .center-text {
    font-size: 3rem; 
    text-transform: uppercase;
  }
  
  .center-text .reg-symbol {
    font-size: 0.4em;
    vertical-align: text-top;
  }
  
  /* Icon in center content */
  .icon {
    max-height: 60px;
    display: block;
  }
  
  /* Bottom bar (only on index.html hero) */
  .bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    margin-top: 20px;
  }
  
  .left-col, .right-col {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .middle-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .flavor-img {
    max-height: 150px;
    margin-bottom: 30px;
  }
  
  .flavors {
    display: flex;
    flex-direction: column;
  }
  
  .flavors a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
  }
  
  .hero-image {
    max-width: 100%;
    height: auto;
  }
  
  .banner-container {
    width: 100%;
    overflow: hidden; 
  }
  
  .banner-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  /* Cans Section (on index.html) */
  .cans-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .cans-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .cans-container img {
    max-width: 200px;
    height: auto;
  }
  
  .find-your-dragon {
    margin-top: 40px;
    font-size: 3rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .find-your-dragon i {
    font-size: 3rem;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 10px;
    color: #444;
    font-size: 0.9rem;
    border-top: solid 1px #ccc;
  }
  
  /* Overlay for menu */
  .overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
  }
  
  /* Slide-in menu */
  .slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    min-width: 250px;
    height: 100vh;
    background: #357117;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-menu.active {
    transform: translateX(0);
  }
  
  .menu-content {
    text-align: center;
    width: 100%;
    padding: 20px;
  }
  
  .menu-content .logo-img {
    margin-bottom: 40px;
  }
  
  .menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
  }
  
  .menu-content ul li {
    margin: 20px 0;
  }
  
  .menu-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 200;
    transition: color 0.2s ease;
  }
  
  .menu-content ul li a:hover {
    color: #6abd25;
  }
  
  /* Prevent scrolling when menu open */
  body.menu-open {
    overflow: hidden;
  }
  
/* Dropdown menu styles */
.menu-content ul .dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0; /* Start with height of 0 */
    overflow: hidden; /* Prevent content overflow */
    transition: max-height 0.3s ease-in-out; /* Smooth height transition */
  }
  
  .menu-content ul .dropdown.active {
    max-height: 200px; /* Enough height for sublinks (adjust as needed) */
  }
  
  .menu-content ul .dropdown li {
    margin: 10px 0;
  }
  
  .menu-content ul .dropdown li a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    padding-left: 20px; /* Indent sublinks */
    display: block;
    transition: color 0.2s ease;
  }
  
  .menu-content ul .dropdown li a:hover {
    color: #6abd25;
  }
  
  /* Transition effect for dropdown opening/closing */
  .menu-content ul .dropdown {
    max-height: 0; /* Hide with no height initially */
    overflow: hidden;
  }
  
  .menu-content ul .dropdown.active {
    max-height: 200px; /* Enough space for sublinks */
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .center-text {
      font-size: 2rem;
    }
    .flavors a {
      font-size: 1.2rem;
    }
    .footer {
      font-size: 1.2rem;
    }
    
    /* Stack hero bottom bar columns vertically (index.html) */
    .bottom-bar {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px;
    }
  
    .left-col, .middle-col, .right-col {
      width: 100%;
    }
  
    /* For cans, they stack vertically on small screens */
    .cans-container {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
  
    /* Make menu full screen on smaller screens */
    .slide-menu {
      width: 100%;
      min-width: 100%;
    }
  }
  

/* Flavors Section */
.flavors-section {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
  }
  
.flavors-section p {
    font-family: 'Sofia Sans', sans-serif; 
    margin-bottom: 0px;
  }
  .split-container {
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 1600px; 
    flex-wrap: wrap;
  }
  
/* Left Div */
.left-div {
    flex: 0 0 35%; 
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .left-image {
    width: auto; 
    max-height: 600px; 
    object-fit: contain;
    border-radius: 10px;
  }
  
  /* Right Div */
  .right-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; 
  }
  
  .header-div {
    background-color: #357117; 
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 2.4rem;
    font-weight: bold;
    border-radius: 10px;
  }
  
  .content-div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
/* Nutrition Facts Section */
.nutrition-div {
    flex: 0 0 40%; 
    background-color: #ffffff;
    border: 1px solid #000;
    padding: 0px 20px 20px;
    border-radius: 10px;
  }
  
  .nutrition-div h3 {
    font-size: 2rem; 
    margin-bottom: 0px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
  }
  
  .nutrition-label p {
    font-size: 1rem;
    margin: 5px 0;
  }
  
  .daily-value {
    float: right;
  }
  
  .smallindent {
padding-left: 10px;
  }

  .midindent {
    padding-left: 20px;
      }

  .nutrition-label hr {
    border: 0;
    border-top: 1px solid #000; 
    margin: 0;
  }

  hr.indent {
    border: 0;
    border-top: 1px solid #000; 
    margin: 0 0 0 15px;
  }
  .nutrition-label .thick-line {
    border: 0;
    border-top: 10px solid #000; 
    margin: 5px 0;
  }
  
  .nutrition-label .note {
    font-size: 0.9rem;
    margin-top: 5px;
  }
  
  .nutrition-label .note.small {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  
  /* Text Section */
  .text-div {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .text-main {
    font-size: 1.2rem; 
    line-height: 1.4;
  }
  
  .warning-text {
    font-size: 0.9rem; 
    line-height: 1.4;
    color: #b21a30; 
  }
  
  
  .info-button {
    background-color: #357117;
    color: white;
    border: none;
    padding: 20px 40px; /* Larger button size */
    font-size: 1.5rem; /* Larger button text */
    border-radius: 10px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
  }
  
  .info-button:hover {
    background-color: #4b901d; /* Slightly lighter green */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .split-container {
      flex-direction: column; /* Stack elements */
    }
  
    .left-div {
      flex: 0 0 auto; /* Automatic sizing */
      margin-bottom: 20px;
    }
  
    .left-image {
        max-height: 400px; /* Reduce height further for smaller screens */
      }

    .content-div {
      flex-direction: column; /* Stack nutrition and text */
    }
  
    .nutrition-div {
      flex: 0 0 auto; /* Automatically size */
    }
  
    .text-div {
      flex: 0 0 auto; /* Automatically size */
    }
  
    .header-div {
      font-size: 2rem; /* Slightly smaller header on mobile */
    }
  
    .info-button {
      font-size: 1.2rem; /* Slightly smaller button text */
      padding: 15px 30px;
    }
  }


  .three-box-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    width: 100%; 
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 0 clamp(20px, 5%, 40px) 50px;
    box-sizing: border-box;
  }
  
  .box {
    flex: 1;
    min-width: calc(33.333% - 40px); 
    height: 350px; 
    box-sizing: border-box;
    border-radius: 10px;
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    text-decoration: none; 
    color: white; 
    overflow: hidden;
    cursor: pointer; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .box p {
    font-family: 'Sofia Sans', sans-serif; 
    font-size: 1.4rem;
  }
  
  .box h2 {
    font-size: 2rem;
  }
  
  .green:hover {
    background-color: #429b06; 
  }

  .blue:hover {
    background-color: #1218d9; 
  }
  
  .gray:hover {
    background-color: #444;
  }
  
  .orange:hover {
    background-color: #ef4900; 
  }
  
  .green {
    background-image: url('../img/link-can-sugarfree.webp'); 
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #4bb604;
    transition: background-color 0.5s ease; 
  }
  
  .blue {
    background-image: url('../img/link-can-regular.webp'); 
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #1d24f7;
    transition: background-color 0.5s ease; 
  }

  .gray {
    background-color: gray;
    background-image: url('../img/wtb-map.webp'); 
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .orange {
    background-color: #f36702;
    background-image: url('../img/link-can-257.webp'); 
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    transition: background-color 0.5s ease; 
  }
  
  .orangebg {
    background-color: #f36702;
  }

  .greenbg {
    background-color: #4bb604;
  }
  
  .bluebg {
    background-color: #1d24f7;
  }

  .text-content {
    padding: 20px;
  }
  
  .right-aligned {
    text-align: right;
  }
  
  .center-aligned {
    text-align: center;
  }
  
  @media (max-width: 1000px) {
    .three-box-section {
      flex-direction: column; 
      min-height: 1200px; 
    }
  
    .box {
      width: 100%;
      margin-bottom: 10px; 
      height: 200px; 
    }
  }

  .faq-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Oswald', sans-serif;
  }
  
  .faq-header {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .faq-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-family: 'Sofia Sans', sans-serif;
  }
  
  .accordion {
    border-top: 1px solid #ccc;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ccc;
  }
  
  .accordion-title {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #357117;
    font-family: 'Oswald', sans-serif;
  }
  
  .accordion-title:hover {
    background: #f3f3f3;
  }

  .accordion-title .sign {
    font-size: 2rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-content {
    width: 100%;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    background-color: #f3f3f3;
  }
  
  .accordion-item.active .accordion-content {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 20px;
  }
  
  .accordion-item.active .sign {
    transform: rotate(90deg);
  }
  
  /* Contact Info Styling */
  .contact-info {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.2rem;
    background: #fff;
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  
  .info-item {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .info-item i {
    font-size: 2rem;
    color: #357117;
  }
  
  .info-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .contact-section {
    width: 100%;
    padding: 60px 20px;
    font-family: 'Oswald', sans-serif;
    background: #fff; 
  }
  
  .contact-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  
  .contact-info,
  .contact-form {
    background: #fff;
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 10px;
  }
  
  .contact-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
  }
  
  .info-item {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .info-item i {
    font-size: 2rem;
    color: #357117;
  }
  
  .contact-form-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 500;
  }
  
  .form-field {
    margin-bottom: 25px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    color: #357117;
  }
  
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    font-family: 'Sofia Sans', sans-serif;
    border-radius: 5px;
  }
  
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: #357117;
  }
  
  .form-field textarea {
    resize: vertical;
    min-height: 180px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .form-row .half {
    flex: 1;
  }
  
.form-row .quarter {
  flex: 0 0 150px; /* Make it a little wider */
}

#state {
  text-transform: uppercase;
}
  .notice {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #b00020;
    text-align: center;
    font-family: 'Sofia Sans', sans-serif;
  }
  
  .contact-form .g-recaptcha {
    margin-bottom: 20px;
  }
  
  .contact-form button {
    padding: 15px 120px;
    background: #357117;
    color: #fff;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    border-radius: 5px;
  }
  
  .contact-form button:hover {
    background: #26510d;
  }
  
  .form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .form-response {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
    color: #357117; /* success color */
    font-weight: 600;
  }


  /* Mobile adjustments */
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  
    .form-row .quarter {
      width: 100%;
    }
  }


/* Where to Buy Section */
.where-to-buy-section {
  width: 100%;
  padding: 0px 20px 60px;
  font-family: 'Oswald', sans-serif;
  border-top: 1px solid #ccc;
  background: #fff;
}

  .where-to-buy-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .where-to-buy-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .where-to-buy-header p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.4rem;
    margin-top: 20px;
    margin: 0 auto;
    line-height: 1.4;
  }
  
  .where-to-buy-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
  }
  
  .states-list {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0px 20px;
    background: #fff;
    font-family: 'Sofia Sans', sans-serif;
    overflow-y: auto;
    max-height: 80vh;
  }
  
  .states-list h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .states-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .state-item {
    display: block;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    color: inherit;
    border-bottom: 1px solid #ddd;
    transition: background 0.2s ease;
  }

  .states-list ul li:last-child .state-item {
    border-bottom: none;
  }

  .state-item:hover {
    background: #eee;
  }

  .state-item:focus-visible {
    outline: 2px solid #357117;
    outline-offset: 2px;
    border-radius: 6px;
    background: #eee;
  }

  .state-item.disabled,
  .state-item:disabled {
    color: #666;
    cursor: not-allowed;
    background: transparent;
  }

  .state-item.disabled:hover,
  .state-item:disabled:hover {
    background: transparent;
  }

  
  .state-stores {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    font-family: 'Sofia Sans', sans-serif;
    background: #fff;
    position: relative; 
  }
  
  
  .store-grid {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .store-grid.active {
    display: block;
    opacity: 1;
  }
  
  
  .store-grid h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #357117;
    border-bottom: 2px solid #357117;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .store-item {
    text-align: center;
  }
  
  .store-item a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    background: #ccc;
    border-radius: 10px;
    border: solid 1px #ccc;
    overflow: hidden;
    transition: background-color 0.5s ease, grayscale 0.3s ease;
  }
  
  .store-item img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .store-item p {
    margin: 10px;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .store-item a:hover {
    color: #fff;
    background-color: #357117;
  }

  .store-item a:hover img {
    filter: grayscale(0%);
  }

  @media (max-width: 768px) {
    .where-to-buy-container {
      flex-direction: column;
    }
  
    .states-list {
      width: 100%;
      max-height: none;
      padding: 20px;
      font-size: 1.5rem; /* Larger font size */
    }
  
    .state-item {
      padding: 15px;
    }
    .state-item.disabled {
      display: none;
    }
  }

/* Make dropdown button match nav links */
.nav-menu a,
.nav-menu button {
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
    font-weight: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* Nav hover + focus match */
.nav-menu a:hover,
.nav-menu button:hover,
.nav-menu a:focus-visible,
.nav-menu button:focus-visible {
    color: #ffffff;
}

/* Flame styling */
.flame-toggle {
    color: #c62828;
    transition: color 0.2s ease;
}

.flame-toggle:hover {
    color: #d4af37;
}

.flame-toggle:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 3px;
}


/* --- FORCE FLAVORS BUTTON TO MATCH NAV LINKS EXACTLY --- */
.nav-menu button,
.nav-menu button * {
    font-size: 1em !important;
    font-family: inherit !important;
    letter-spacing: inherit !important;
    text-transform: uppercase !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

/* --- FORCE FLAME GOLD HOVER --- */
.flame-toggle:hover,
.flame-toggle:hover i,
.flame-toggle:hover svg {
    color: #d4af37 !important;
    fill: #d4af37 !important;
}



/* Make FLAVORS dropdown toggle match slide menu link styling */
.menu-content ul li .dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.menu-content ul li .dropdown-toggle:hover,
.menu-content ul li .dropdown-toggle:focus-visible {
  color: #ffffff;
}


/* --- FAQ Accordion Accessibility + Animation Fix --- */

.accordion-content {
    width: 100%;
    box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    width: 100%;
    box-sizing: border-box;
  padding-top: 16px;
  padding-bottom: 16px;
}

