.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
}

.header-menu-btn {
    display: none;
}

.header-container {
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    max-width: 1680px;
    box-sizing: border-box;
}

.header-right .btn {
    background: var(--accent-color);
    padding: 10px 18px;
    border-radius: 20px;
    color: var(--on-background-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 12px;
    transition: all 0.5s;
}

.header-right .btn:hover {
    background: var(--orange-800);
}



.header {
    width: calc(100%);
    height: 64px;
    background: var(--orange-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--orange-100);
    box-sizing: border-box;
}

.lang-select .chip-select-trigger {
    border: 1px solid var(--accent-color);
    background: var(--orange-200);
    color: var(--accent-color);
}