/** Shopify CDN: Minification failed

Line 213:0 Unexpected "<"
Line 267:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-carousel-popup {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  width: 23%;
  margin: 0 10px;
  text-align: center;
}
.carousel-image {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.carousel-image:hover {
  transform: scale(1.03);
}
.carousel-caption {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

.carousel-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  z-index: 2;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-item {
    width: 70%;
  }
  .carousel-arrow {
    display: none;
  }
}

/* Popup */
.carousel-popup.hidden {
  display: none;
}
.carousel-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.spec-gif-card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
  }
  
  .spec-gif-card {
    width: 300px;
    text-align: center;
  }
  
  .gif-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
  }
  
  .spec-gif-caption {
    margin-top: 0.75rem;
    font-size: 2rem;
    color: #333;
  }
.spec-hero-banner {
  position: relative;
  width: 90%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
  border-radius: 60px; 
  overflow: hidden;
  border: 6px solid white;
  margin: 0 auto;
}

.spec-overlay-content {
  padding: 2rem;
  max-width: 400px;
  text-align: left;
  margin-right: 5%; 
}

.spec-hero-heading {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.spec-hero-paragraph {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.spec-hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}
.spec-full-banner {
    width: 90%;
    height: 70vh;
    display: block;
    overflow: hidden;
    border-radius: 60px; 
    margin: 0 auto;
  }
  
  .spec-full-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
  }

  .spec-banner-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
  }

  .spec-banner-button {
    display: inline-block;
    padding: 4px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    transition: background-color 0.3s ease;
  }
  .spec-banner-button-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}
<style>
  .hover-carousel-container {
    overflow: hidden;
    width: 100%;
  }

  .hover-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content;
  }

  .hover-carousel-item {
    flex: 0 0 25%;
    position: relative;
    box-sizing: border-box;
  }

  .hover-carousel-item a,
  .hover-carousel-item div {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .hover-carousel-item img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .hover-carousel-item img.hover-image {
    opacity: 0;
    z-index: 2;
  }

  .hover-carousel-item:hover img.hover-image {
    opacity: 1;
  }

  .hover-carousel-item:hover img.primary-image {
    opacity: 0;
  }

  @media screen and (max-width: 767px) {
    .hover-carousel-item {
      flex: 0 0 50%;
    }
  }
</style>
/* ===== wrapper ===== */
  .image-hover-gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 20px; /* 30 px white space above gallery */
    background-color: #ffffff;
  }

  /* ===== desktop grid ===== */
  .image-hover-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .image-hover-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .image-hover-item a,
  .image-hover-item .image-wrap {
    display: block;
    width: 100%;
    height: 100%;
  }

  .image-hover-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }

  .image-hover-item img.hover-img { opacity: 0; }
  .image-hover-item:hover img.hover-img { opacity: 1; }
  .image-hover-item:hover img.primary-img { opacity: 0; }

  /* ===== mobile carousel ===== */
  @media (max-width: 767px) {
    .image-hover-gallery {
      display: flex;                 /* horizontal track */
      gap: 10px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }
    .image-hover-item {
      flex: 0 0 50%;                 /* 2 full cards, 3rd peeks */
      max-width: 50%;
      scroll-snap-align: start;
    }
    .image-hover-gallery::-webkit-scrollbar { display: none; }
    .carousel-arrow { display: block; }
  }

  /* ===== navigation arrows (hidden on desktop) ===== */
  .carousel-arrow {
    display: none;                  /* desktop hidden */
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    cursor: pointer; z-index: 5;
    user-select: none;
  }
  .carousel-arrow.left  { left: 6px; }
  .carousel-arrow.right { right: 6px; }