.currency-switcher {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
}

.currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.currency-btn:hover {
    text-decoration: none;
    background: #f5f5f5;
    color: #111;
}

.currency-btn.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}