* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, 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: #828282;
  color: #ffc107;
  padding: 1.8rem;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #169AAB;
}

.foot {
  background-color: #828282;
}

.foot2 {
  color: #290D04;
}

.glass-purple {
 background: linear-gradient();
}









.small-ban{
  background-color: #ffffff;
}
.small-ban2{
  background-color: #F1F1E8;
}

svg.lucide {
  width: 40px;
  height: 40px;
}


/* testimonials */

/* testimonial cards */

.review-card{
  text-align:center;
  transition:all 0.3s ease;
}

.review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* reviewer image */

.review-img{
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

/* *****************accordion*********** */


/* Rounded accordion items */
.accordion-item {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
}

/* Rounded top when closed */
.accordion-button {
  border-radius: 18px;
  padding: 18px 22px;
}

/* Rounded when opened */
.accordion-button:not(.collapsed) {
  border-radius: 18px 18px 0 0;
}

/* Space between icon and question text */
.accordion-button i {
  margin-right: 10px;
}

/* Space between question and arrow */
.accordion-button::after {
  margin-left: auto;
}

/* Body padding */
.accordion-body {
  padding: 20px 22px;
}


/* key ingredient */

.ingredients-section {
  background: linear-gradient(180deg, #f9fbf9 0%, #ffffff 100%);
}

/* Card */
.ingredient-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle top highlight effect */
.ingredient-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #198754;
  transition: width 0.3s ease;
}

.ingredient-card:hover::before {
  width: 100%;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-box i {
  width: 26px;
  height: 26px;
}

/* Icon hover animation */
.ingredient-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  background: #198754;
  color: #fff;
}

/* Title → fs-4 feel */
.ingredient-card h5 {
  font-size: 1.4rem; /* close to fs-4 */
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Text → fs-5 feel */
.ingredient-card p {
  font-size: 1.05rem; /* close to fs-5 */
  line-height: 1.7;
  color: #6c757d;
}

/* Better spacing on mobile */
@media (max-width: 576px) {
  .ingredient-card {
    padding: 1.5rem;
  }

  .ingredient-card h5 {
    font-size: 1.25rem;
  }

  .ingredient-card p {
    font-size: 0.95rem;
  }
}


/* benefits */

.benefits-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.benefit-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
}

/* Hover effect */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon */
.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Icon hover */
.benefit-card:hover .icon-wrap {
  background: #ffc107;
  color: #fff;
  transform: scale(1.1);
}

/* Heading → EXACT fs-4 */
.benefit-card h4 {
  font-size: 1.5rem; /* Bootstrap fs-4 */
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Text → EXACT fs-5 */
.benefit-card p {
  font-size: 1.25rem; /* Bootstrap fs-5 */
  color: #6c757d;
  line-height: 1.7;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h4 {
    font-size: 1.25rem; /* step down for mobile */
  }

  .benefit-card p {
    font-size: 1.05rem;
  }
}


/* testimonals */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Profile Image */
.testimonial-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Typography */
.testimonial-card h5 {
  font-size: 1.25rem;
}

.testimonial-card p {
  font-size: 1.25rem; /* fs-5 */
  line-height: 1.7;
  color: #6c757d;
}

/* Star styling */
.text-warning i {
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }
}


/*  */

.quality-section {
  background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

/* Heading */
.quality-heading {
  color: #212529;
}

.quality-subtext {
  color: #343a40;
}

/* Feature Boxes */
.quality-box {
  background: #ffffff;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1.25rem; /* fs-5 */
  font-weight: 500;
  color: #212529;
}

.quality-box i {
  font-size: 1.4rem;
  color: #ffc107;
  flex-shrink: 0;
}

/* Hover */
.quality-box:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Image */
.quality-img {
  border-radius: 20px;
  padding: 10px;
  border: 2px solid rgba(0,0,0,0.05);
}

/* Bottom text */
.quality-text {
  color: #212529;
}

/* Mobile */
@media (max-width: 576px) {
  .quality-box {
    font-size: 1.05rem;
    padding: 1.2rem;
  }

  .quality-subtext {
    font-size: 1.1rem;
  }
}

/* hero section */

