/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

html body a {
  text-decoration: none !important;
}


a:hover {
    text-decoration: none !important; /* Evita el subrayado al pasar el mouse */
}


/**Oculta el boton de agregar al carrito*/

.woocommerce ul.products li.product .button {
    display: none !important;
}


/* Oculta la palabra disponibilidad de Stock y la pone en color rojo  */

.stock.out-of-stock {
  display: none !important;
}

.woocommerce-js div.product .stock {
    color: #ff0000;
}
/*Cambiar color descuento*/
del .woocommerce-Price-amount.amount {
    text-decoration: line-through;
    text-decoration-color: #ff0000 !important;
    color: #ff0000 !important; /* Esto asegura que el texto también sea rojo */
}







.woocommerce div.product p.price > span + span {
  display: none !important;
}			


