/* Currency Switcher Frontend Styles */
.cse-switcher {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cse-currency-btn {
    padding: 8px 20px;
    border: 1px solid #dee2e6;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cse-currency-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.cse-price-wrapper {
    display: inline-block;
    position: relative;
}

.cse-price {
    transition: opacity 0.3s ease;
}

.cse-hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}