/** Shopify CDN: Minification failed

Line 70:15 Unterminated string token

**/
@charset "UTF-8";

.testimonials-carousel {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.testimonials-track-container {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

/* Mobile: 1 item */
.testimonial-item {
  flex: 0 0 100%;
  min-width: 0;
}

/* Tablet: 2 items */
@media (min-width: 768px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 8px);
  }
}

/* Desktop: 4 items */
@media (min-width: 1024px) {
  .testimonial-item {
    flex: 0 0 calc(25% - 12px);
  }
}

/* Testimonial card styling */
.testimonial {
  background: #f5f5f5;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial__quote {
  flex-grow: 1;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.testimonial__quote--with-mark::before {
  content: """;
  display: block;
  margin: 0.1em 0 -0.3em;
  color: rgba(var(--text-color, 0 0 0) / 0.2);
  font-size: max(3.2em, 96px);
  font-weight: 700;
  line-height: 0.6;
}

/* Star rating */
.testimonial-stars {
  margin: 16px 0;
}

.testimonial-stars .rating {
  display: inline-block;
}

.rating__stars {
  color: var(--star-color, #FFD700);
  letter-spacing: 2px;
  font-size: 1.2em;
}

/* Author section */
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial__author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__author-image .media {
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonial__author-text {
  flex: 1;
}

.testimonial__author-text .author-name {
  font-weight: 700;
  margin: 0 0 4px 0;
}

.testimonial__author-text .author-info {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9em;
}

/* Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(var(--text-color, 0 0 0) / 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgb(var(--text-color, 0 0 0));
}

.nav-btn:hover {
  background: rgba(var(--text-color, 0 0 0) / 0.1);
  border-color: rgba(var(--text-color, 0 0 0) / 0.4);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Dots pagination */
.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--text-color, 0 0 0) / 0.2);
  transition: all 0.3s ease;
}

.dot:hover span {
  background: rgba(var(--text-color, 0 0 0) / 0.5);
  transform: scale(1.2);
}

.dot.active span {
  background: rgb(var(--text-color, 0 0 0));
  transform: scale(1.3);
}

/* Text alignment classes */
.text-start {
  text-align: left;
}

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

.text-center .testimonial__author {
  justify-content: center;
}

.text-end {
  text-align: right;
}

.text-end .testimonial__author {
  justify-content: flex-end;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .nav-btn {
    display: none;
  }
  
  .testimonials-nav {
    gap: 0;
  }
}