/**
 * Video testimonials — 5 desktop / 1 scroll mobile
 */
.home-video-testimonials {
  margin: 0;
  padding: 16px 0 20px;
  background: linear-gradient(180deg, #fff 0%, #fff9fc 100%);
  border-top: 1px solid rgba(233, 30, 99, 0.06);
  border-bottom: 1px solid rgba(233, 30, 99, 0.06);
}
.home-video-testimonials-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}
.home-video-testimonials-head {
  margin-bottom: 14px;
}
.home-video-testimonials-head .home-video-kicker {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c2185b;
}
.home-video-testimonials-head h2 {
  margin: 0;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 800;
  color: #1a1218;
  letter-spacing: -0.02em;
}
.home-video-testimonials-head p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6d5f66;
}
.home-video-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.home-video-scroll::-webkit-scrollbar {
  display: none;
}
.home-video-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1218;
  border: 1px solid #e8e0e4;
  box-shadow: 0 8px 28px rgba(26, 18, 24, 0.12);
  position: relative;
}
.home-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 420px;
  object-fit: cover;
  background: #2a2228;
}
.home-video-mute-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(13, 10, 12, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  padding: 0;
}
.home-video-mute-btn:hover {
  background: rgba(233, 30, 99, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.08);
}
.home-video-mute-glyph {
  width: 22px;
  height: 22px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E");
}
.home-video-mute-btn.is-unmuted .home-video-mute-glyph {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/svg%3E");
}
.home-video-mute-btn.is-unmuted {
  background: rgba(233, 30, 99, 0.88);
  border-color: rgba(255, 255, 255, 0.5);
}
.home-video-card .home-video-play-hint {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}
.home-video-placeholder {
  aspect-ratio: 9/16;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(160deg, #fce4ec, #f3e5f5);
  color: #5c4f56;
  text-align: center;
  font-size: 12px;
}
.home-video-placeholder strong {
  color: #c2185b;
  font-size: 13px;
}
@media (min-width: 768px) {
  .home-video-scroll {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }
  .home-video-card {
    flex: unset;
    max-width: none;
  }
  .home-video-card video {
    max-height: 320px;
    aspect-ratio: 9/14;
  }
}
