/** Shopify CDN: Minification failed

Line 154:10 Unexpected "{"
Line 154:19 Expected ":"
Line 154:26 Unexpected "{"
Line 158:10 Unexpected "{"
Line 158:19 Expected ":"
Line 164:10 Unexpected "{"
Line 164:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.colecciones-horizontal-wrapper {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0;
  gap: 10px; /* Espaciado entre los cuadros */
  scroll-behavior: smooth;
}

.colecciones-horizontal-wrapper::-webkit-scrollbar {
  display: none; /* Ocultar el scrollbar */
}

.colecciones-horizontal-item {
  display: inline-block;
  width: 300px; /* Dimensiones del cuadro de la colección */
  height: 300px;
  border-radius: 8px; /* Opcional: esquinas redondeadas */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.colecciones-horizontal-item:hover {
  transform: scale(1.05); /* Efecto al pasar el mouse */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.colecciones-horizontal-item img {
  width: 100%; /* La imagen llena el cuadro */
  height: 100%;
  object-fit: cover; /* Recorta la imagen para llenar el cuadro */
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

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

.carousel-item {
  min-width: 100%; /* En móvil, una imagen ocupa todo el ancho */
  flex-shrink: 0;
  box-sizing: border-box;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-nav button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-nav button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Estilo para escritorio */
@media (min-width: 768px) {
  .carousel-item {
    min-width: 33.33%; /* En escritorio, las 3 imágenes se muestran juntas */
  }
}
.brand-carousel-wrapper {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
  width: 100%;
}

.brand-carousel-container {
  display: inline-flex;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

.brand-carousel-item {
  flex: 0 0 auto;
  display: inline-block;
  margin: 0 10px;
}

.brand-carousel-item img {
  max-height: 80px;
  display: block;
  object-fit: contain;
}

.brand-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.brand-carousel-nav:hover {
  opacity: 1;
}

.brand-carousel-nav-left {
  left: 10px;
}

.brand-carousel-nav-right {
  right: 10px;
}
#section-{{ section.id }} {
  width: 100%;
}

#section-{{ section.id }} .responsive-cover {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#section-{{ section.id }} .responsive-cover__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}