.localeswitcher {
    position: relative;
    margin-right: 15px;
}

.localeswitcher .trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: transparent;
    transition: background-color 0.2s;
}

.localeswitcher .trigger:hover {
    background-color: #f5f5f5;
}

.localeswitcher .globeIcon {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.localeswitcher .langCode {
    font-family: "Metropolis Bold";
    font-size: 13px;
    color: #555;
    letter-spacing: 0.5px;
}

.localeswitcher .chevron {
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.localeswitcher .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
}

.localeswitcher .dropdown.show {
    display: block;
}

.localeswitcher .option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.localeswitcher .option:hover {
    background-color: #f5f8ff;
}

.localeswitcher .option.active {
    background-color: #eef3ff;
}

.localeswitcher .option .label {
    font-family: "Metropolis Regular";
    font-size: 14px;
    color: #333;
}

.localeswitcher .option.active .label {
    font-family: "Metropolis Bold";
    color: #0d4962;
}

.localeswitcher .option .checkmark {
    margin-left: auto;
    color: #0d4962;
    font-size: 14px;
    font-weight: bold;
}

/* Dark mode */
.dark .localeswitcher .trigger {
    border-color: #333;
}

.dark .localeswitcher .trigger:hover {
    background-color: #1f2120;
}

.dark .localeswitcher .globeIcon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.dark .localeswitcher .langCode {
    color: rgba(255, 255, 255, 0.87);
}

.dark .localeswitcher .chevron {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.dark .localeswitcher .dropdown {
    background-color: #1f2120;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark .localeswitcher .option:hover {
    background-color: #2a2b2a;
}

.dark .localeswitcher .option.active {
    background-color: #1a2a35;
}

.dark .localeswitcher .option .label {
    color: rgba(255, 255, 255, 0.87);
}

.dark .localeswitcher .option.active .label {
    color: #4db8ff;
}

.dark .localeswitcher .option .checkmark {
    color: #4db8ff;
}
