/** Shopify CDN: Minification failed

Line 477:0 Unexpected "}"

**/
/* ============================================
   MH TESTIMONIALS CAROUSEL
   Paired cards: image card + review card per testimonial
   Desktop: 4 cards visible (2 testimonials side-by-side)
   Mobile: stacked vertically (image on top, review below)
   ============================================ */

/* — Section — */
.mh-testi {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
  padding: 80px 40px 80px;
}

/* — Header — */
.mh-testi__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0;
}

.mh-testi__heading {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
  margin: 0;
}

.mh-testi__heading-bold {
  font-family: var(--mh-font-body);
  font-weight: 700;
  color: var(--mh-text);
}

.mh-testi__heading-italic {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-style: normal;
  color: var(--mh-green);
}

/* Controls: counter + arrows */
.mh-testi__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mh-testi__counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mh-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--mh-text);
  white-space: nowrap;
  margin-right: 4px;
}

.mh-testi__counter-sep {
  width: 24px;
  height: 1.5px;
  background: var(--mh-text);
  display: inline-block;
  vertical-align: middle;
}

.mh-testi__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--mh-border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-text);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.mh-testi__arrow:hover {
  background: var(--mh-text);
  border-color: var(--mh-text);
  color: #fff;
}

.mh-testi__arrow:hover svg {
  stroke: #fff;
}

/* — Carousel — */
.mh-testi__carousel {
  position: relative;
  overflow: hidden;
}

.mh-testi__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 4px;
}

.mh-testi__track::-webkit-scrollbar {
  display: none;
}

.mh-testi__track:active {
  cursor: grabbing;
}

/* — Testimonial Group Wrapper — */
/* Desktop: transparent (cards behave as direct track children)
   Mobile: stacks image card on top of review card */
.mh-testi__group {
  display: contents;
}

/* — Cards (Base) — */
.mh-testi__card {
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 620px;
  /* 4 cards visible; total horizontal gap = 12*3 (flex) + 16 (margin) = 52px */
  width: calc((100% - 68px) / 4);
}

/* Larger gap AFTER review card = separates testimonial pairs */
.mh-testi__group:not(:last-child) .mh-testi__card--review {
  margin-right: 16px;
}

/* — Image Card — */
.mh-testi__card--image {
  position: relative;
  overflow: hidden;
}

.mh-testi__card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-testi__card--image:hover img {
  transform: scale(1.05);
}

.mh-testi__card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: var(--mh-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-testi__placeholder-svg {
  width: 50%;
  max-width: 120px;
  opacity: 0.3;
}

/* — Review Card — */
.mh-testi__card--review {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  position: relative;
}

/* Reviewer */
.mh-testi__reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mh-border);
}

.mh-testi__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mh-testi__avatar--placeholder {
  background: var(--mh-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mh-font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--mh-text-muted);
}

.mh-testi__reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mh-testi__reviewer-name {
  font-family: var(--mh-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--mh-text);
  line-height: 1.3;
}

.mh-testi__reviewer-label {
  font-family: var(--mh-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--mh-text-muted);
}

/* Stars */
.mh-testi__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

/* Review Body */
.mh-testi__review-body {
  font-family: var(--mh-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--mh-text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* Product Strip */
.mh-testi__product-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  background: var(--mh-surface);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  margin-top: auto;
  transition: background 0.3s ease;
}

.mh-testi__product-strip:hover {
  background: var(--mh-border);
}

.mh-testi__product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.mh-testi__product-info {
  flex: 1;
  min-width: 0;
}

.mh-testi__product-name {
  display: block;
  font-family: var(--mh-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mh-testi__product-price {
  display: block;
  font-family: var(--mh-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--mh-text-muted);
  margin-top: 2px;
}

/* — Dots (mobile) — */
.mh-testi__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.mh-testi__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mh-testi__dot.is-active {
  width: 32px;
  border-radius: 4px;
}

.mh-testi__dot.is-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--mh-text);
  border-radius: 4px;
  animation: mhTestiDotFill 5s linear forwards;
}

@keyframes mhTestiDotFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ============================================
   TABLET (1024px and below)
   2 cards visible (1 testimonial pair side-by-side)
   ============================================ */
@media (max-width: 1024px) {
  .mh-testi {
    padding: 60px 24px;
  }

  .mh-testi__card {
    width: calc((100% - 12px) / 2);
    min-height: 540px;
  }

  .mh-testi__card--review {
    padding: 24px 20px 20px;
    margin-right: 16px;
  }

  .mh-testi__card-placeholder {
    min-height: 540px;
  }
}

/* ============================================
   MOBILE (749px and below)
   Each testimonial group stacks: image card on top, review below
   1 testimonial visible per slide
   ============================================ */
@media (max-width: 749px) {
  .mh-testi {
    padding: 40px 16px 48px;
  }

  .mh-testi__header {
    margin-bottom: 20px;
  }

  .mh-testi__heading {
    font-size: 24px;
  }

  /* Hide counter + arrows on mobile */
  .mh-testi__controls {
    display: none;
  }

  /* Show dots on mobile */
  .mh-testi__dots {
    display: flex;
  }

  /* Group becomes the slide unit on mobile — column flex */
  .mh-testi__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 85%;
    scroll-snap-align: start;
  }

  /* Track gap = between full testimonial groups */
  .mh-testi__track {
    gap: 16px;
  }

  /* Cards inside group take full width of parent group */
  .mh-testi__card {
    width: 100%;
    min-height: auto;
  }

  /* Image card fixed height on mobile */
.mh-testi__card--image {
  height: 360px;
}

/* Mobile uses fixed height — img absolute positioning still works */lex: 1;
}

  .mh-testi__card-placeholder {
    min-height: 360px;
    height: 360px;
  }

  /* Remove desktop extra margin — group gap handles spacing */
  .mh-testi__card--review {
    padding: 20px 18px 18px;
    margin-right: 0;
  }

  .mh-testi__reviewer {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .mh-testi__avatar {
    width: 44px;
    height: 44px;
  }

  .mh-testi__reviewer-name {
    font-size: 14px;
  }

  .mh-testi__review-body {
    font-size: 13px;
  }

  .mh-testi__product-strip {
    padding: 12px 14px;
  }

  .mh-testi__product-thumb {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .mh-testi__card--image img,
  .mh-testi__dot.is-active::after,
  .mh-testi__arrow,
  .mh-testi__product-strip {
    animation: none !important;
    transition: none !important;
  }
}