/** Shopify CDN: Minification failed

Line 17:24 Unexpected "{"
Line 17:33 Expected ":"
Line 17:40 Unexpected "{"
Line 102:28 Unexpected "{"
Line 102:37 Expected ":"
Line 102:44 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.testimonials-swiper-container {
    overflow: hidden;
  }
  .testimonials-swiper-{{ section.id }} {
    overflow: visible !important;
  }
  .testimonials-section-wrapper {
    padding: 60px 0;
  }
  .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .testimonials-header {
    margin-bottom: 25px; /* Space between header and slider */
  }
  .testimonials-main-heading {
    font-size: 36px;
  }
  .testimonials-summary-rating {
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures rating line is centered */
    gap: 8px;
    font-size: 22px;
  }
  .testimonials-summary-rating-value {
    font-weight: bold;
    font-size: 28px;
  }
  .testimonials-stars-wrapper {
    display: flex;
    gap: 4px;
  }
  .testimonials-reviews-based-on {
    font-size: 19px;
  }
  .testimonials-slide {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-sizing: border-box;
    height: auto;
    transition: transform 0.4s ease;
    transform: scale(0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .swiper-slide-active {
    transform: scale(1);
  }
  .testimonials-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .testimonials-slide-heading {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .testimonials-slide-text-wrapper {
    font-size: 16px;
    line-height: 1.6;
  }
  .testimonials-slide-text-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px 0 0;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
  }
  .testimonials-slide-bottom {
    margin-top: 25px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
  }
  .testimonials-slide-author {
    font-style: italic;
    font-weight: bold;
    font-size: 16px;
  }
  .testimonials-pagination-{{ section.id }} {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }
  .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background-color: #1c1b1e;
  }

  /* --- NEW: Responsive Styles for Mobile --- */
  @media screen and (max-width: 767px) {
    .testimonials-summary-rating {
      font-size: 16px; /* Reduced from 22px */
    }
    .testimonials-summary-rating-value {
      font-size: 20px; /* Reduced from 28px */
    }
    .testimonials-summary-rating .testimonials-stars-wrapper svg {
      width: 24px; /* Reduced from 32px */
      height: 24px; /* Reduced from 32px */
    }
  }