/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 19 2026 | 08:21:07 */
/* Alinea todo en columna y empuja el contenido hacia arriba */
.product-cat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Justifica todo al inicio (arriba) */
    text-align: center !important;
    height: 100% !important; /* Asegura que todas las tarjetas midan lo mismo */
}

/* Contenedor de la imagen centrado horizontalmente */
.product-cat .cat-image,
.product-cat .cat-image a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 85% !important;
}

/* Evita desvíos y añade separación con el texto de abajo */
.product-cat .cat-image img {
    margin: 0 auto 15px auto !important; /* 15px de espacio abajo del círculo */
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Centra el bloque de textos inferior */
.product-cat .cat-contents {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}