/** Shopify CDN: Minification failed

Line 821:0 Unexpected "}"

**/
/* ==========================================
SECTION ROOT & RESET
========================================== */
.video-carousel {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.video-carousel *,
.video-carousel *::before,
.video-carousel *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
SECTION HEADER
========================================== */
.video-carousel__header {
  text-align: center;
  margin-bottom: 10px;
}

.video-carousel__heading {
  margin: 0;
  font-family: inherit;
  -webkit-hyphens: none;
  hyphens: none;
  word-break: break-word;
}

.video-carousel__subheading {
  margin: 0;
  font-family: inherit;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
CAROUSEL WRAPPER & NAVIGATION CONTAINER
========================================== */
.video-carousel__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
CAROUSEL VIEWPORT - HIDDEN OVERFLOW CONTAINER
========================================== */
.video-carousel__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-carousel__viewport::-webkit-scrollbar {
  display: none;
}

/* ==========================================
CAROUSEL TRACK - HORIZONTAL FLEX CONTAINER
========================================== */
.video-carousel__track {
  display: flex;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

/* ==========================================
MOUSE DRAG STATE
========================================== */
.video-carousel__track.is-dragging {
  cursor: grabbing;
  transition: none;
  scroll-snap-type: none;
}

.video-carousel__track.no-transition {
  transition: none !important;
}

/* ==========================================
VIDEO CARD - INDIVIDUAL SLIDE
========================================== */
.video-carousel__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.6s ease;
  flex-shrink: 0;
}

/* ==========================================
CARD HOVER EFFECTS
========================================== */
.video-carousel__card--hover {
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-carousel__card--hover:hover {
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}

/* ==========================================
CARD MEDIA AREA - VIDEO & POSTER CONTAINER
========================================== */
.video-carousel__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.video-carousel__video,
.video-carousel__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-carousel__poster {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ==========================================
RESPONSIVE VIDEO & POSTER SWITCHING
========================================== */
.video-carousel__video--desktop,
.video-carousel__poster--desktop {
  display: block;
}

.video-carousel__video--mobile,
.video-carousel__poster--mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .video-carousel__video--desktop,
  .video-carousel__poster--desktop {
    display: none;
  }

  .video-carousel__video--mobile,
  .video-carousel__poster--mobile {
    display: block;
  }
}

/* ==========================================
BADGE
========================================== */
.video-carousel__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #ff4444;
  color: #ffffff;
  border-radius: 4px;
  line-height: 1.4;
}

/* ==========================================
MUTE/UNMUTE BUTTON
========================================== */
.video-carousel__mute {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease,
    background-color 0.25s ease;
  outline: none;
}

.video-carousel__mute:hover {
  transform: scale(1.1);
}

.video-carousel__mute:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.video-carousel__mute svg {
  display: block;
  transition: transform 0.3s ease;
}

.video-carousel__mute:hover svg {
  transform: scale(1.05);
}

.video-carousel__mute-icon--muted {
  display: block;
}

.video-carousel__mute-icon--unmuted {
  display: none;
}

.video-carousel__mute.is-muted .video-carousel__mute-icon--muted {
  display: block;
}

.video-carousel__mute.is-muted .video-carousel__mute-icon--unmuted {
  display: none;
}

.video-carousel__mute:not(.is-muted) .video-carousel__mute-icon--muted {
  display: none;
}

.video-carousel__mute:not(.is-muted) .video-carousel__mute-icon--unmuted {
  display: block;
}

/* ==========================================
PLAY BUTTON OVERLAY
========================================== */
.video-carousel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease;
  outline: none;
}

.video-carousel__play:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-carousel__play:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.video-carousel__play svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.video-carousel__play:hover svg {
  transform: scale(1.05);
}

/* ==========================================
PLAY BUTTON HIDE WHEN VIDEO PLAYS
========================================== */
.video-carousel__card.is-playing .video-carousel__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.video-carousel__card.is-playing .video-carousel__badge {
  opacity: 0;
}

/* ==========================================
VIDEO CONTROLS ENABLED
========================================== */
.video-carousel__card[data-controls-enabled="true"] .video-carousel__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.video-carousel__card[data-controls-enabled="true"] .video-carousel__badge {
  opacity: 0;
}

.video-carousel__video {
  position: relative;
  z-index: 1;
}

/* ==========================================
CUSTOM VIDEO CONTROLS BAR
========================================== */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-carousel__media:hover .video-controls,
.video-controls.is-active {
  opacity: 1;
}

/* ==========================================
PROGRESS BAR
========================================== */
.video-controls__progress {
  width: 100%;
  cursor: pointer;
  position: relative;
}

.video-controls__progress-played {
  width: 0%;
  height: 100%;
  transition: width 0.1s linear;
}

/* ==========================================
CONTROLS BAR ROW
========================================== */
.video-controls__bar {
  display: flex;
  align-items: center;
  gap: 0;
}

.video-controls__spacer {
  flex: 1;
}

/* ==========================================
CONTROL BUTTONS
========================================== */
.video-controls__play,
.video-controls__volume,
.video-controls__fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

.video-controls__play:focus-visible,
.video-controls__volume:focus-visible,
.video-controls__fullscreen:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* ==========================================
CONTROL ICONS
========================================== */
.video-controls__icon--play,
.video-controls__icon--pause,
.video-controls__icon--vol-high,
.video-controls__icon--vol-muted,
.video-controls__icon--expand,
.video-controls__icon--shrink {
  display: block;
}

.video-controls__icon--pause,
.video-controls__icon--vol-muted,
.video-controls__icon--shrink {
  display: none;
}

.video-controls__play.is-playing .video-controls__icon--play { display: none; }
.video-controls__play.is-playing .video-controls__icon--pause { display: block; }

.video-controls__volume.is-muted .video-controls__icon--vol-high { display: none; }
.video-controls__volume.is-muted .video-controls__icon--vol-muted { display: block; }

.video-controls__fullscreen.is-fullscreen .video-controls__icon--expand { display: none; }
.video-controls__fullscreen.is-fullscreen .video-controls__icon--shrink { display: block; }

/* ==========================================
TIME DISPLAY
========================================== */
.video-controls__time {
  white-space: nowrap;
  line-height: 1;
}

/* ==========================================
CARD CONTENT AREA
========================================== */
.video-carousel__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 0 0 inherit inherit;
}

