/** Shopify CDN: Minification failed

Line 54:0 Unexpected "<"
Line 102:0 Unexpected "<"

**/

  .collection-carousel {
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: all 0.3s;
}

.carousel-item {
  flex: 0 0 auto;
  margin-right: 20px; /* gap between cards */
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-title {
  margin-top: 10px;
}

.carousel-nav {
  text-align: center;
}

.carousel-prev, .carousel-next {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin: 5px;
  cursor: pointer;
}

.carousel-prev:hover, .carousel-next:hover {
  background: #555;
}


<style>
  html[dir=ltr] .stacked-popups {
      right: 25px;
  }
  .stacked-popups {
      display: none;
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 999;
      background-color: black;
      color: white;
      padding: 20px;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
      border-radius: 5px;
  }
  #modal-popups-0 .button, #modal-popups-0 input {
      border-color: #ffffff;
      color: #ffffff;
      background: transparent;
  }
  .button--outline {
      background-color: transparent;
  }
  .button--fullwidth {
      width: 100%;
  }
  .button {
      text-align: center;
      display: inline-block;
      border-style: solid;
      border-radius: var(--border-radius-buttons);
      transition: all .1s linear;
      font-weight: var(--font-weight-buttons);
      line-height: 1.25;
      cursor: pointer;
      border-width: var(--border-width-buttons);
      color: var(--color-text-main);
      box-shadow: var(--shadow-x-buttons) var(--shadow-y-buttons) var(--shadow-blur-buttons) var(--color-shadow-buttons);
  }

  /* Mobile-specific styles */
  @media (max-width: 768px) {
      .stacked-popups {
          left: 25px;
      }
  }
  
</style>
