/** Shopify CDN: Minification failed

Line 81:18 Unexpected "{"
Line 81:27 Expected ":"
Line 86:18 Unexpected "{"
Line 86:27 Expected ":"

**/
/* --- Estilos para Colecciones con Pestañas --- */
.tab-navigation {
  margin-bottom: 20px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-navigation::-webkit-scrollbar {
  display: none;
}

.tab-navigation__scroller {
  display: flex;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  padding-bottom: 15px;
}

.tab-navigation__button {
  display: inline-block;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #764896;
  background-color: #ffffff;
  border: 2px solid #764896;
  border-radius: 24px 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.tab-navigation__button:hover {
  background-color: #764896;
  color: #ffffff;
  border-color: #764896;
}

.tab-navigation__button.is-active {
  background-color: #764896;
  color: #ffffff;
  border-color: #764896;
}

.tab-panel.is-hidden {
  display: none;
}

.collection__view-all {
  margin-top: 40px;
}

.product-grid--hide-prices .price {
  display: none;
}

/* --- Estilos para Grid de 5 Columnas en Pestañas --- */
.product-grid-5-columns {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.5rem; /* Espacio entre productos */
}

/* Estilo de las tarjetas para que el texto esté centrado */
.product-grid-5-columns .card__content {
text-align: center;
}

/* --- Ajustes de centrado para la sección de pestañas --- */

/* Centra el grupo de tarjetas cuando hay menos de 5 productos */
#shopify-section-{{ section.id }} .product-grid {
  justify-content: center;
}

/* Centra el texto del título en las tarjetas de producto */
#shopify-section-{{ section.id }} .card__content {
  text-align: center;
}

/* --- Responsive --- */

/* Para tabletas (menos de 990px) */
@media screen and (max-width: 990px) {
.product-grid-5-columns {
grid-template-columns: repeat(3, 1fr);
}
}

/* Para móviles (menos de 750px) */
@media screen and (max-width: 749px) {
.product-grid-5-columns {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}
/* --- Estilos del Banner Apilado (Stacked Collage) --- */

/* --- PISO DE ARRIBA --- */
.stacked-collage__top-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-block {
  flex: 1 1 50%;
}

.top-block__image-pair {
  flex: 1 1 50%;
  display: flex;
  gap: 1.5rem;
}

.image-pair__wrapper {
  flex: 1;
  min-width: 0;
}

.image-pair__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Estilos del texto y botón */
.content-block__heading {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.content-block__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 450px;
}

/* --- PISO DE ABAJO --- */
.stacked-collage__bottom-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bottom-block__image-wrapper {
  /* Contenedor de cada imagen de abajo */
}

.bottom-block__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

/* --- Estilos Genéricos y Responsivos --- */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  min-height: 200px;
}

.placeholder-image svg {
  width: 40%;
  height: 40%;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .stacked-collage__top-block {
    flex-direction: column;
  }

 .stacked-collage__bottom-block {
  grid-template-columns: repeat(2, 1fr);
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

  .content-block {
    text-align: center;
  }

  .content-block__text {
    margin-left: auto;
    margin-right: auto;
  }

  .top-block__image-pair {
    display: none;
  }
}