/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 55:2 Unexpected "<"
Line 77:2 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:carousel-slider (INDEX:8) */
<style>
    .carousel-container {
      display: flex;
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .carousel-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
      min-width: calc(100% / 3); /* Show 3 images initially, change to 4 for 4 images */
      box-sizing: border-box;
      padding: 10px;
    }

    .carousel-slide img {
      width: 100%;
      height: auto;
    }

    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
    }

    .prev {
      left: 0;
    }

    .next {
      right: 0;
    }
  </style>
/* END_SECTION:carousel-slider */

/* START_SECTION:image-carousel (INDEX:36) */
<style>
    .carousel-container {
      width: 100%;
      overflow: hidden;
    }
    .image-carousel {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
    }
    .carousel-slide img {
      width: 100%;
      height: auto;
      display: block;
    }
  </style>
/* END_SECTION:image-carousel */