/**
 * MH Simple Currency - Frontend Styles
 */

/* Currency Switcher Container */
.mhsc-currency-switcher {
    display: inline-block;
    position: relative;
    padding-right: 2em !important;
}

/* Dropdown Style */
.mhsc-currency-switcher.mhmc-dropdown select {
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mhsc-currency-switcher.mhmc-dropdown select:hover {
    border-color: #999;
}

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

/* Button Style (optional alternative) */
.mhsc-currency-switch-btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #666;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mhsc-currency-switch-btn:hover {
    color: #333;
    background: #e8e8e8;
    border-color: #999;
}

.mhsc-currency-switch-btn.active {
    color: #fff;
    background: #0073aa;
    border-color: #0073aa;
}

/* Loading State */
.mhsc-currency-switcher.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mhsc-currency-switcher.mhmc-dropdown select {
        font-size: 13px;
        padding: 6px 28px 6px 10px;
    }
}