/** Shopify CDN: Minification failed

Line 155:1 Expected "}" to go with "{"

**/
/* =========================
   INGREDIENTS SECTION
========================= */
.ingredients-section {
  padding: 10px 20px;
  background: #fcf5f6;
  margin-top:20px;
}

.ingredients-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ingredients-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* =========================
   GRID
========================= */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */
.ingredient-card {
  background: #fff;
  padding: 28px;
  border: 2px solid #111;
  position: relative;
  transition: all 0.25s ease;
}

.ingredient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #000;
  transform: translate(6px, 6px);
  z-index: -1;
}

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

.ingredient-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ingredient-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   ICONS
========================= */
.ingredient-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #555;
  justify-content: center;
}

.icon img {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
}

/* =========================
   MOBILE SLIDER
========================= */
@media (max-width: 768px) {

  .ingredients-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ingredient-card {
    max-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .ingredients-grid::-webkit-scrollbar {
    display: none;
  }

.ingredients-title {
    font-size: 24px;

}
.ingredients-section::after {
  content: "Swipe →";
  display: none;
}

@media (max-width:768px){
  .ingredients-section::after {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
  }
}
.ingredient-card {
  transition: all 0.25s ease;
}

.ingredient-card::after {
  transition: all 0.25s ease;
}

/* HOVER MAGIC */
.ingredient-card:hover {
  transform: translate(-4px, -4px);
}

.ingredient-card:hover::after {
  transform: translate(8px, 8px);
}