/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2025 | 17:00:23 */
.product_type_simple{
	width: 90%;
}

.attr-alert-warning{
	color:white;
}

/* READ MORE FONT */
.ekit-woo-add-cart-text{
	font-family: "Avenir Next LT Pro", Sans-serif;
}

/* 2 Columns en moviles */

@media only screen and (max-width: 767px) {
  .ekit-wc-products-wrapper {
    --ekit-woo-mobile-columns: 2 !important;
  }
}

/* Altura igual para las cards de producto */

/* Tamaño uniforme y compacto para todas las cards */
.ekit-wc-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 380px; /* puedes reducirlo si quieres más compacto */
  overflow: hidden;
}

/* Interior de la tarjeta adaptado */
.ekit-wc-product-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

/* Imágenes cuadradas y contenidas */
.ekit-wc-product-image {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* Descripción ocupa el espacio restante de forma ordenada */
.ekit-wc-product-desc {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding-top: 10px;
}

/* Título más compacto */
.ekit-wc-product-title {
  font-size: 14px;
  line-height: 1.3;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Botón ajustado y visible abajo */
.ekit-wc-add-to-cart {
  margin-top: auto;
  text-align: center;
}

/* Si usas un botón tipo texto, estilízalo */
.ekit-wc-add-to-cart a {
  font-size: 13px;
  padding: 6px 10px;
}

/* Acomoda las etiquetas de los materiales en tres columnas en movil */
@media only screen and (max-width: 767px) {
  .e-n-tabs-heading {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* espacio entre columnas, puedes ajustarlo */
  }

  .e-n-tab-title {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    min-height: 50px; /* asegura que todas las tabs tengan altura uniforme */
  }
}






