/* SCO Currency Switcher */
.sco-currency-switcher {
    display: inline-block;
    position: relative;
}

.sco-currency-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 160px;
}

.sco-currency-select:hover {
    border-color: #999;
}

.sco-currency-select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Header position */
.sco-currency-switcher-header {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 9999;
}

.sco-currency-switcher-header .sco-currency-select {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer position */
.sco-currency-switcher-footer {
    text-align: center;
    padding: 10px 0;
}

/* Widget */
.widget_sco_currency_widget .sco-currency-select {
    width: 100%;
}

/* Loading state */
.sco-currency-switcher.sco-loading .sco-currency-select {
    opacity: 0.6;
    pointer-events: none;
}

/* Price transition */
.sco-price-updating {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}
