/* Currency Switcher Styles */
.currency-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.header-top .currency-switcher {
    margin-left: 12px;
}

.header-top .currency-switcher .currency-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 12px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.header-top .currency-switcher .currency-btn.active,
.header-top .currency-switcher .currency-btn:hover {
    background: #f06225;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(240, 98, 37, 0.35);
}

.header-top .currency-switcher .currency-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(240, 98, 37, 0.45);
}

@media (max-width: 767px) {
    .header-top .currency-switcher {
        margin-left: 0;
        margin-top: 8px;
    }

    .header-top .currency-switcher .currency-btn {
        min-width: 40px;
        padding: 4px 10px;
        font-size: 13px;
    }
}
