/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */


/* 
 * Estilos adicionales para el selector limpio
 * Coloca este CSS en Appearance > Customize > Additional CSS
 */

/* Contenedor principal */
.clean-currency-selector {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Opciones de moneda */
.clean-currency-option {
    transition: all 0.3s ease;
}

.clean-currency-label {
    cursor: pointer;
    user-select: none;
}

.clean-currency-label:hover {
    border-color: #007cba !important;
}

/* Estado seleccionado */
.clean-currency-label.selected[style*="USD"] {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 1px #28a745;
}

.clean-currency-label.selected[style*="CUP"] {
    border-color: #007cba !important;
    box-shadow: 0 0 0 1px #007cba;
}

/* Información de conversión */
#clean-conversion-info {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
    .clean-currency-options {
        flex-direction: column !important;
    }
    
    .clean-currency-label {
        padding: 15px !important;
    }
}