* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}


/* Header Background Section */
.hero-header {
  background-image: url(images/banner-Subtract.webp);
  /* change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  /* adjust height */
  display: flex;
  align-items: center;
  position: relative;
}

.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #383A59;
  color: #ffffff;
  padding: 1.8rem;
  font-size: clamp(24px, 4vw, 40px);
}

.text-just {
  text-align: left;
}
.free-shipping {
  background-color: #1C8576;
}

.foot {
  background-color: #383A59;
}

.glass-purple {
background: linear-gradient(135deg, #F03466, #000000);

}



.hero-bg {
  min-height: 10vh;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

/* Glass box */
.glass-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1rem 2rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* 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;
  }
}



/* Mobile */
@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-card {
    flex-direction: column;
    text-align: center;
  }

  .ingredient-card img {
    width: 120px;
  }
}


.guarantee-section {
  margin-top: 2rem;
}

.guarantee-img {
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}

.guarantee-box {
  background: rgba(123, 1, 127, 0.85);
  border-left: 5px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .guarantee-box {
    font-size: 1.1rem;
  }
}
.line-height-16 {
  line-height: 1.6;
}

.max-220 {
  max-width: 220px;
}
.max-900 {
  max-width: 220px;
}


/* benefits */
/* Benefit Card Styling */
.benefit-card {
  border-left: 5px solid #0d6efd;
  border-radius: 12px;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon Styling */
.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-box i {
  font-size: 28px;
  color: #525bd3;
}
/* ingredients */

/* Ingredient Card Styling */
.ingredient-card {
  border-left: 5px solid #0d6efd;
  border-radius: 12px;
  transition: 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon Styling */
.icon-bg {
  width: 70px;
  height: 70px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-bg i {
  font-size: 28px;
  color: #525bd3;
}

/* why people choose */

/* Section background */
.feature-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* Card */
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 25px;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image container */
.feature-img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-img img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* Content */
.feature-content h3 {
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-content p {
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-img {
    margin-bottom: 10px;
  }
}

/* testimonial */

/* Background */
.testimonial-section {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
  border: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image */
.testimonial-img {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.testimonial-content {
  position: relative;
}

/* Quote icon */
.quote-icon {
  font-size: 22px;
  color: #16a34a;
  margin-bottom: 8px;
}

/* Stars */
.stars {
  color: #f59e0b;
  font-size: 18px;
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img {
    margin-bottom: 10px;
  }

  .testimonial-content .d-flex {
    justify-content: center !important;
    gap: 10px;
  }
}

/* free shipping */

.shipping-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.shipping-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Image */
.shipping-img img {
  max-width: 160px;
  height: auto;
}

/* Content */
.shipping-content h3 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.75rem; /* matches fs-3 */
}

.shipping-content h3 i {
  color: #28a745;
  margin-right: 8px;
}

.shipping-content p {
  font-size: 1.5rem; /* matches fs-4 */
  margin-bottom: 12px;
  color: #000000;
}

/* Badges */
.shipping-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shipping-badges span {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shipping-badges i {
  color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
  .shipping-box {
    flex-direction: column;
    text-align: center;
  }

  .shipping-badges {
    justify-content: center;
  }
}

/* consistency section */

/* Container for points */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each point */
.point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.point-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon box */
.icon-box2 {
  min-width: 45px;
  height: 45px;
  background: #6569a7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
}

/* Text */
.point-item p {
  font-size: 1.5rem; /* matches fs-4 */
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .point-item {
    flex-direction: row;
    text-align: left;
  }
}