/* Unstore Multilingual Styles */

.unstore-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.unstore-lang-inline .lang-item {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    opacity: 0.7;
}

.unstore-lang-inline .lang-item:hover,
.unstore-lang-inline .lang-item.active {
    opacity: 1;
}

.unstore-lang-inline .lang-separator {
    opacity: 0.3;
    font-size: 14px;
}

/* Footer Integration */
.footer-bottom .unstore-language-switcher .lang-item {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .unstore-language-switcher .lang-item.active,
.footer-bottom .unstore-language-switcher .lang-item:hover {
    color: #fff;
}

.footer-bottom .unstore-language-switcher .lang-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Header Integration */
.header-actions .unstore-language-switcher .lang-item {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .unstore-lang-inline {
        gap: 6px;
    }

    .unstore-lang-inline .lang-item {
        font-size: 13px;
    }
}