* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
}



.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #968C63;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #1D4A6E;
}

.foot {
  background-color: #968C63;
}


.glass-red {
background: linear-gradient(180deg, #3d3d28, #968C63);

}



.card-bg{
  background-color: #024471;
}
/* *********testimonials*********** */

.review-card {
  transition: 0.25s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.review-text {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Tablet */
@media (max-width:992px) {

  .review-text {
    font-size: 1rem;
  }

}

/* Mobile */
@media (max-width:576px) {

  .review-card {
    padding: 20px;
  }

  .review-avatar {
    width: 52px;
    height: 52px;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .review-stars {
    font-size: 0.9rem;
  }

}

/* ******************end of testimonials**************** */

.max-w-900 {
  max-width: 900px;
  width: 100%;
}

.ingredient-tile {
  height: 170px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.ingredient-tile img {
  max-height: 150px;
  max-width: 90%;
  object-fit: contain;
}

.ingredient-detail-card {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.ingredient-detail-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.ingredient-detail-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .ingredient-tile {
    height: 90px;
  }

  .ingredient-detail-card {
    padding: 18px;
  }
}



.hero-bg {
  min-height: 10vh;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Specific background image class */
.bg-new {
  background-image: url("../assets/images/hero.webp");
}
.bg-new2 {
  background-image: url("../assets/images/why.webp");
}