/** Shopify CDN: Minification failed

Line 433:24 Expected identifier but found whitespace
Line 433:26 Unexpected "{"
Line 433:35 Expected ":"
Line 433:61 Expected ":"
Line 434:27 Expected identifier but found whitespace
Line 434:29 Unexpected "{"
Line 434:38 Expected ":"
Line 434:67 Expected ":"
Line 435:29 Expected identifier but found whitespace
Line 435:31 Unexpected "{"
... and 7 more hidden warnings

**/
.reviews-gallery-section {
  padding: 30px 20px;
  background-color: #F1F0EB;
  font-family: 'ProximaNova Regular';
}

.reviews-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible;
}

.reviews-gallery-content {
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: visible;
}

.reviews-column {
  flex: 0 0 30%;
  padding: 0 30px;
  min-width: 0;
  text-align: center;
  position: relative;
}

.reviews-galery {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.reviews-galery .swiper-wrapper {
  position: relative;
}

.review-block {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.swiper-slide {
  position: relative;
  z-index: 1;
}

.star-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.star {
  display: inline-block;
  width: 19px;
  height: 18px;
}

.star svg {
  width: 100%;
  height: 100%;
  fill: black;
}

.star.filled svg path {
  fill: var(--star-color, #000000);
}

.star.empty svg path {
  fill: #A1A6A0;
}

.review-title {
  font-size: 1.8rem;
  line-height: normal;
  margin: 0 0 15px 0;
  font-family: 'ProximaNova Bold';
  color: inherit;
}

.review-text {
  font-size: 1.4rem;
  line-height: normal;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
  color: inherit;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviewer-name {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: 'ProximaNova SemiBold';
  color: inherit;
}

.verified-badge {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

.reviews-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}

.nav-arrow {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  color: var(--section-text-color, #000000);
}

.nav-arrow:hover {
  background: transparent;
}

.prev-arrow {
  margin-left: -20px;
}

.next-arrow {
  margin-right: -20px;
}

.reviews-pagination {
  position: relative;
  z-index: 20;
  text-align: center;
  display: block;
  bottom: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  background-color: #ffffff;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
  border-radius: 0;
  display: inline-block;
  border: 1px solid #e0e0e0;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
  transform: scale(1);
  border: 1px solid #000000;
}

.images-column {
  flex: 0 0 70%;
  min-width: 0;
  overflow: visible;
}

.images-gallery {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  width: 100%;
}

.images-gallery:active {
  cursor: grabbing;
}

.images-gallery::-webkit-scrollbar {
  display: none;
}

.model-image-block {
  flex: 0 0 auto;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

.model-image {
  width: 100%;
  height: 400px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


@media screen and (min-width: 991px) {
  .images-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #000 transparent;
  }
  
  .images-gallery::-webkit-scrollbar {
    height: 6px;
    display: block;
  }
  
  .images-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .images-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  
  .images-gallery::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}

@media screen and (max-width: 990px) {
  .reviews-gallery-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .reviews-column {
    flex: none;
    width: 100%;
    padding: 0 20px;
  }
  
  .images-column {
    flex: none;
    width: 100%;
  }
  
  .images-gallery {
    gap: 15px;
  }
  
  .model-image-block {
    width: 250px;
    min-width: 250px;
  }
  
  .model-image {
    height: 350px;
  }

  .prev-arrow,
  .next-arrow {
    margin: 0;
  }

  .reviews-navigation .next-arrow {
    margin-right: -12px;
  }

  .reviews-navigation .prev-arrow {
    margin-left: -12px;
  }
  
  .reviews-pagination {
    margin-top: 10px;
    display: block;
  }
  
  .reviews-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 3px;
  }
}

@media screen and (max-width: 750px) {
  .reviews-gallery-container {
    padding: 0 15px;
  }
  
  .reviews-gallery-content {
    gap: 25px;
  }
  
  .star {
    width: 16px;
    height: 15px;
  }
  
  .review-title {
    font-size: 1.6rem;
  }
  
  .review-text {
    font-size: 16px;
  }
  
  .reviewer-name {
    font-size: 1.2rem;
  }
  
  .verified-badge {
    font-size: 1.1rem;
  }
  
  .images-gallery {
    gap: 12px;
  }
  
  .model-image-block {
    width: 200px;
    min-width: 200px;
  }
  
  .model-image {
    height: 300px;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 2.5rem;
  }
  
  .reviews-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 3px;
  }
}

@media screen and (max-width: 480px) {
  .reviews-gallery-section {
    padding: 40px 0;
  }
  
  .reviews-gallery-content {
    gap: 20px;
  }
  
  .star {
    width: 14px;
    height: 13px;
  }
  
  .review-title {
    font-size: 1.4rem;
  }
  
  .reviewer-name {
    font-size: 1.1rem;
  }
  
  .verified-badge {
    font-size: 1rem;
  }
  
  .images-gallery {
    gap: 10px;
  }
  
  .model-image-block {
    width: 180px;
    min-width: 180px;
  }
  
  .model-image {
    height: 250px;
  }
  
  .nav-arrow {
    width: 34px;
    height: 34px;
    font-size: 2.4rem;
  }
  
  .reviews-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 3px;
  }
}

.reviews-gallery-section {
  --section-padding-top: {{ section.settings.padding_top }}px;
  --section-padding-bottom: {{ section.settings.padding_bottom }}px;
  --section-background-color: {{ section.settings.background_color }};
  --section-text-color: {{ section.settings.text_color }};
  --star-color: {{ section.settings.star_color }};
}
