/** Shopify CDN: Minification failed

Line 92:0 Unexpected "<"
Line 244:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:slider-banners-wuala (INDEX:57) */
.slider-banners-wuala {
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 0;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: grab;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Flechas de navegación */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.arrow.left { left: 1rem; } 
.arrow.right { right: 1rem; }

/* Corrección de los dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  background: #000 !important;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}
/* END_SECTION:slider-banners-wuala */

/* START_SECTION:tabs-productos (INDEX:60) */
<style>
  .tabs-productos-wuala {
    padding: 40px 0;
    background-color: #f9fafb;
  }

  .tabs-productos-wuala h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
  }

  .tabs-nav-wuala {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tab-btn-wuala {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .tab-btn-wuala.active {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .tab-slider-container {
    position: relative;
  }

  .tab-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
  }

  .tab-slider::-webkit-scrollbar {
    height: 6px;
  }

  .tab-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .wuala-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 240px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .wuala-card:hover {
    transform: translateY(-4px);
  }

  .wuala-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .wuala-card-media {
    position: relative;
    padding-top: 133%;
    background: #f2f2f2;
  }

  .wuala-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wuala-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .wuala-card-title {
    font-size: 14px;
    font-weight: 500;
    min-height: 3.2em;
  }

  .wuala-card-price {
    font-size: 13px;
    color: #666;
  }

  .wuala-card-soldout {
    font-size: 12px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    width: fit-content;
  }

  .slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .slider-arrow.left {
    left: -16px;
  }

  .slider-arrow.right {
    right: -16px;
  }

  @media (max-width: 768px) {
    .wuala-card {
      width: 70%;
    }

    .slider-arrow {
      display: none;
    }
  }
</style>
/* END_SECTION:tabs-productos */

/* START_SECTION:tabs-products-wuala (INDEX:61) */
/* Estilos del carrusel */
.tabs-container {
  overflow: hidden;
}
.tabs-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tabs-header button {
  background: transparent;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.tabs-header button.active {
  background-color: #000;
  color: white;
}
.products-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.products-carousel .product-card {
  scroll-snap-align: start;
  min-width: 200px;
  flex-shrink: 0;
}
/* END_SECTION:tabs-products-wuala */