/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 91:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-reviews-section {
    background-color: {{ section.settings.background_color }};
    padding: 80px 20px 60px;
    font-family: 'Helvetica Neue', sans-serif;
  }

  .custom-reviews-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  .custom-reviews-heading {
    text-align: center;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 40px;
    padding-top: 20px;
    word-break: break-word;
  }

  .custom-reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
  }

  .custom-review-block {
    background: white;
    border-radius: 16px;
    padding: 20px;
    min-width: 300px;
    max-width: 320px;
    scroll-snap-align: center;
    flex: 0 0 auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  .custom-review-block img {
    border-radius: 10px;
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
  }

  .stars {
    color: #ffd580;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .reviewer-name {
    font-weight: bold;
    font-size: 15px;
  }

  @media (min-width: 768px) {
    .custom-reviews-heading {
      font-size: 30px;
    }

    .custom-review-block img {
      max-height: 300px;
    }

    .custom-review-block {
      padding: 24px;
    }
  }
</style>