/** Shopify CDN: Minification failed

Line 210:0 Unexpected "}"

**/
.vt-section {
  background: var(--vt-bg, #F7EDE6);
  color: var(--vt-text, #2B2320);
  padding: 4rem 0;
}

.vt-section__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vt-header {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 2.5rem;
}

.vt-header__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 40px;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  color: var(--vt-heading-color, var(--vt-text, #2B2320));
}

.vt-header__subheading {
  margin: 0;
  opacity: 0.7;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--vt-subheading-color, var(--vt-text, #2B2320));
}

/* Card + video dimensions, single source of truth */
:root {
  --vt-card-width: 275px;
  --vt-video-height: 490px;
  --vt-gap: 20px;
  --vt-visible-cards: 5;
}

/* Locks the carousel to exactly 5 card-widths so no partial 6th card peeks in */
.vt-carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: calc(
    (var(--vt-card-width) * var(--vt-visible-cards)) +
    (var(--vt-gap) * (var(--vt-visible-cards) - 1))
  );
  margin: 0 auto;
}

.vt-track {
  display: flex;
  gap: var(--vt-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1rem;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.vt-track::-webkit-scrollbar {
  display: none;
}

.vt-card {
  scroll-snap-align: start;
  flex: 0 0 var(--vt-card-width);
  width: var(--vt-card-width);
  background: var(--vt-card-bg, #fff);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.vt-video {
  position: relative;
  width: 100%;
  height: var(--vt-video-height);
  background: #ddd;
  overflow: hidden;
  display: grid;
}

.vt-video > * {
  grid-area: 1 / 1;
}

.vt-video__el,
.vt-video__el--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-video__placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ddd3;
}

.vt-video__placeholder-icon {
  width: 3rem;
  height: 3rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.vt-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  z-index: 2;
  transition: opacity 0.2s ease;
}

.vt-play-btn__icon {
  width: 100%;
  height: 100%;
}

.vt-content {
  padding: 12px 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.vt-stars {
  display: flex;
  gap: 1px;
  color: var(--vt-accent, #8C2C3B);
}

.vt-star {
  width: 25px;
  height: 25px;
}

.vt-star path {
  fill: currentColor;
}

.vt-star--empty {
  color: #ddd;
}

.vt-quote {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  min-height: 4.6em;
  text-align: justify;
  hyphens: auto;
  color: var(--vt-quote-color, var(--vt-text, #2B2320));
}

.vt-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.vt-author__name {
  font-weight: 600;
}

.vt-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--vt-accent, #8C2C3B);
  font-size: 0.9rem;
  font-weight: 500;
}
}

.vt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.vt-tag {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: var(--vt-tag-bg, #FBF4F0);
  border: 1px solid var(--vt-accent, #8C2C3B);
  color: var(--vt-accent, #8C2C3B);
  white-space: nowrap;
  margin-right: 8px;
}

@media (max-width: 1450px) {
  :root {
    --vt-visible-cards: 4;
  }
}

@media (max-width: 1180px) {
  :root {
    --vt-visible-cards: 3;
  }
}

@media (max-width:749px){

  .vt-carousel-wrap {
    max-width: 100%;
    overflow: visible;
  }

  .vt-track{
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    justify-content:flex-start;
    padding:0 18vw 20px;
  }

  .vt-card{
    width:72vw;
    flex:0 0 72vw;
    scroll-snap-align:center;
  }

  .vt-video {
    height: auto;
    aspect-ratio: 275 / 490;
  }

}

/* Force Shopify video wrapper to fill the container */
.vt-video__el,
.vt-video video,
.vt-video .video,
.vt-video .media,
.vt-video video-js {
  width: 100% !important;
  height: 100% !important;
}

.vt-video video {
  object-fit: cover;
}