
/* Language switcher in header (added by Novamira) */
.hpp-header-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}
.hpp-lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #7A7A7A;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.hpp-lang-link:hover {
    color: #111111;
}
.hpp-lang-link.is-active {
    color: #E4459C;
    border-color: #E4459C;
}