* {
  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: #044A45;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #044A45;
}

.foot {
  background-color: #044A45;
}

.glass-red {
background: linear-gradient(135deg, #0F9D8C, #044A45);}



.card-bg{
  background-color: #024471;
}

.ingredient-card {
  width: 100%;
  height: 170px;                /* FIXED HEIGHT */
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* IMAGE CONTROL */
.ingredient-card img {
  max-height: 150px;             /* image won't stretch card */
  max-width: 90%;
  object-fit: contain;
}

/* Mobile tweak */
@media (max-width: 576px) {
  .ingredient-card {
    height: 120px;
  }

  .ingredient-card img {
    max-height: 75px;
  }
}
