/** Shopify CDN: Minification failed

Line 51:10 Expected identifier but found whitespace
Line 51:12 Expected identifier but found "%"
Line 51:51 Unexpected "{"
Line 51:52 Unexpected "{"
Line 51:61 Expected ":"
Line 51:107 Unexpected "{"
Line 51:108 Expected identifier but found "%"
Line 51:117 Unexpected "{"
Line 51:118 Unexpected "{"
Line 51:127 Expected ":"
... and 3 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-carrousel-image (INDEX:13) */
.gpt-multi-image-carousel {
    position: relative;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px 0;
    white-space: nowrap;
  }

  .carousel-wrapper {
    overflow-x: scroll;
    display: flex;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* Para Internet Explorer y Edge */
    scrollbar-width: none; /* Para Firefox */
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari y Opera */
  }

  .carousel-container {
    display: flex;
    gap: 10px;
    width: max-content;
  }

  .carousel-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: {% if request.device_type == 'mobile' %}{{ section.settings.slide_width_mobile | default: 100 }}{% else %}{{ section.settings.slide_width_desktop | default: 150 }}{% endif %}px;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
/* END_SECTION:custom-carrousel-image */

/* START_SECTION:custom-grid-navbar (INDEX:15) */
.gpt-collection-flex.mobile-only {
  display: block;
}

@media screen and (min-width: 768px) {
  .gpt-collection-flex.mobile-only {
    display: none !important;
  }
}

.gpt-collection-flex .collection-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.gpt-collection-flex .collection-item {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 8px;
}

.gpt-collection-flex .collection-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.gpt-collection-flex .collection-item a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
/* END_SECTION:custom-grid-navbar */

/* START_SECTION:inspolook-carousel-v2 (INDEX:27) */
.gpt-multi-image-carousel {
    position: relative;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px 0;
    white-space: nowrap;
  }

  .carousel-wrapper {
    overflow-x: scroll;
    display: flex;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* Para Internet Explorer y Edge */
    scrollbar-width: none; /* Para Firefox */
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari y Opera */
  }

  .carousel-container {
    display: flex;
    gap: 10px;
    width: max-content;
  }

  .carousel-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 300px; /* Ancho para escritorio */
  }

  @media (max-width: 767px) {
    .carousel-slide {
      width: 200px; /* Ancho para dispositivos móviles */
    }
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
/* END_SECTION:inspolook-carousel-v2 */