/** Shopify CDN: Minification failed

Line 205:18 Unexpected "{"
Line 205:27 Expected ":"
Line 213:18 Unexpected "{"
Line 213:27 Expected ":"
Line 222:18 Unexpected "{"
Line 222:27 Expected ":"
Line 229:18 Unexpected "{"
Line 229:27 Expected ":"

**/
.trust-reviews-section {
  width: 100%;
  overflow: hidden;
}

.trust-reviews-wrapper {
  width: 100%;
}

.trust-reviews-heading {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 60rem;
  margin: 0 auto;
}

.trust-slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}
.trust-reviews-section .swiper-pagination {
  bottom: 0;
  position: relative; 
}
.trust-reviews-section .swiper-pagination-bullet {
    background: transparent;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 3px !important;
    border: 1px solid #1D6835
}
.trust-reviews-section .swiper-pagination-bullet-active {
    background: #1D6835;
}
.trust-swiper-button-prev,
.trust-swiper-button-next {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 2;
  box-shadow: 0px 4px 22px 0px #0000001F;
}
.trust-swiper-button-next{
  right: 0;
}

.trust-swiper-button-prev:hover,
.trust-swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.1);
}

.trust-swiper-button-prev.swiper-button-disabled,
.trust-swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.trust-swiper-button-prev svg,
.trust-swiper-button-next svg {
    color: #1D6835;
    width: 14px;
    height: 14px;
}
.trust-reviews-swiper {
  flex: 1;
  overflow: hidden;
}

.auth-name{
  font-weight: 800;
  margin-top: 3.4rem;  
}

.trust-review-card {
  background: #FFFDFA;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.internalPart{
  padding: 30px;
}
.trust-review-header {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 15px;
}

.trust-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.trust-reviewer-name {
    font-weight: 400;
    color: rgb(var(--color-foreground));
    font-family: var(--font-heading-family);
    letter-spacing: 0;
}

.trust-verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1D6835;
  font-weight: 500;
}

.trust-verified-badge svg {
  fill: #10b981;
  flex-shrink: 0;
}

.trust-verified-badge img {
    width: 16px;
    height: 16px;
    display: block;
}

.trust-review-stars {
  flex-shrink: 0;
}
.trust-reviews-section .swiper-slide {
  width: 355px;
  height: auto;
  box-sizing: border-box;
}
.trust-verified-badge {
    font-size: 14px;
    color: #1D6835;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.trust-review-stars img {
  height: 24px;
  width: auto;
}

.trust-review-text {
  line-height: 1.4;
  color: rgba(var(--color-foreground));
  flex: 1;
text-align: center;
}

.trust-reviews-button {
  text-align: center;
  margin-top: 20px;
}
.trust-reviews-button .button:hover {
  color:initial;
  text-decoration: none;
}
.trust-reviews-button .button {
    background: transparent;
    text-decoration: underline;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    font-size: 22px;
    font-family: var(--font-heading-family);
    border: none;
}
.trust-reviews-button .button:before, .trust-reviews-button .button:after {
display:none;
}

#shopify-section-{{ section.id }} .trust-review-product {
  padding-top: 0px;
}
.part-2{
  width: 100%;
  background: #ffcf9630;
}

#shopify-section-{{ section.id }} .trust-review-product a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 11px 12px;
  color: #1D6835;
}

#shopify-section-{{ section.id }} .trust-review-product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

#shopify-section-{{ section.id }} .trust-review-product span {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .trust-reviews-heading {
    margin-bottom: 30px;
  }

  .trust-review-card {
      height: 100%;
      min-height: 260px;
  }
  .internalPart{
    padding: 35px 40px 20px 40px;
  }
}

@media screen and (max-width: 749px) {
  .trust-reviews-heading {
    margin-bottom: 20px;
  }

  .trust-slider-container {
    gap: 10px;
  }
.trust-review-product span {
    font-size: 13px;
    line-height: 1.2;
}
  .trust-swiper-button-prev,
  .trust-swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .trust-swiper-button-prev svg,
  .trust-swiper-button-next svg {
    width: 20px;
    height: 20px;
  }

  .internalPart{
    padding: 20px 25px;
  }
  .trust-reviews-button .button {
    font-size: 16px;
}
.trust-reviews-swiper {
    padding-bottom: 5px;
}
.trust-reviews-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.trust-review-stars img {
    height: 20px;
}
.trust-review-header {
    margin-bottom: 10px;
}
.trust-review-product a {
    gap: 5px;
}
}