/* Estilos para la nube de etiquetas nativa de WP / WooCommerce y H5 */
.widget_tag_cloud .widget-title,
.widget_product_tag_cloud .widget-title,
.woocommerce h5, 
.woocommerce-page h5 {
    font-family: 'Rajdhani', sans-serif !important;
}

.tagcloud, .widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tagcloud a, .widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 8px 16px !important;
    background-color: transparent !important;
    color: #000000 !important;
    border-radius: 0px !important; /* Botones cuadrados */
    text-decoration: none;
    font-size: 14px !important; /* Ignora el tamaño en línea que pone WordPress */
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000000 !important;
    line-height: 1.4;
}

.tagcloud a:hover, .widget_tag_cloud .tagcloud a:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

/* Estilos de botones WooCommerce solicitados */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit {
    background-color: transparent !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
    font-family: 'Rajdhani', sans-serif !important;
    transition: all 0.3s ease !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
    background-color: #87CEEB !important; /* Celeste */
    color: #ffffff !important;
    border-color: #87CEEB !important;
}