/** Shopify CDN: Minification failed

Line 55:34 Unexpected "{"
Line 55:43 Expected ":"
Line 55:50 Unexpected "{"
Line 56:34 Unexpected "{"
Line 56:43 Expected ":"
Line 56:50 Unexpected "{"

**/
/* START_SECTION:mobile_category (INDEX:74) */
.scroll-blocks-section {
  display: none;
  width: 100%;
}

.inline-richtext.h2 {
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.inline-richtext.h2 span {
  color: var(--primary-font-color);
}

/* ===== WRAPPER ===== */
.scroll-blocks-wrapper {
  position: relative;
  width: 100%;
}

/* ===== ARROWS ===== */
.scroll-swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
  line-height: 1;
  user-select: none;
}


.scroll-swiper-arrow.scroll-prev-{{ section.id }} { left: 6px; }
.scroll-swiper-arrow.scroll-next-{{ section.id }} { right: 6px; }

/* ===== IMAGE WRAPPER ===== */
.scroll-img-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  display: block;
  transition: opacity .4s ease, transform .4s ease;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.scroll-img-wrapper:hover .hover-img { opacity: 1; }
.scroll-img-wrapper:hover .main-img  { opacity: 0; }
.scroll-img-wrapper:hover img        { transform: scale(1.06); }

.mobile-img { display: none; }

/* ===== DESKTOP (576px+) ===== */
@media (min-width: 576px) {

  .scroll-blocks-section {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .myScrollSwiper {
    width: 100%;
    overflow: hidden;
  }

  .scroll-block-item {
    text-align: center;
  }

  .mobile-text { display: none; }
  .mobile-img  { display: none !important; }

  .desktop-text {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    /* left: 15%; */
    transform: translateX(-50%);
    background: rgba(190,190,190,35%);
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .scroll-block-item a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f7f7f7;
  }

  .scroll-block-item img {
    width: 100%;
    height: auto;
    display: block;
  }

}

/* ===== MOBILE (max 575px) ===== */
@media (max-width: 575px) {

  .scroll-swiper-arrow { display: none; }

  .scroll-blocks-section {
    display: block;
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
  }

  .myScrollSwiper {
    width: 100%;
    overflow: hidden;
  }

  .mobile-text {
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
  }

  .desktop-text { display: none; }

  .scroll-block-item { text-align: center; }

  .scroll-block-item a {
    display: block;
    max-width: 80px;
    margin: 0 auto;
    border: 1px solid rgba(128,128,128,0.15);
    border-radius: 50%;
    overflow: hidden;
  }

  .main-img,
  .hover-img { display: none; }

  .mobile-img {
    display: block;
    width: 100%;
    border-radius: 50%;
  }

  .inline-richtext.h2 { display: none; }

}
/* END_SECTION:mobile_category */
