* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}



.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #8E4A84;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #8E4A84;
}

.foot {
  background-color: #8E4A84;
}

.glass-red {
background: radial-gradient(circle at center, #e2b8dc 0%, #C389BA 40%, #8f5c87 100%);

}



.card-bg{
  background-color: #024471;
}


.review-avatar {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .review-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .review-avatar {
    width: 72px;
    height: 72px;
  }

  .review-meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-content p {
    font-size: 1rem;
  }
}




.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;
  }
}


/* reviews */

/* Review Card */
.review-card {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Avatar */
.review-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #f8f9fa;
}

/* Text */
.review-text {
  font-size: 1.35rem;
  color: #444;
  line-height: 1.7;
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .review-text {
    font-size: 0.95rem;
  }

  .review-avatar {
    width: 65px;
    height: 65px;
  }
}