/* Minimalist Horizontal Language Switcher */
.language-switcher-horizontal {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.95);
}

.lang-btn.active {
    color: white;
    font-weight: 500;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.lang-btn:not(:last-child)::before {
    content: '|';
    position: absolute;
    right: -0.125rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .lang-btn.active::after {
        left: 0.6rem;
        right: 0.6rem;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .lang-btn.active::after {
        left: 0.4rem;
        right: 0.4rem;
        height: 1.5px;
    }
}
