/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 01 2026 | 14:54:26 */
/* CÓDIGO UNIVERSAL PARA TRADUCIR BOTONES */

/* Cubre botones de productos con variaciones y simples */
.button.product_type_variable, 
.button.product_type_simple, 
.add_to_cart_button {
    font-size: 0 !important;
}

.button.product_type_variable::before, 
.button.product_type_simple::before,
.add_to_cart_button::before {
    content: "Seleccionar opciones" !important;
    font-size: 14px !important; /* Ajusta a tu gusto */
    color: inherit !important;
    display: block !important;
}

/* Si el producto es simple y el botón debería decir "Añadir al carrito" */
.single_add_to_cart_button {
    font-size: 0 !important;
}

.single_add_to_cart_button::before {
    content: "Añadir al carrito" !important;
    font-size: 16px !important;
    display: block !important;
}