/** Shopify CDN: Minification failed

Line 116:19 Expected identifier but found whitespace
Line 116:21 Unexpected "{"
Line 116:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.results-tabs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.results-tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.results-tabs-content {
  flex: 1 1 55%;
}
.results-tabs-buttons {
  display: flex;
  gap: 10px;
  margin: 1rem 0 2rem;
  flex-wrap: wrap;
}
.results-tab-btn {
  padding: 10px 20px;
  background: #ccc;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.results-tab-btn.active {
  background: #00526F;
  color: white;
}
.results-tab-panel {
  display: none;
}
.results-tab-panel.active {
  display: block;
}
.results-tab-stats {
  margin-top: 1rem;
}
.results-tab-stat {
  margin-bottom: 0.5rem;
}
.results-tab-stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 6px;
}
.results-tab-stat-percent {
  font-size: 2rem;
  color: #00526F;
  font-weight: 700;
}
.results-tab-stat-desc {
  font-size: 1rem;
  color: #444;
  text-align: right;
  flex: 1;
  margin-left: 1rem;
}
.results-tab-stat-bar {
  height: 20px;
  background: #e0e0e0;
  border-radius: 7px;
  overflow: hidden;
}
.results-tab-stat-fill {
  height: 100%;
  transition: width 0.8s ease-in-out;
  background: linear-gradient(-45deg, #0C240E 25%, #00526F 25%, #00526F 50%, #0C240E 50%, #0C240E 75%, #00526F 75%, #00526F);
  background-size: 4px 4px;
}
.results-tabs-image {
  flex: 1 1 40%;
  max-width: 500px;
  text-align: center;
}
.results-tabs-image img {
  max-width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .results-tabs-wrapper {
    flex-direction: column;
  }
  .results-tabs-content, .results-tabs-image {
    flex: 1 1 100%;
  }
}
.results-tabs-section.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.results-tabs-section.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-slider {
  background-color: {{ section.settings.background_color }};
  padding: 40px 0;
  max-width:100%
}
.testimonial-slider .heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #003322;
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px 0;
  scroll-behavior: smooth;
}
.testimonial-card {
  flex: 0 0 calc(100% / 1.2); /* fallback for mobile */
  max-width: 100%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2.5); /* 2 cards visible */
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 3.5 - 16px); /* 5-column layout */
  }
}
.before-after-images {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.image-wrapper {
  flex: 1 1 45%;
  position: relative;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.image-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}
.testimonial-name {
  font-weight: bold;
  font-size: 1rem;
}
.stars {
  color: gold;
  font-size: 1.1rem;
  margin: 4px 0;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  margin-top: 10px;
}
.testimonial-tags {
  margin-top: 10px;
}
.testimonial-tags span {
  display: inline-block;
  background: #dfffd8;
  color: #1a5729;
  padding: 5px 10px;
  margin: 5px 5px 0 0;
  border-radius: 999px;
  font-size: 0.8rem;
}
.testimonial-video {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #00526F;
  text-decoration: underline;
  display: inline-block;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}
  .testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px 0;
  scroll-behavior: smooth;

  /* Hide scrollbars */
  scrollbar-width: none; /* Firefox */
}
.testimonial-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.testimonial-slider.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.testimonial-slider.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}