/** Shopify CDN: Minification failed

Line 6:0 Unexpected "0.key-flavours-ingredients"

**/
0.key-flavours-ingredients {
  background: var(--gradient-background);
  color: var(--color-foreground);
}

.key-flavours-ingredients .title {
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-highlight, #ffb503);
  letter-spacing: 0.02em;
}

.key-flavours-ingredients .title-wrapper-with-link {
  margin-bottom: 3rem;
}

/* Carousel wrapper and navigation */
.botanicals-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.botanicals-grid-container {
  flex: 1;
  overflow: hidden;
}

.carousel-nav {
  display: none;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-foreground);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-highlight, #ffb503);
  transform: scale(1.2);
}

.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.botanical-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}



.botanical-name {
  font-size: 1.5rem;
  font-weight: 40;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--color-foreground);
  text-transform: uppercase;
}

/* Mobile carousel styles */
@media screen and (max-width: 749px) {
  .key-flavours-ingredients .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .key-flavours-ingredients .title-wrapper-with-link {
    margin-bottom: 2rem;
  }
  
  .carousel-nav {
    display: flex;
  }
  
  .carousel-dots {
    display: flex;
  }
  
  .botanicals-grid-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .botanicals-grid-container::-webkit-scrollbar {
    display: none;
  }
  
  .botanicals-grid {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0 1rem;
  }
  
  .botanical-item {
    min-width: 250px;
    flex-shrink: 0;
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .botanical-name {
    font-size: 1.2rem;
  }
}

/* Tablet responsiveness */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .botanicals-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .botanical-item {
    padding: 1.5rem 1rem;
  }
  
  .botanical-name {
    font-size: 1.4rem;
  }
}

/* Desktop styles */
@media screen and (min-width: 990px) {
  .botanicals-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .botanical-item {
    padding: 2rem 1rem;
  }
  
  .botanical-name {
    font-size: 1.6rem;
  }
}

/* Custom color scheme support */
.key-flavours-ingredients[class*="use_custom_colors"] {
  background: var(--color-background);
}

.key-flavours-ingredients[class*="use_custom_colors"] .title {
  color: var(--color-highlight);
}

.key-flavours-ingredients[class*="use_custom_colors"] .botanical-name {
  color: var(--color-foreground);
}

.key-flavours-ingredients[class*="use_custom_colors"] .botanical-item {
  border-color: var(--color-foreground);
  opacity: 0.2;
}

/* Section divider */
.key-flavours-ingredients.section-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hover effects */
.botanical-item:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.botanical-item:hover .botanical-name {
  color: var(--color-highlight, #ffb503);
  transition: color 0.3s ease;
} 