/** Shopify CDN: Minification failed

Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.ingredients-grid {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .ingredients-grid__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .ingredients-grid__heading {
    margin-bottom: 1rem;
  }

  .ingredients-grid__description {
    max-width: 74rem;
    margin: 0 auto;
    font-size: 1.6rem;
    color: rgba(var(--color-foreground), 0.75);
  }

  .ingredients-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  @media screen and (min-width: 750px) {
    .ingredients-grid__wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  @media screen and (min-width: 990px) {
    .ingredients-grid__wrapper {
      grid-template-columns: repeat(5, 1fr);
      gap: 3rem;
    }
  }

  .ingredients-grid__item {
    position: relative;
  }

  .ingredients-grid__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    background: rgba(var(--color-foreground), 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .ingredients-grid__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--color-foreground), 0.06) 0%, rgba(var(--color-foreground), 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .ingredients-grid__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(var(--color-shadow), 0.15);
    background: rgba(var(--color-foreground), 0.06);
  }

  .ingredients-grid__card:hover::before {
    opacity: 1;
  }

  .ingredients-grid__image-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--color-background), 0.8);
    padding: 1rem;
    transition: transform 0.3s ease;
  }

  .ingredients-grid__card:hover .ingredients-grid__image-wrapper {
    transform: scale(1.1);
  }

  .ingredients-grid__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ingredients-grid__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ingredients-grid__item-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    color: rgb(var(--color-foreground));
    line-height: 1.3;
  }

  .ingredients-grid__item-description {
    font-size: 1.3rem;
    color: rgba(var(--color-foreground), 0.7);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
  }

  /* Hover-only description styles */
  .ingredients-grid__item-description.hover-only {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
    margin-top: 0;
  }

  .ingredients-grid__card:hover .ingredients-grid__item-description.hover-only,
  .ingredients-grid__card:focus-within .ingredients-grid__item-description.hover-only {
    opacity: 1;
    max-height: 100px;
    margin-top: 0.8rem;
  }

  /* Mobile tap support */
  @media (hover: none) and (pointer: coarse) {
    .ingredients-grid__card {
      cursor: pointer;
    }
    
    .ingredients-grid__card:active .ingredients-grid__item-description.hover-only {
      opacity: 1;
      max-height: 100px;
      margin-top: 0.8rem;
    }
  }

  /* Responsive adjustments */
  @media screen and (max-width: 749px) {
    .ingredients-grid__wrapper {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .ingredients-grid__card {
      padding: 1.5rem 1rem;
    }

    .ingredients-grid__image-wrapper {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }

    .ingredients-grid__item-title {
      font-size: 1.4rem;
    }

    .ingredients-grid__item-description {
      font-size: 1.2rem;
    }
  }