.donation-quick-buttons {
    text-align: center;
    padding: 0;
}

.btn-donation-quick {
    padding: 12px 14px;
    background: #ffc107;
    cursor: pointer;
    border-radius: 24px;
    text-align: center;
    color: #3e3e3e;
    margin: 5px;
    font-weight: 600;
    border: none;
}

#mnf-currency-header {
    border-radius: 25px;
}

.btn-donation-quick.active {
    background: #0000ff;
    border-color: #0000ff;
    color: #ffffff;
}

.btn-donation-quick:hover {
    background: #0000ff;
}

.wc_payment_methods.payment_methods.methods li {
    text-align: center !important;
}

/* --- ESTILOS PARA EL SELECTOR DE MONEDA (TIPO DROPDOWN) --- */

.mnf-currency-dropdown-wrapper {
    position: relative;
    max-width: 300px;
    margin: 40px auto;
    text-align: center;
}

/* Encabezado visible */
.mnf-currency-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s;
}

.mnf-currency-header:hover {
    border-color: #0071a1;
}

.mnf-flag-header {
    font-size: 1.5em;
    margin-right: 10px;
}

.mnf-dropdown-arrow {
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.3s;
}

.mnf-currency-header.open .mnf-dropdown-arrow {
    transform: rotate(180deg);
}

/* Menú Desplegable (Contenido) */
.mnf-currency-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #0071a1;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    padding: 10px;
}

/* Campo de Búsqueda */
.mnf-search-box {
    position: relative;
    margin-bottom: 10px;
}

#mnf-currency-search {
    width: 100%;
    padding: 8px 30px 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.mnf-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Opciones individuales */
.mnf-currency-options-list {
    display: flex;
    flex-direction: column;
}

.mnf-currency-option input[type="radio"] {
    display: none;
}

.mnf-currency-option {
    cursor: pointer;
}

.mnf-currency-display {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 3px;
    transition: background-color 0.1s, color 0.1s;
    font-weight: normal;
    justify-content: start;
}

/* Hover/Selección visual */
.mnf-currency-display:hover {
    background-color: #f0f0f0;
}

.mnf-currency-option input[type="radio"]:checked+.mnf-currency-display {
    background-color: #e0f7fa;
    color: #0071a1;
    font-weight: bold;
}

.mnf-currency-flag {
    font-size: 1.5em;
    margin-right: 10px;
}

.select2-selection.select2-selection--single {
    border-radius: 16px !important;
}

/* --- ESTILOS PARA EL BOTÓN DE ENVIAR DONACIÓN --- */

.woocommerce-checkout #payment #place_order,
.woocommerce-checkout #place_order {
    background-color: #ffc107 !important;
    color: #3e3e3e !important;
    border: none !important;
    padding: 15px 16px !important;
    font-size: 1.4rem !important;
    border-radius: 50px !important;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 30px auto !important;
    width: fit-content !important;
    text-transform: uppercase !important;
}

/* Hover effect */
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #place_order:hover {
    background-color: #e0a800 !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Estilo para el icono de corazón dentro del botón */
.woocommerce-checkout #payment #place_order .heart-icon,
.woocommerce-checkout #place_order .heart-icon {
    font-size: 1.8rem !important;
    margin-right: 10px !important;
    line-height: 1;
}