/** Shopify CDN: Minification failed

Line 47:4 Unexpected "<"
Line 130:4 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
  }

  .custom-slideshow__wrapper {
    position: relative;
    height: auto;
    min-height: 1px;
  }

  .custom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    z-index: 1;
  }

  .custom-slide img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
  }

  .custom-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

    <style>
    .custom-slideshow {
      position: relative;
      overflow: hidden;
      width: 100%;
      touch-action: pan-y;
    }

    .custom-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      pointer-events: none;
    }

    .custom-slide img {
      width: 100%;
      height: auto;
      display: block;
    }

    .custom-slide.active {
      opacity: 1;
      pointer-events: auto;
      position: relative;
      z-index: 2;
    }

    .custom-slideshow__dots {
      text-align: center;
      margin-top: 10px;
    }

    .custom-slideshow__dot {
      display: inline-block;
      width: 14px;
      height: 14px;
      margin: 0 5px;
      background-color: #2c2c2c;
      border-radius: 50%;
      cursor: pointer;
      transition: box-shadow 0.3s, background-color 0.3s;
      box-shadow: inset 0 0 3px #000;
    }

    .custom-slideshow__dot.active {
      background: radial-gradient(circle at center, #f7e27c, #d4af37 70%);
      box-shadow:
        0 0 4px rgba(212, 175, 55, 0.5),
        0 0 10px rgba(212, 175, 55, 0.7),
        inset 0 0 2px rgba(255, 255, 255, 0.2);
    }

    .custom-slideshow__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.15);
      color: #fff;
      border: none;
      padding: 10px 14px;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      opacity: 0.4;
      transition: background-color 0.3s ease, opacity 0.3s ease;
    }

    .custom-slideshow__arrow:hover {
      background-color: rgba(0, 0, 0, 0.4);
      opacity: 0.9;
    }

    .custom-slideshow__arrow--left {
      left: 10px;
    }

    .custom-slideshow__arrow--right {
      right: 10px;
    }
    </style>