/* WC Moneda y Pagos - Estilos Frontend */

/* Selector general (shortcode) */
.wcmp-selector-moneda {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wcmp-selector-moneda label {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.wcmp-select-moneda {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    width: auto;
    max-width: 200px;
    appearance: auto;
}

.wcmp-select-moneda:hover {
    border-color: #999;
}

.wcmp-select-moneda:focus {
    outline: none;
    border-color: #7f54b3;
    box-shadow: 0 0 0 1px #7f54b3;
}

/* Selector en checkout */
.wcmp-selector-checkout {
    margin-bottom: 20px;
    padding: 15px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    max-width: 100%;
}

.wcmp-selector-checkout label {
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.wcmp-selector-checkout .wcmp-select-moneda {
    /*flex: 0 1 auto;*/
    min-width: 0;
    width: 100%;
}

