/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain: Avada
*/

/* Estilo base para los botones */
button, 
.woocommerce .products .button, 
.fusion-quick-view, 
.show_details_button {
    padding: 10px 20px;
    background-color: #28a745; /* Verde por defecto */
    color: white;
    border: none;
    border-radius: 4px; /* Esquinas redondeadas */
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px; /* Tamaño del texto */
    font-weight: bold;
    text-transform: uppercase; /* Texto en mayúsculas */
    width: 100%; /* Ocupar todo el ancho */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones suaves */
    box-sizing: border-box; /* Asegura que los paddings no afecten el tamaño */
    margin: 5px 0; /* Espaciado entre botones */
}

/* Variaciones de colores según el tipo de botón */
.woocommerce .products .button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background-color: #28a745; /* Verde brillante */
}

.woocommerce .products .button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
    background-color: #218838; /* Verde más oscuro */
    transform: scale(1.02);
}

.fusion-quick-view, .show_details_button {
    background-color: #007bff; /* Azul vibrante */
}

.fusion-quick-view:hover, .show_details_button:hover {
    background-color: #0056b3; /* Azul más oscuro */
    transform: scale(1.02);
}

/* Estilo general para contenedor de botones */
.product-buttons a {
    width: 100%!important;
    max-width: 100%!important;
   
}