/** Shopify CDN: Minification failed

Line 122:15 Expected identifier but found whitespace
Line 122:17 Unexpected "{"
Line 122:26 Expected ":"
Line 145:21 Expected identifier but found whitespace
Line 145:23 Unexpected "{"
Line 145:32 Expected ":"
Line 146:10 Expected identifier but found whitespace
Line 146:12 Unexpected "{"
Line 146:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.carousel-3d-wrapper {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  padding: 17vh;
}

.carousel-3d-inner {
  --card-width: clamp(100px, 12vw, 150px);
  --card-height: calc(var(--card-width) / 0.715);
  --translateZ: calc(var(--card-width) * 2.8);
  --rotateX: 0deg;
  --perspective: 1000px;
  position: relative;
  width: var(--card-width);
  height: var(--card-height);
  transform-style: preserve-3d;
  transform: perspective(var(--perspective));
  animation: rotateYAnim 25s linear infinite;
}

.carousel-3d-card:hover ~ .carousel-3d-inner {
  animation-play-state: paused;
}

.carousel-3d-wrapper:hover .carousel-3d-inner.paused {
  animation-play-state: paused;
}

@keyframes rotateYAnim {
  to {
    transform: perspective(var(--perspective)) rotateY(360deg);
  }
}

.carousel-3d-card {
  --angle: calc(360deg / var(--quantity));
  position: absolute;
  top: 0;
  left: 0;
  width: var(--card-width);
  height: var(--card-height);
  transform:
    rotateY(calc(var(--index) * var(--angle)))
    translateZ(var(--translateZ));
  border-radius: 12px;
  overflow: hidden;
  background: rgba(var(--color-card), 0.6);
  box-shadow: 0 0 10px rgba(var(--color-card), 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.carousel-3d-card:hover {
  transform:
    rotateY(calc(var(--index) * var(--angle)))
    translateZ(calc(var(--translateZ) + 20px))
    scale(1.08);
  z-index: 10;
  box-shadow: 0 0 25px rgba(var(--color-card), 0.8);
}

.carousel-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
  }

  .video-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, {{ section.settings.overlay_opacity }});
    z-index: 1;
  }

  .video-banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: {{ section.settings.text_alignment }};
    width: 90%;
    max-width: 600px;
    color: white;
    z-index: 2;
  }

  .video-banner__heading {
    font-size: clamp(24px, 5vw, 56px);
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .video-banner__description {
    font-size: clamp(14px, 2vw, 18px);
    margin: 0 0 30px 0;
    line-height: 1.6;
  }

  .video-banner__button {
    display: inline-block;
    padding: 14px 32px;
    background-color: {{ section.settings.button_color }};
    color: {{ section.settings.button_text_color }};
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .video-banner__button:hover {
    opacity: 0.85;
  }

  @media (max-width: 768px) {
    .video-banner {
      height: 100vh;
    }
    
    .video-banner__content {
      width: 95%;
    }
  }

  @media (max-width: 480px) {
    .video-banner {
      height: 100vh;
    }
  }