/** Shopify CDN: Minification failed

Line 19:24 Unexpected "{"
Line 19:33 Expected ":"
Line 19:40 Unexpected "{"
Line 21:2 Unexpected "{"
Line 21:3 Expected identifier but found "%"
Line 23:2 Unexpected "{"
Line 23:3 Expected identifier but found "%"
Line 105:24 Unexpected "{"
Line 105:33 Expected ":"
Line 105:40 Unexpected "{"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-review-section-{{ section.id }} {
  padding: 2rem 0;
  {% if section.settings.section_font != "Default" %}
    font-family: '{{ section.settings.section_font }}', sans-serif;
  {% endif %}
}
.custom-review-carousel-grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  transition: opacity 0.5s;
  min-height: 480px;
}
.custom-review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  transition: opacity 0.5s;
}
.custom-reviewer-photo {
  width: 100%;
  max-width: 220px;
  max-height: 160px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #eee;
  display: block;
}
.custom-reviewer-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.custom-review-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  text-align: center;
}
.custom-review-stars {
  color: #fbc02d;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.custom-review-text {
  font-size: 1rem;
  color: #222;
  text-align: center;
}

@media (max-width: 1200px) {
  .custom-review-carousel-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 900px) {
  .custom-review-carousel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .custom-review-carousel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .custom-review-card {
    min-height: 300px;
    max-width: 98vw;
    padding: 1rem 0.5rem 1.2rem 0.5rem;
  }
}
.custom-review-section-{{ section.id }} {
  padding: 2rem 0;
  {% if section.settings.section_font != "Default" %}
    font-family: '{{ section.settings.section_font }}', sans-serif;
  {% endif %}
}

.custom-review-carousel-grid {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 1.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.custom-review-card {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  max-width: 320px;
  scroll-snap-align: start;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.custom-review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: scale(1.01);
}

.custom-reviewer-photo {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.custom-reviewer-photo:hover {
  transform: scale(1.05);
}

.custom-reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #222;
}
.custom-review-date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.custom-review-stars {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-review-stars img {
  width: auto;
  height: 20px;
  display: inline-block;
  margin: 0 auto;
}

.custom-review-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.custom-verified {
  font-size: 0.8rem;
  color: #00b67a;
  font-weight: 500;
}