/** Shopify CDN: Minification failed

Line 126:5 Cannot use type selector "-prev" directly after nesting selector "&"
Line 143:5 Cannot use type selector "-prev" directly after nesting selector "&"
Line 179:5 Cannot use type selector "-active" directly after nesting selector "&"
Line 183:5 Cannot use type selector "-thumb-active" directly after nesting selector "&"
Line 260:0 Expected "}" to go with "{"

**/
/* ====== THUMB NAV BUTTONS (no font, custom chevrons) ====== */
.swiper-button-next-thumb,
.swiper-button-prev-thumb {
  position: absolute;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  transform: rotate(90deg); /* keep vertical layout behavior */
}

/* Placement tweaks */
.swiper-button-prev-thumb {
  margin: 8px 10px -5px 0;
}
.swiper-button-next-thumb {
  margin: 0 0 -4px 42px;
}

/* Remove Swiper’s text fallback entirely */
.swiper-button-next-thumb::after,
.swiper-button-prev-thumb::after {
  content: '';
}

/* Draw simple chevrons */
.swiper-button-next-thumb::before,
.swiper-button-prev-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
}

/* Prev = left chevron; will rotate to UP because parent is rotated 90deg */
.swiper-button-prev-thumb::before {
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* Next = right chevron; will rotate to DOWN because parent is rotated 90deg */
.swiper-button-next-thumb::before {
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Disabled state */
.swiper-thumbs .swiper-button-prev-thumb.swiper-button-disabled,
.swiper-thumbs .swiper-button-next-thumb.swiper-button-disabled {
  opacity: 0.5;
}

/* Size for chevrons when inside .swiper-thumbs */
.swiper-thumbs .swiper-button-prev-thumb::before,
.swiper-thumbs .swiper-button-next-thumb::before {
  width: 14px;
  height: 14px;
}

/* ====== PRODUCT IMAGE / GALLERY ====== */
.product-image.img_producto {
  background-size: contain;
  background-position: top;
}

.img_producto_container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.img_producto img {
  display: none;
}

.img_producto {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
}

.gallery-container {
  position: sticky;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  top: 3rem;
}

.swiper-wrapper .swiper-slide-active img:hover {
  transform: scale(1.1);
}

.gallery-main .product-image img {
  width: 100%;
  transition: transform .5s ease;
}

.gallery-main {
  width: 600px;
  height: 500px;
  box-shadow: 0 50px 75px 50px rgba(#1e1e1e, 0.18);
  border: 1px solid #e9e9e9;

  .swiper-button {
    &-prev,
    &-next {
      position: absolute;
      bottom: 0;
      right: 0;
      top: auto;
      left: auto;
      height: 75px;
      width: 40px;
      color: #e9e9e9;
      background: #1e1e1e;

      &::after {
        font-size: 12px;
      }
    }

    &-prev {
      right: 40px;
      border-right: 1px solid #e9e9e9;
    }
  }
}

.gallery-title {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Epilogue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(#000, 0.3);
  color: #ffffff;

  .swiper-slide-active & {
    animation: slide-in 0.3s ease-in both;
  }
}

.gallery-thumbs {
  order: -1;
  width: 100px;
  height: 300px;
  margin-right: 15px;
  padding-left: 15px;

  .swiper-slide {
    img {
      transition: 0.3s;
    }

    &-active {
      opacity: 0.9;
    }

    &-thumb-active {
      opacity: 1;

      img {
        margin-left: -15px;
      }
    }
  }
}

.swiper-thumbs .product-image {
  border: solid 1px #ddd;
  overflow: hidden;
  cursor: pointer;
}

.swiper-thumbs .product-image img {
  max-width: 76px;
  margin: 0 auto;
  display: table;
  padding: 5px;
  box-sizing: border-box;
}

.gallery-main {
  width: 100%;
  max-width: 440px !important;
  overflow: hidden;
  border: 0;
}

.gallery-main .product-image img {
  width: 100%;
}

.swiper-thumbs .swiper-slide {
  height: 90px !important;
  margin-bottom: 10px;
}

/* Thumb button positioning for the vertical rail */
.swiper-thumbs .swiper-button-prev-thumb {
  bottom: 1px !important;
  left: 26px;
}
.swiper-thumbs .swiper-button-next-thumb {
  bottom: 0 !important;
  margin-left: 50px;
}

/* ====== RESPONSIVE ====== */
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .swiper-wrapper .product-image.img_producto {
    background-size: contain !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .gallery-main {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-wrapper .product-image {
    transform: scale(1) !important;
  }

  .swiper-wrapper .swiper-slide-active img:hover {
    transform: scale(1);
  }

  .gallery-thumbs {
    display: none;
  }

  .img_producto img {
