/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:customer-reviews-grid (INDEX:19, SCOPED:FALSE) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

.customer-reviews-section {
  background-color: #FAF7F5;
  font-family: 'Poppins', sans-serif;
}

.customer-reviews-section .page-width {
  max-width: 1400px;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

.customer-reviews-section .title-wrapper-with-link {
  text-align: center;
  margin-bottom: 40px;
}

.customer-reviews-section .title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
  margin: 0;
}

.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;
  }
  
  .customer-reviews-section .title {
    font-size: 36px;
  }
}

@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;
  }
  
  .customer-reviews-section .title {
    font-size: 28px;
  }
  
  .review-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.review-card {
  background: #FFFFFF;
  overflow: hidden;
  border: 2px solid #E8D5D0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.review-card:hover {
  border-color: #D4A59A;
  transform: translateY(-2px);
}

.review-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  background: #FBF9F7;
  border-radius: 10px 10px 0 0;
}

.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(154, 78, 52, 0.9);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  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-family: 'Poppins', sans-serif;
  font-size: 14px;
  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: #9A4E34;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.review-card__verified span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #9A4E34;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-card__rating {
  display: flex;
  gap: 2px;
  padding: 8px 15px;
}

.review-card__star {
  color: #E8D5D0;
  width: 18px;
  height: 18px;
}

.review-card__star--filled {
  color: #9A4E34;
}

.review-card__text {
  padding: 0 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 12px;
}

.review-card__item-type {
  padding: 0 15px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #999;
}

.review-card__item-label {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
}
/* END_SECTION:customer-reviews-grid */