/** Shopify CDN: Minification failed

Line 167:10 Unexpected "{"
Line 167:19 Expected ":"
Line 172:12 Unexpected "{"
Line 172:21 Expected ":"
Line 173:16 Expected identifier but found whitespace
Line 173:18 Unexpected "{"
Line 173:27 Expected ":"
Line 173:53 Expected ":"
Line 174:19 Expected identifier but found whitespace
Line 174:21 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collage-three {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.collage-three img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.collage-three img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Aseguramos que, en desktop, el contenedor .collage-three-row use el mismo gap de 20px */
.collage-three-row {
  display: flex;
  gap: 20px;
}

/* Ajuste para notebooks */
@media screen and (max-width: 1600px) {
  .collage-three img {
    max-width: 420px;
  }
}

@media screen and (max-width: 1200px) {
  .collage-three img {
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  /* En móvil, el contenedor principal pasa a una columna */
  .collage-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* La primera imagen ocupa toda la primera fila */
  .collage-three > a:first-child {
    grid-column: 1;
  }

  /* En móvil, el contenedor de las dos imágenes inferiores se muestra también en fila */
  .collage-three-row {
    display: flex;
    gap: 12px;
  }

  .collage-three-row a {
    flex: 1 1 0;
  }

  .collage-three-row img {
    width: 100%;
    height: auto;
    max-width: none;
  }
}
.product-description-specs {
  display: flex;
  flex-wrap: nowrap; /* clave para que NO se vayan abajo */
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px; /* ajustá esto según tu gusto */
  font-family: "DIN Next", sans-serif !important;
}

.product-description-text,
.product-description-specs-list {
  width: calc(50% - 20px); /* 50% menos la mitad del gap */
}

.product-description-text {
  padding-right: 0;
  font-weight: 500; /* o 700 para aún más negrita */
  font-family: "DIN Next", sans-serif !important;
}

.product-description-specs-list {
  background: #e0e0e0;
  padding: 24px;
  border-radius: 8px;
  font-family: "DIN Next", sans-serif !important;
  

}
  .product-description-text ul {
  padding-left: 0;
  margin-left: 0;
  list-style: disc inside;
    font-family: "DIN Next", sans-serif !important;
}


.product-description-specs-list h4 {
  margin: 0 0 8px;
  font-weight: bold;
}

.product-description-specs-list .spec-row {
  display: grid;
  grid-template-columns: 140px 1fr; /* columna fija + columna flexible */
  gap: 8px;
  border-bottom: 1px solid #c2c2c2;
  padding: 20px 0;
}

  .product-description-specs-list .spec-row:last-child {
  border-bottom: none;
}

.product-description-specs-list .spec-label {
  font-weight: bold;
  color: #333;
  font-family: "DIN Next", sans-serif !important;
}

.product-description-specs-list .spec-value {
  color: #858585;
}

/* Responsive: en mobile se apilan */
@media screen and (max-width: 768px) {
  .product-description-specs {
    flex-direction: column;
    font-size: 12px; /* ajustá esto según tu gusto */
  
  }

  .product-description-text,
  .product-description-specs-list {
    width: 100%;
  }

  .product-description-specs-list {
    margin-top: 10px;
  }
}
.section-{{ section.id }}-padding {
  padding-top: calc({{ section.settings.padding_top }}px * 0.75);
  padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.75);
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
.title-button-image__wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra horizontalmente */
  justify-content: center; /* centra verticalmente dentro del contenedor */
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 60vh; /* asegura un bloque alto para centrar mejor */
}
.title-button-image__image img {
  width: 100%;
  height: auto;
  display: block;
}

  .rich-text__heading {
  font-size: 12rem; /* Cambiá este valor según el tamaño deseado */
  line-height: 1.2;
}