/** Shopify CDN: Minification failed

Line 581:10 Unexpected "{"
Line 581:19 Expected ":"
Line 582:14 Expected identifier but found whitespace
Line 582:16 Unexpected "{"
Line 582:25 Expected ":"
Line 582:76 Expected ":"
Line 583:17 Expected identifier but found whitespace
Line 583:19 Unexpected "{"
Line 583:28 Expected ":"
Line 583:82 Expected ":"
... and 10 more hidden warnings

**/
/* Top Reviews Section Styles */
.top-reviews-section {
  margin: 0 auto;
  padding: 0 1.5rem 3rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.section-subheading {
  font-size: 1.6rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

/* Reviews Slideshow */
.reviews-slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
  gap: var(--gap-desktop);
  width: 100%;
}

.reviews-track .review-card {
  flex: 0 0 calc(33.333% - var(--gap-desktop) * 2 / 3);
  box-sizing: border-box;
  min-width: 0;
}

/* Review Card */
.review-card {
  background: #f3f3f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
  width: 100%;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}

/* Review Image Container */
.review-image-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
}

.review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review-card:hover .review-image {
  transform: scale(1.05);
}

.review-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #cccccc;
}

/* Review Content */
.review-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
}

/* Rating Stars */
.review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.star-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.star-icon.filled {
  color: #ffd700;
}

.star-icon.empty {
  color: #e0e0e0;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -25px;
  right: 1.5rem;
  color: #ffffff;
  opacity: 1;
  z-index: 2;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon svg {
  width: 32px;
  height: 32px;
}

/* Review Text */
.review-text {
  flex: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: calc(1.8rem * 1.3 * 2 + 1rem + 1.4rem * 1.6 * 4);
}

.review-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.8rem * 1.3 * 2);
  flex-shrink: 0;
}

.review-description {
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.4rem * 1.6 * 4);
  flex-shrink: 0;
}

/* Reviewer Info */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  padding-top: 1.5rem;
}

.reviewer-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background-color: #e0e0e0;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
  flex-shrink: 0;
}

.reviewer-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  border: 2px solid #f0f0f0;
  flex-shrink: 0;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
  flex-shrink: 0;
}

.reviewer-handle {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Navigation Controls */
.reviews-navigation {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-button {
  background: #ffffff !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333333 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-button:hover:not(:disabled) {
  background: #f8f8f8;
  border-color: #333333;
  transform: scale(1.05);
}

.nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  display: flex !important;
  gap: 0.8rem;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.pagination-dot.active {
  background: #333333;
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: #999999;
}

/* Empty State */
.reviews-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666666;
  font-size: 1.6rem;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
  .reviews-track {
    gap: var(--gap-mobile);
  }
  
  .reviews-track .review-card {
    flex: 0 0 calc(50% - var(--gap-mobile) / 2);
    min-height: 380px;
  }
  
  .section-heading {
    font-size: 2.8rem;
  }
  
  .review-image-container {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .review-content {
    padding: 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .review-text {
    height: calc(1.6rem * 1.3 * 2 + 1rem + 1.3rem * 1.6 * 4);
  }
  
  .review-title {
    font-size: 1.6rem;
    height: calc(1.6rem * 1.3 * 2);
  }
  
  .review-description {
    font-size: 1.3rem;
    height: calc(1.3rem * 1.6 * 4);
  }
}

@media screen and (max-width: 749px) {
  .top-reviews-section {
    padding: 0 1rem 2rem 1rem;
  }
  
  .reviews-track {
    gap: var(--gap-mobile);
  }
  
  .reviews-track .review-card {
    flex: 0 0 100%;
    min-height: 350px;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-heading {
    font-size: 2.4rem;
  }
  
  .section-subheading {
    font-size: 1.4rem;
  }
  
  .review-image-container {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .review-content {
    padding: 1.25rem;
    align-items: center;
    text-align: center;
  }
  
  .review-text {
    height: calc(1.5rem * 1.3 * 2 + 1rem + 1.2rem * 1.6 * 4);
  }
  
  .review-title {
    font-size: 1.5rem;
    height: calc(1.5rem * 1.3 * 2);
  }
  
  .review-description {
    font-size: 1.2rem;
    height: calc(1.2rem * 1.6 * 4);
  }
  
  .reviewer-info {
    padding-top: 1.25rem;
  }
  
  .reviewer-info::before {
    width: 200px;
    height: 1.5px;
  }
  
  .reviewer-name {
    font-size: 1.3rem;
  }
  
  .reviewer-handle {
    font-size: 1.1rem;
  }
  
  .star-icon {
    width: 18px;
    height: 18px;
  }
  
  .quote-icon {
    width: 40px;
    height: 40px;
    top: -20px;
  }
  
  .quote-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .reviews-navigation {
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .nav-button {
    width: 40px;
    height: 40px;
  }
  
  .pagination-dots {
    gap: 0.6rem;
  }
  
  .pagination-dot {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 480px) {
  .section-heading {
    font-size: 2.2rem;
  }
  
  .review-image-container {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .review-content {
    padding: 1rem;
    align-items: center;
    text-align: center;
  }
  
  .review-text {
    height: calc(1.4rem * 1.3 * 2 + 1rem + 1.1rem * 1.6 * 4);
  }
  
  .review-title {
    font-size: 1.4rem;
    height: calc(1.4rem * 1.3 * 2);
  }
  
  .review-description {
    font-size: 1.1rem;
    height: calc(1.1rem * 1.6 * 4);
  }
  
  .reviewer-info {
    padding-top: 1rem;
  }
  
  .reviewer-info::before {
    width: 160px;
    height: 1px;
  }
}

/* Animation Classes */
.animate-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-item.animate-item--visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-item--child {
  transition-delay: 0.1s;
}

.animate-item--child:nth-child(2) {
  transition-delay: 0.2s;
}

.animate-item--child:nth-child(3) {
  transition-delay: 0.3s;
}

.animate-item--child:nth-child(4) {
  transition-delay: 0.4s;
}

.animate-item--child:nth-child(5) {
  transition-delay: 0.5s;
}

.animate-item--child:nth-child(6) {
  transition-delay: 0.6s;
}

/* Section Padding */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
