/* Product Listing Page Informational Add-ons */
/* Prefix: products-info- */

/* Section 1 Styles */
.products-info-section-1 {
  padding: 80px 0;
  background-color: #ffffff;
}
.products-info-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.products-info-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(4, 138, 5, 0.12);
}
.products-info-img {
  width: 100%;
  height: auto;
  display: block;
}
.products-info-section-content {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .products-info-section-content {
    padding-left: 0;
    margin-top: 40px;
  }
}
.products-info-lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.products-info-body-text {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
}
.products-info-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .products-info-checklist {
    grid-template-columns: 1fr;
  }
}
.products-info-checklist li {
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
}
.products-info-checklist li i {
  color: #048a05;
  font-size: 16px;
}
.products-info-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .products-info-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.products-info-feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8faf7;
  border: 1px solid #eef2ed;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.products-info-feature-card:hover {
  transform: translateY(-3px);
  border-color: #048a05;
  box-shadow: 0 8px 20px rgba(4, 138, 5, 0.06);
  background-color: #ffffff;
}
.products-info-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(4, 138, 5, 0.08);
  color: #048a05;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.products-info-feature-card:hover .products-info-feature-icon {
  background-color: #048a05;
  color: #ffffff;
  transform: rotateY(180deg);
}
.products-info-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f2a0f;
  margin: 0;
  font-family: "Archivo", sans-serif;
  line-height: 1.4;
}
.products-info-section-cta .ayur-btn {
  min-width: 220px;
}
@media (max-width: 575px) {
  .products-info-section-cta .ayur-btn {
    width: 100%;
  }
}

/* Section 2 Styles */
.products-info-section-2 {
  padding: 80px 0;
  background-color: #f8faf7;
}
.products-info-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2ed;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products-info-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(4, 138, 5, 0.12);
  border-color: #048a05;
}
.products-info-choose-card-top {
  margin-bottom: 25px;
}
.products-info-choose-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(4, 138, 5, 0.08);
  color: #048a05;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.products-info-choose-card:hover .products-info-choose-icon-wrap {
  background-color: #048a05;
  color: #ffffff;
}
.products-info-choose-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f2a0f;
  margin-bottom: 18px;
  font-family: "Archivo", sans-serif;
  line-height: 1.4;
}
.products-info-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-info-bullets-list li {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}
.products-info-bullets-list li:last-child {
  margin-bottom: 0;
}
.products-info-bullets-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #048a05;
  font-size: 14px;
  font-weight: bold;
}
.products-info-choose-card-btn-wrap {
  margin-top: 10px;
}
.products-info-choose-card-btn-wrap .ayur-btn {
  width: 100%;
}

/* Header & Divider Left Alignment Overrides for Section 1 */
.products-info-section-content .ayur-heading-wrap {
  text-align: left;
  margin-bottom: 24px;
}
.products-info-section-content .ayur-divider {
  justify-content: flex-start;
  margin: 20px 0;
  max-width: 200px;
}
.products-info-section-content .ayur-divider::before {
  display: none;
}
.products-info-section-content .ayur-divider::after {
  background: linear-gradient(to right, rgba(127, 181, 61, 0.4), transparent);
}

@media (min-width: 992px) {
  .products-info-section-1 .row {
    display: flex;
    align-items: stretch;
  }
  .products-info-img-wrapper {
    height: 100%;
  }
  .products-info-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Section 3: Medicine Trust Section Styles */
/* Prefix: medicine-trust- */

.medicine-trust-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Introduction block */
.medicine-trust-intro-card {
  background: #f8faf7;
  border: 1px solid #eef2ed;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .medicine-trust-intro-card {
    padding: 30px 20px;
  }
}
.medicine-trust-intro-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #222222;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.medicine-trust-intro-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  font-family: "Inter", sans-serif;
  margin: 0;
}
.medicine-trust-evaluation-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #eef2ed;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.medicine-trust-evaluation-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f2a0f;
  margin-bottom: 18px;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.medicine-trust-eval-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.medicine-trust-eval-list li {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}
.medicine-trust-eval-list li:last-child {
  margin-bottom: 0;
}
.medicine-trust-eval-list li i {
  color: #048a05;
  font-size: 16px;
}

/* Feature Cards */
.medicine-trust-feature-card {
  background: #ffffff;
  border: 1px solid #eef2ed;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.medicine-trust-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(4, 138, 5, 0.12);
  border-color: #048a05;
}
.medicine-trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(4, 138, 5, 0.08);
  color: #048a05;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.medicine-trust-feature-card:hover .medicine-trust-card-icon {
  background-color: #048a05;
  color: #ffffff;
  transform: rotateY(180deg);
}
.medicine-trust-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f2a0f;
  margin-bottom: 18px;
  font-family: "Archivo", sans-serif;
  line-height: 1.4;
}
.medicine-trust-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.medicine-trust-card-bullets li {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.medicine-trust-card-bullets li:last-child {
  margin-bottom: 0;
}
.medicine-trust-card-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #048a05;
  font-size: 16px;
}

/* Trust Strip */
.medicine-trust-strip {
  background: linear-gradient(135deg, #048a05 0%, #024c02 100%);
  color: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(4, 138, 5, 0.15);
  margin-top: 30px;
}
@media (max-width: 767px) {
  .medicine-trust-strip {
    padding: 35px 20px;
  }
}
.medicine-trust-strip-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: "Archivo", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.medicine-trust-strip h3 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  font-family: "Archivo", sans-serif;
}
.medicine-trust-stats-row {
  margin-top: 40px;
}
.medicine-trust-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px 15px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.medicine-trust-stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.medicine-trust-stat-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}
.medicine-trust-stat-desc {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-family: "Archivo", sans-serif;
}
.medicine-trust-strip .ayur-btn {
  background-color: #ffffff;
  color: #048a05;
  border-color: #ffffff;
  min-width: 250px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.medicine-trust-strip .ayur-btn::after {
  background-color: #048a05;
}
.medicine-trust-strip .ayur-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
}