.video-carousel__shop-card-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  font-family: inherit;
  word-break: break-word;
}

.video-carousel__shop-card-description {
  margin: 0 0 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555555;
  font-family: inherit;
  word-break: break-word;
}

.video-carousel__shop-card-description p {
  margin: 0 0 4px 0;
}

.video-carousel__shop-card-description p:last-child {
  margin-bottom: 0;
}

.video-carousel__shop-card-author {
  display: block;
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 500;
  color: #888888;
  font-family: inherit;
  font-style: italic;
}

/* ==========================================
UNDER-VIDEO BUTTON
========================================== */
.video-carousel__shop-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  outline: none;
  font-family: inherit;
  white-space: nowrap;
  align-self: flex-start;
}

.video-carousel__shop-card-button:hover {
  transform: translateY(-1px);
}

.video-carousel__shop-card-button:active {
  transform: translateY(0);
}

.video-carousel__shop-card-button:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* ==========================================
PREV / NEXT ARROWS
========================================== */
.video-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.video-carousel__arrow--prev {
  left: 0;
}

.video-carousel__arrow--next {
  right: 0;
}

.video-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-carousel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.video-carousel__arrow:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.video-carousel__arrow svg {
  display: block;
}

/* Arrow hidden states for infinite loop boundaries */
.video-carousel__arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* ==========================================
PAGINATION DOTS
========================================== */
.video-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 0;
}

.video-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    width 0.3s ease;
  outline: none;
  padding: 0;
  flex-shrink: 0;
}

.video-carousel__dot:hover {
  transform: scale(1.2);
}

.video-carousel__dot:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.video-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
}

/* ==========================================
AUTO SCROLL TIMER BAR
========================================== */
.video-carousel__timer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #444444);
  border-radius: 0 0 4px 4px;
  z-index: 5;
  transition: width linear;
  opacity: 0;
}

