/* Language Switcher Styles */
.languageSwitcher {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 16px;
}

.languageSwitcher__select {
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 2px solid rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Noto Sans JP", sans-serif;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%230c2e57" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 140px;
}

.languageSwitcher__select:hover {
    border-color: var(--navy);
    box-shadow: 0 2px 8px rgba(12, 46, 87, 0.1);
}

.languageSwitcher__select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(12, 46, 87, 0.1);
}

.languageSwitcher__select option {
    padding: 8px;
    font-size: 14px;
}

/* Mobile Menu Variant */
.languageSwitcher--mobile {
    margin: 24px 0 0;
    justify-content: center;
    width: 100%;
}

.languageSwitcher--mobile .languageSwitcher__select {
    width: 100%;
    max-width: 240px;
    padding: 12px 24px;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    font-size: 16px;
}

.languageSwitcher--mobile .languageSwitcher__select:focus {
    border-color: var(--blue);
    background-color: #fff;
}