/** Shopify CDN: Minification failed

Line 227:10 Unexpected "{"
Line 227:19 Expected ":"
Line 228:14 Expected identifier but found whitespace
Line 228:16 Unexpected "{"
Line 228:25 Expected ":"
Line 228:51 Expected ":"
Line 229:17 Expected identifier but found whitespace
Line 229:19 Unexpected "{"
Line 229:28 Expected ":"
Line 229:57 Expected ":"

**/
.customer-reviews-carousel {
  overflow: hidden;
}

.reviews-carousel__heading {
  margin-bottom: 3rem;
}

.reviews-carousel__wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-carousel__track {
  display: flex;
}

reviews-carousel:defined .reviews-carousel__track {
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card__product-preview {
  text-align: center;
}

.review-card__product-image-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.review-card__product-image-link:hover {
  opacity: 0.85;
}

.review-card__product-image {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
}

.review-card__product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin-top: 0.5rem;
}

.review-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffc107;
}

.review-card__stars .star {
  line-height: 1;
}

.review-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: rgb(var(--color-foreground));
}

.review-card__text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  color: rgba(var(--color-foreground), 0.85);
}

.review-card__footer {
  text-align: center;
}

.review-card__author {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgb(var(--color-foreground));
}

.review-card__verified {
  font-size: 0.875rem;
  color: #059669;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.review-card__product-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: rgb(var(--color-link));
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.review-card__product-link:hover {
  opacity: 0.7;
}

.reviews-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.reviews-carousel__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(var(--color-foreground), 0.2);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-carousel__button:hover {
  border-color: rgba(var(--color-foreground), 0.4);
  background: rgba(var(--color-foreground), 0.05);
}

.reviews-carousel__button:active {
  transform: scale(0.95);
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.reviews-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.2);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.reviews-carousel__dot.is-active {
  background: rgb(var(--color-button));
  transform: scale(1.2);
}

.reviews-carousel__dot:hover {
  background: rgba(var(--color-foreground), 0.4);
}

.reviews-carousel__empty {
  padding: 4rem 2rem;
  color: rgba(var(--color-foreground), 0.6);
}

@media screen and (max-width: 749px) {
  .review-card {
    padding: 1.5rem 1rem;
  }

  .review-card__title {
    font-size: 1.25rem;
  }

  .review-card__text {
    font-size: 1.25rem;
  }

  .reviews-carousel__button {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .reviews-carousel__controls {
    gap: 1rem;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}
