/** Shopify CDN: Minification failed

Line 210:15 Expected identifier but found whitespace
Line 210:17 Unexpected "{"
Line 210:26 Expected ":"
Line 233:21 Expected identifier but found whitespace
Line 233:23 Unexpected "{"
Line 233:32 Expected ":"
Line 234:10 Expected identifier but found whitespace
Line 234:12 Unexpected "{"
Line 234:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:caroussel-3d (INDEX:10) */
.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) * 1.8);
  --rotateX: 0deg;
  --perspective: 1000px;

  position: relative;
  width: var(--card-width);
  height: var(--card-height);

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;

  -webkit-transform: perspective(var(--perspective)) rotateY(0deg);
  transform: perspective(var(--perspective)) rotateY(0deg);

  -webkit-animation: rotateYAnim 25s linear infinite;
  animation: rotateYAnim 25s linear infinite;

  will-change: transform;
}

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

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

@-webkit-keyframes rotateYAnim {
  from {
    -webkit-transform: perspective(var(--perspective)) rotateY(0deg);
    transform: perspective(var(--perspective)) rotateY(0deg);
  }

  to {
    -webkit-transform: perspective(var(--perspective)) rotateY(360deg);
    transform: perspective(var(--perspective)) rotateY(360deg);
  }
}

@keyframes rotateYAnim {
  from {
    -webkit-transform: perspective(var(--perspective)) rotateY(0deg);
    transform: perspective(var(--perspective)) rotateY(0deg);
  }

  to {
    -webkit-transform: perspective(var(--perspective)) rotateY(360deg);
    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);

  -webkit-transform:
    rotateY(calc(var(--index) * var(--angle)))
    translateZ(var(--translateZ));

  transform:
    rotateY(calc(var(--index) * var(--angle)))
    translateZ(var(--translateZ));

  -webkit-backface-visibility: visible;
  backface-visibility: visible;

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;

  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;
  z-index: 1;
  cursor: pointer;
}

.carousel-3d-card:hover {
  transform:
    rotateY(calc(var(--index) * var(--angle)))
    translateZ(calc(var(--translateZ) + 20px))
    scale(1.08);
  z-index: 10;
}

.carousel-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

/* --- Popup --- */
.carousel-3d-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.carousel-3d-popup.is-open {
  display: flex;
}

.carousel-3d-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.carousel-3d-popup-content img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.carousel-3d-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
/* END_SECTION:caroussel-3d */

/* START_SECTION:video-ban (INDEX:69) */
.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;
    }
  }
/* END_SECTION:video-ban */