/**
 * Currency Switcher Styles
 */

.rf-currency-switcher-wrapper {
    display: inline-block;
}

.rf-currency-switcher {
    position: relative;
    display: inline-block;
}

.rf-currency-switcher select {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 120px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 30px;
}

.rf-currency-switcher select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.rf-currency-switcher-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.rf-currency-switcher-list li {
    display: inline-block;
    margin-right: 10px;
}

.rf-currency-switcher-list li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rf-currency-switcher-list li a:hover,
.rf-currency-switcher-list li.current a {
    background-color: #007cba;
    color: #fff;
    border-color: #007cba;
}

.rf-currency-switcher-list li.current a {
    font-weight: bold;
}

/* Loading state */
.rf-currency-switcher.rf-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.rf-currency-switcher.rf-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: rf-spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes rf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .rf-currency-switcher select {
        min-width: 100px;
        font-size: 12px;
        padding: 6px 10px;
        padding-right: 25px;
    }
    
    .rf-currency-switcher-list li {
        margin-right: 5px;
    }
    
    .rf-currency-switcher-list li a {
        padding: 6px 10px;
        font-size: 12px;
    }
}

