/** Shopify CDN: Minification failed

Line 17:24 Unexpected "{"
Line 17:33 Expected ":"
Line 17:40 Unexpected "{"
Line 19:2 Unexpected "{"
Line 19:3 Expected identifier but found "%"
Line 21:2 Unexpected "{"
Line 21:3 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:trust-pilot-reviews (INDEX:1, SCOPED:FALSE) */
.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;
}
/* END_SECTION:trust-pilot-reviews */