/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 125:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.customer-reviews-section {
  padding: 20px 6px; /* Minimal padding */
  max-width: 900px;  /* Smaller overall width */
  margin: 12px auto 0 auto;
}

.customer-reviews-header {
  margin-bottom: 16px;
  text-align: left;
  padding: 0 8px;
}

.customer-reviews-header h2 {
  font-size: 1.5rem; /* Reduced heading size */
  margin: 0 0 4px 0;
}

.customer-reviews-header p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

.customer-carousel-wrapper {
  overflow-x: hidden;
  padding-bottom: 7px; /* Ensures carousel is not cut off */
}

.customer-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 0 8px;
  scroll-padding: 8px;
  scroll-behavior: smooth;
}

.customer-carousel::-webkit-scrollbar {
  display: none;
}

.customer-review {
  flex: 0 0 75%;
  max-width: 260px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.customer-review img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.review-stars {
  color: #000;
  font-size: 15px;
  margin-bottom: 4px;
}

.review-text {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}

.review-name {
  font-weight: 600;
  font-size: 13px;
  color: #111;
}

.review-dots {
  text-align: center;
  margin-top: 12px;
}

.review-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.review-dots span.active {
  background: #000;
}

@media (min-width: 768px) {
  .customer-review {
    flex: 0 0 240px;
  }

  .customer-reviews-section {
    padding: 24px 16px;
  }

  .customer-carousel-wrapper {
    padding-bottom: 40px; /* Slightly more room for dots */
  }
}
</style>