.video-carousel__timer-bar.is-active {
  opacity: 1;
}

/* ==========================================
ANIMATION STATES - FADE UP
========================================== */
.video-carousel__card[data-animated="false"] {
  opacity: 0;
  transform: translateY(30px);
}

.video-carousel__card[data-animated="true"] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================
STAGGER ANIMATION DELAYS
========================================== */
.video-carousel__card[data-animated="false"]:nth-child(1) { transition-delay: 0s; }
.video-carousel__card[data-animated="false"]:nth-child(2) { transition-delay: 0.08s; }
.video-carousel__card[data-animated="false"]:nth-child(3) { transition-delay: 0.16s; }
.video-carousel__card[data-animated="false"]:nth-child(4) { transition-delay: 0.24s; }
.video-carousel__card[data-animated="false"]:nth-child(5) { transition-delay: 0.32s; }
.video-carousel__card[data-animated="false"]:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================
PREFERS REDUCED MOTION
========================================== */
@media (prefers-reduced-motion: reduce) {
  .video-carousel__track {
    transition: none !important;
  }

  .video-carousel__card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .video-carousel__card--hover:hover {
    transform: none !important;
  }

  .video-carousel__arrow {
    transition: none !important;
    transform: translateY(-50%) !important;
  }

  .video-carousel__dot {
    transition: none !important;
  }

  .video-carousel__play {
    transition: none !important;
    transform: translate(-50%, -50%) !important;
  }

  .video-carousel__mute {
    transition: none !important;
  }
}

/* ==========================================
SECTION UNLOAD ANIMATION
========================================== */
.section-video-carousel.is-unloading .video-carousel {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ==========================================
INFINITE LOOP CLONE STYLES
========================================== */
.video-carousel__card.is-clone {
  /* Clones are visually identical, no special styling needed */
}

/* ==========================================
VIDEO PAUSE STATES
========================================== */
.video-carousel__video.is-paused {
  /* Paused visual state */
}

/* ==========================================
ACCESSIBILITY - FOCUS VISIBLE
========================================== */
.video-carousel :focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* ==========================================
MOBILE RESPONSIVE OVERRIDES
========================================== */
@media screen and (max-width: 749px) {
  .video-carousel__dots {
    gap: 6px;
    margin-top: 16px;
  }

  .video-carousel__dot {
    width: 6px;
    height: 6px;
  }

  .video-carousel__dot.is-active {
    width: 18px;
  }

  .video-carousel__arrow--prev {
    left: 4px;
  }

  .video-carousel__arrow--next {
    right: 4px;
  }

  .video-carousel__badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }
}

/* ==========================================
SMOOTH SNAP BEHAVIOR (fallback for CSS snap)
========================================== */
.video-carousel__track[data-smooth="true"] {
  scroll-behavior: smooth;
}

/* ==========================================
CONTENT NO-VIDEO FALLBACK
========================================== */
.video-carousel__media:empty {
  display: none;
}

/* ==========================================
SHOPIFY THEME EDITOR - INLINE TEXT EDITING
========================================== */
.shopify-editor .video-carousel__card {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.shopify-editor .video-carousel__track {
  user-select: text;
  -webkit-user-select: text;
  cursor: default;
}

.shopify-editor .video-carousel__heading,
.shopify-editor .video-carousel__subheading,
.shopify-editor .video-carousel__shop-card-title,
.shopify-editor .video-carousel__shop-card-description,
.shopify-editor .video-carousel__shop-card-author,
.shopify-editor .video-carousel__para-card-text,
.shopify-editor .video-carousel__para-card-author {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}

.shopify-section-selected .video-carousel__track {
  user-select: text;
  -webkit-user-select: text;
}

.shopify-section-selected .video-carousel__track {
  cursor: default;
}

.shopify-section-selected .video-carousel__heading,
.shopify-section-selected .video-carousel__subheading,
.shopify-section-selected .video-carousel__shop-card-title,
.shopify-section-selected .video-carousel__shop-card-description,
.shopify-section-selected .video-carousel__shop-card-author,
.shopify-section-selected .video-carousel__para-card-text,
.shopify-section-selected .video-carousel__para-card-author {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}
}
