/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:51 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.customer-reviews-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.customer-reviews-section .page-width {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.customer-reviews-section .title-wrapper-with-link {
  text-align: center;
  margin-bottom: 10px;
}

.reviews-wrapper {
  position: relative;
  margin-top: 30px;
  width: 100%;
}

.reviews-masonry {
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}

@media screen and (max-width: 989px) {
  .reviews-masonry {
    column-count: 2;
    column-gap: 15px;
  }
}

@media screen and (max-width: 749px) {
  .reviews-masonry {
    column-count: 2;
    column-gap: 10px;
  }
  
  .customer-reviews-section .page-width {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .review-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.review-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.review-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  background: #f5f5f5;
}

.review-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.review-card__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.review-card__video-link:hover .review-card__play-button svg {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.review-card__image-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card__image-count svg {
  width: 16px;
  height: 16px;
}

.review-card__header {
  padding: 12px 15px 2px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.review-card__customer-name {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: #000;
  line-height: 1.3;
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-card__verified-badge {
  color: #000;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.review-card__verified span {
  font-size: 10px;
  color: #000;
  font-weight: 400;
}

.review-card__rating {
  display: flex;
  gap: 2px;
  padding: 8px 15px;
}

.review-card__star {
  color: #ddd;
  width: 18px;
  height: 18px;
}

.review-card__star--filled {
  color: #ffc107;
}

.review-card__text {
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
}

.review-card__item-type {
  padding: 0 15px 15px;
  font-size: 13px;
  color: #999;
}

.review-card__item-label {
  display: block;
  margin-bottom: 2px;
}