/** Shopify CDN: Minification failed

Line 21:28 Unexpected "-->"
Line 23:5 Expected identifier but found "%"
Line 24:4 Unexpected "<"
Line 29:6 Unexpected "{"
Line 29:12 Expected ":"
Line 30:8 Unexpected "<"
Line 33:5 Unexpected "{"
Line 33:20 Expected ":"
Line 34:2 Unexpected "<"
Line 86:0 Unexpected "}"

**/
/* Shrink product‐page H2s */
.product-single__description h2,
.rte h2 {
  font-size: 1.25rem !important;
  line-height: 1.3 !important;
}
<!-- Start of Judge.me code --> 
  <div class='jdgm-carousel-wrapper'> 
    {% assign jm_metafields = shop.metafields.judgeme %} 
    <div class='jdgm-carousel-title-and-link'> 
      <h2 class='jdgm-carousel-title'>Let customers speak for us</h2> 
      <span class='jdgm-all-reviews-rating-wrapper' href='javascript:void(0)'> 
        <span style='display:block' data-score='{{ jm_metafields.all_reviews_rating }}' class='jdgm-all-reviews-rating' aria-label='{{ jm_metafields.all_reviews_rating }} stars' tabindex='0' role='img'></span> 
        <span style='display: block' class='jdgm-carousel-number-of-reviews' data-number-of-reviews='{{ jm_metafields.all_reviews_count }}'> 
from {{ shop.metafields.judgeme.all_reviews_count }} reviews 
        </span> 
      </span> 
    </div> 
    {{ jm_metafields.featured_carousel }} 
  </div> 
<!-- End of Judge.me code -->
.jdgm-carousel-item .jdgm-carousel-item-product-thumbnail {
  display: none !important;
.jdgm-carousel-item img.jdgm-carousel-item-thumbnail-img {
  display: none !important;
}
.multicolumn-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 24px;
  transition: transform 0.2s ease;
}

.multicolumn-card:hover {
  transform: translateY(-4px);
}

.multicolumn-card .media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.multicolumn-card .multicolumn-card__info {
  text-align: left;
}

.multicolumn-card h3 {
  margin-bottom: 4px;
}

.multicolumn-card p {
  font-size: 15px;
  line-height: 1.6;
}
.multicolumn__column {
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08) !important;
  padding: 24px !important;
  margin-bottom: 32px !important;
  transition: all 0.3s ease !important;
}

.multicolumn__column:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
}

}

}

}
.multicolumn__image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.multicolumn__image img {
  width: 100%;
  height: auto;
  display: block;
}
/* Hide play button on background video sections */
.background-video__play-button,
.video-wrapper__play-button,
.video-block__play-icon {
  display: none !important;
}
/* Force green buttons site-wide */
button.button, a.button, .button--primary, .button--secondary {
  background-color: #87986A !important;
  color: #ffffff !important;
  border: none !important;
}

/* Force hover state */
button.button:hover, a.button:hover {
  background-color: #6f8457 !important;
  color: #ffffff !important;
}

/* Fix inline-styled buttons */
a.button[style], button.button[style] {
  background-color: #87986A !important;
  color: #ffffff !important;
}
/* 🔹 Ingredient grid layout */
.ingredient-grid {
  display: flex;
  justify-content: center;
  gap: 35px; /* space between cards */
  margin: 25px 0;
}

/* 🔹 Individual card */
.ingredient-card {
  width: 340px; /* bigger square */
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

/* 🔹 Square image */
.ingredient-card img {
  width: 100%;
  height: 340px; /* matches card width = perfect square */
  object-fit: cover;
}

/* 🔹 Title always visible */
.ingredient-card h3 {
  margin: 14px 0;
  font-size: 22px;
  font-weight: bold;
}

/* 🔹 Description hidden until hover */
.ingredient-card-content p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin: 0 18px;
}

/* 🔹 On hover: reveal description */
.ingredient-card:hover .ingredient-card-content p {
  max-height: 220px;
  margin-top: 12px;
}
.ingredient-card h3 {
  margin: 14px 0;
  font-size: 20px;        /* adjust size */
  font-weight: 500;       /* lighter than bold */
  letter-spacing: 0.3px;  /* subtle spacing */
  color: #333;            /* clean dark gray */
}
/* Default (desktop) stays the same, no change */

@media screen and (max-width: 768px) {
  .ingredient-card-container {
    display: flex;
    justify-content: space-between;
    gap: 2px; /* ✅ reduce spacing even tighter */
  }

  .ingredient-card {
    flex: 1 1 32%;   /* ✅ makes each card take up more space */
    max-width: 32%;
    margin: 0;
  }

  .ingredient-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .ingredient-card h3 {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
  }

  .ingredient-card p {
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    padding: 0 4px; /* ✅ lets text breathe across width */
  }
}
/* Desktop default */
.custom-cards {
  display: flex;
  gap: 20px;
}

.custom-cards .card {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

/* Tablet (768px–991px) */
@media (max-width: 991px) {
  .custom-cards {
    gap: 15px;
  }
  .custom-cards .card {
    max-width: 250px;
  }
}

/* ======================
   Ingredient Cards Mobile Styling
   ====================== */
@media (max-width: 767px) {
  .ingredient-cards .ingredient-card {
    flex: 1 1 calc(33.333% - 6px); /* 3 per row with small gap */
    margin: 0 3px; /* reduce spacing */
  }

  .ingredient-cards .ingredient-card p {
    max-width: 90%; /* allow text to expand more */
    margin: 0 auto; /* keep text centered */
    font-size: 14px; 
    line-height: 1.4;
  }

  .ingredient-cards .ingredient-card h3 {
    font-size: 15px; /* slightly smaller headers */
  }
}
/* Keep ingredient text always visible */
.ingredient-card-content {
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* Always show ingredient text */
.ingredient-card-content p {
  max-height: none !important;
  overflow: visible !important;
  margin: 12px 18px !important;
}
/* Mobile adjustments for product icons */
@media (max-width: 768px) {
  .product-icons img {
    width: 28px !important;
    height: 28px !important;
  }
  .product-icons div {
    font-size: 12px !important;
  }
  .product-icons {
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }
}
/* Mobile adjustments for circular icons */
@media (max-width: 768px) {
  .circle-icons img {
    height: 60px !important; /* shrink icons */
  }
  .circle-icons {
    gap: 8px !important; /* reduce spacing */
    justify-content: center !important; /* center on mobile */
    flex-wrap: nowrap !important; /* force into one row */
  }
}
/* MOBILE: Show 2 ingredient cards per row */
@media (max-width: 768px) {
  .ingredient-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 per row */
    gap: 12px !important; /* adjust spacing between cards */
  }

  .ingredient-card {
    width: 100% !important;
    max-width: none !important;
  }

  .ingredient-card p {
    white-space: normal !important;
  }
}
/* MOBILE: 2 cards visible, swipe to see more */
@media (max-width: 768px) {
  .ingredient-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding-bottom: 8px; /* avoid cutoff on iOS */
  }

  .ingredient-card {
    flex: 0 0 48% !important; /* 2 cards fit side by side */
    max-width: 48% !important;
    scroll-snap-align: start;
    box-sizing: border-box !important;
  }
}

