* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #12B860;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #12B860;
}

.foot {
  background-color: #12B860;
}

.glass-purple {
background: linear-gradient(
  135deg,
  #2fd27a,
  #12B860,
  #0e8f4a
);
}




/* Feature text */
.feature-item {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  text-align: left;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .glass-features {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item {
    text-align: center;
  }
}

.ingredients-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Card */
.ingredient-card-modern {
padding: 28px 24px;
text-align: center;
border-radius: 22px;
background: linear-gradient(
  135deg,
  rgba(47, 210, 122, 0.85),
  rgba(18, 184, 96, 0.85),
  rgba(14, 143, 74, 0.85)
);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
box-shadow:
  0 20px 45px rgba(0, 0, 0, 0.35),
  inset 0 1px 1px rgba(255, 255, 255, 0.25);
color: #ffffff;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* =========================
   INGREDIENT GRID
========================= */
.ingredients-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop */
  gap: 28px;
}

/* Tablet */
@media (max-width: 992px) {
  .ingredients-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ingredients-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   INGREDIENT CARD
========================= */
.ingredient-card-modern {
 padding: 28px 24px;
text-align: center;
border-radius: 22px;
background: linear-gradient(
  135deg,
  rgba(47, 210, 122, 0.85),
  rgba(18, 184, 96, 0.85),
  rgba(14, 143, 74, 0.85)
);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
box-shadow:
  0 20px 45px rgba(0, 0, 0, 0.35),
  inset 0 1px 1px rgba(255, 255, 255, 0.25);
color: #ffffff;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .ingredient-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  }
}

/* =========================
   IMAGE
========================= */
.ingredient-card-modern img {
  width: 96px;
  margin-bottom: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* =========================
   TITLE
========================= */
.ingredient-card-modern h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* =========================
   DIVIDER
========================= */
.ingredient-divider {
  display: block;
  width: 50px;
  height: 3px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}

/* =========================
   TEXT
========================= */
.ingredient-card-modern p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* =========================
   MOBILE TWEAKS
========================= */
@media (max-width: 576px) {
  .ingredient-card-modern {
    padding: 22px 16px;
  }

  .ingredient-card-modern img {
    width: 88px;
  }

  .ingredient-card-modern p {
    font-size: 0.9rem;
  }
}
.line-height-16 {
  line-height: 1.6;
}
