.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(18px);
}

.main-nav__inner,
.nav-panel,
.site-nav,
.header-actions,
.header-auth {
    display: flex;
    align-items: center;
}

.main-nav__inner {
    min-height: 82px;
    gap: 14px;
}

.mobile-header-search,
.nav-panel__head,
.nav-panel__identity {
    display: none;
}

.brand {
    display: inline-flex;
    width: 86px;
    height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 200ms var(--ease), filter 200ms var(--ease);
}

.brand:hover {
    filter: saturate(1.08);
    transform: translateY(-1px);
}

.brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: inherit;
}

.site-notices {
    position: fixed;
    top: 96px;
    right: 18px;
    z-index: 950;
    display: grid;
    width: min(360px, calc(100vw - 28px));
    gap: 10px;
    pointer-events: none;
}

.site-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    color: var(--text);
    padding: 14px 14px 14px 16px;
    pointer-events: auto;
}

.site-notice span {
    flex: 1;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.45;
}

.site-notice--success {
    border-color: rgba(34, 197, 94, 0.5);
    background: color-mix(in srgb, #16a34a 14%, var(--surface));
}

.site-notice--error {
    border-color: rgba(239, 68, 68, 0.5);
    background: color-mix(in srgb, #ef4444 14%, var(--surface));
}

.site-notice button {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text) 8%, transparent);
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.site-notice.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.nav-panel {
    min-width: 0;
    flex: 1 1 auto;
    gap: 14px;
}

.site-nav {
    min-width: 0;
    flex: 1 1 auto;
    gap: 6px;
}

.site-nav__link,
.nav-dropdown summary,
.choice-menu summary,
.header-auth a,
.account-menu summary {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--text);
    padding: 0 11px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.site-nav__link:hover,
.nav-dropdown summary:hover,
.choice-menu summary:hover,
.header-auth a:hover,
.account-menu summary:hover,
.nav-dropdown[open] summary,
.choice-menu[open] summary,
.account-menu[open] summary {
    border-color: var(--line);
    background: var(--surface-2);
    color: var(--text);
}

.support-link {
    color: var(--brand);
}

.nav-dropdown,
.choice-menu,
.account-menu {
    position: relative;
}

.nav-dropdown summary,
.choice-menu summary,
.account-menu summary {
    list-style: none;
    cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker,
.choice-menu summary::-webkit-details-marker,
.account-menu summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after,
.choice-menu summary::after,
.account-menu summary::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 8px;
    content: "";
    opacity: 0.66;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms var(--ease);
}

.nav-dropdown[open] summary::after,
.choice-menu[open] summary::after,
.account-menu[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.nav-dropdown__menu,
.choice-menu__dropdown,
.account-menu__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 90;
    display: grid;
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px;
}

.nav-dropdown__menu {
    right: auto;
    left: 0;
}

.nav-dropdown__menu a,
.choice-menu__dropdown a,
.account-menu__dropdown a {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    padding: 9px 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 850;
}

.nav-dropdown__menu a:hover,
.choice-menu__dropdown a:hover,
.account-menu__dropdown a:hover,
.choice-menu__dropdown a.is-active {
    background: var(--surface-2);
    color: var(--text);
}

.site-search {
    position: relative;
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.mobile-header-search {
    display: none;
}

.site-search__field-icon {
    display: none !important;
}

.site-search input {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 95;
    width: min(292px, calc(100vw - 32px));
    min-width: 0;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
    background: var(--surface);
    box-shadow: var(--shadow);
    color: var(--text);
    padding: 0 18px 0 42px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: none;
}

.site-search.is-search-transitioning input {
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.site-search::before {
    position: absolute;
    top: calc(100% + 30px);
    right: 260px;
    z-index: 96;
    width: 14px;
    height: 14px;
    border: 2px solid var(--muted);
    border-radius: 50%;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.site-search::after {
    position: absolute;
    top: calc(100% + 43px);
    right: 255px;
    z-index: 96;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--muted);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: rotate(45deg);
    transition: none;
}

.site-search.is-search-transitioning::before,
.site-search.is-search-transitioning::after {
    transition: opacity 180ms var(--ease);
}

.site-search.is-search-open input {
    border-color: var(--teal);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.site-search.is-search-open::before,
.site-search.is-search-open::after {
    opacity: 1;
}

.site-search button {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 12px 28px rgba(18, 18, 18, 0.06);
    transition: border-color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.site-search button:hover,
.site-search:focus-within button,
.site-search.is-search-open button {
    border-color: var(--teal);
    background: var(--surface);
    box-shadow: 0 16px 36px rgba(18, 18, 18, 0.1);
    transform: translateY(-1px);
}

.site-search button span,
.site-search button span::after {
    position: absolute;
    display: block;
    content: "";
}

.site-search button span {
    top: 12px;
    left: 12px;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.site-search button span::after {
    right: -7px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.header-actions {
    flex: 0 0 auto;
    gap: 8px;
}

.choice-menu summary {
    gap: 8px;
    border-color: var(--line);
    background: var(--surface);
}

.choice-menu__dropdown--wide {
    width: min(360px, calc(100vw - 32px));
    padding: 12px;
}

.choice-code {
    display: inline-flex;
    min-width: 28px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand);
    color: #111111;
    padding: 0 7px;
    font-size: 12px;
    font-weight: 950;
}

.theme-preview {
    display: inline-flex;
    width: 70px;
    min-width: 70px;
    height: 32px;
    flex: 0 0 70px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ddd8cc;
    border-radius: 999px;
    background: #f5f3ee;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(18, 18, 18, 0.18);
}

.theme-preview i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(18, 18, 18, 0.18);
}

.theme-preview i:nth-child(2) {
    background: #171717;
}

.theme-preview i:nth-child(3) {
    background: #fcbd01;
}

.theme-preview--dark {
    background: #f5f3ee;
    border-color: #ddd8cc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(18, 18, 18, 0.18);
}

.theme-preview--dark i {
    background: #191919;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.theme-preview--dark i:nth-child(2) {
    background: #f4f1e8;
}

.theme-preview--dark i:nth-child(3) {
    background: #fcbd01;
}

.choice-menu__dropdown a {
    position: relative;
    align-items: flex-start;
    padding: 12px;
    transition: background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.choice-menu__dropdown--wide a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 16px 44px 16px 14px;
}

.choice-menu__dropdown .theme-preview {
    width: 70px;
    min-width: 70px;
    height: 32px;
    flex-basis: 70px;
}

.choice-menu__dropdown .choice-code {
    flex: 0 0 auto;
}

.choice-menu__dropdown a.is-active::after {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
    transform: translateY(-50%);
}

.choice-menu__dropdown--wide a.is-active {
    border-color: color-mix(in srgb, var(--teal) 28%, var(--line));
    background: color-mix(in srgb, var(--teal) 12%, var(--surface));
}

.choice-menu__dropdown--wide a:hover {
    transform: translateY(-1px);
}

.is-preference-loading .choice-menu,
.is-preference-loading .choice-menu a {
    pointer-events: none;
}

.is-preference-loading .choice-menu summary {
    opacity: 0.62;
}

.choice-menu__dropdown strong {
    display: block;
    padding-right: 18px;
}

.choice-menu__dropdown small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.header-auth {
    gap: 8px;
}

.header-auth__register {
    border-color: var(--brand) !important;
    background: var(--brand);
    color: #111111 !important;
    box-shadow: 0 10px 24px rgba(252, 189, 1, 0.18);
}

.account-menu summary {
    gap: 9px;
    border-color: var(--line);
    background: var(--surface);
}

.account-avatar {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--brand);
    color: #111111;
    font-size: 12px;
    font-weight: 950;
}

.account-avatar--image {
    background: transparent;
}

.account-avatar--image .avatar-fallback {
    display: none;
}

.account-avatar.is-avatar-missing {
    background: var(--brand);
}

.account-avatar.is-avatar-missing .avatar-fallback {
    display: inline-flex;
}

.account-avatar.is-avatar-missing img {
    display: none;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-name {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-toggle,
.nav-backdrop {
    display: none;
}

.nav-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    z-index: 95;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1240px) {
    .site-nav__link,
    .nav-dropdown summary {
        padding-right: 8px;
        padding-left: 8px;
    }

    .language-menu > summary > span:not(.choice-code) {
        display: none;
    }

    .account-name {
        max-width: 82px;
    }
}

@media (max-width: 1160px) {
    .theme-menu > summary > span:not(.theme-preview) {
        display: none;
    }

    .support-link {
        display: none;
    }

    .account-name {
        display: none;
    }
}

@media (max-width: 1080px) {
    html.is-nav-open,
    body.is-nav-open {
        overflow: hidden;
        min-height: 100%;
    }

    .is-nav-open .site-header {
        position: fixed;
        inset: 0;
        z-index: 900;
        border-bottom: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .is-nav-open .main-nav {
        min-height: 100dvh;
    }

    .main-nav__inner {
        min-height: 76px;
        justify-content: space-between;
    }

    .brand {
        margin-right: auto;
        width: 58px;
        height: 48px;
        border-radius: 14px;
        padding: 6px;
        background: var(--surface);
        box-shadow: var(--shadow-soft);
    }

    .nav-toggle {
        display: block;
        order: 3;
        border-radius: 14px;
        box-shadow: var(--shadow-soft);
    }

    .mobile-header-search {
        position: relative;
        display: flex;
        order: 2;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        margin-left: auto;
    }

    .nav-panel {
        position: fixed;
        top: 14px;
        left: 50%;
        z-index: 120;
        display: grid;
        width: min(420px, calc(100vw - 28px));
        max-height: calc(100dvh - 28px);
        height: auto;
        min-width: 0;
        align-items: stretch;
        align-content: start;
        gap: 14px;
        overflow: auto;
        overscroll-behavior: contain;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: var(--surface);
        box-shadow: var(--shadow);
        padding: 18px;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translate(-50%, -12px) scale(0.96);
        transition: none;
    }

    .is-nav-transitioning .nav-panel {
        transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 0s linear 220ms;
    }

    .is-nav-open .nav-panel {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
        transition-delay: 0s;
    }

    .is-nav-open .nav-toggle {
        opacity: 0;
        pointer-events: none;
    }

    .nav-panel__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-panel__head strong {
        color: var(--text);
        font-size: 18px;
        font-weight: 950;
    }

    .nav-panel__head button {
        width: 40px;
        height: 40px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--surface-2);
        color: var(--text);
        font-size: 22px;
        line-height: 1;
    }

    .nav-panel__identity {
        display: flex;
        order: 1;
        min-height: 70px;
        align-items: center;
        gap: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: var(--surface);
        padding: 12px 14px;
        color: var(--text);
        font-size: 18px;
        font-weight: 950;
    }

    .nav-panel__identity img {
        width: 72px;
        height: 42px;
        object-fit: contain;
        border-radius: 10px;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: none;
        border: 0;
        background: rgba(0, 0, 0, 0.52);
        backdrop-filter: blur(5px);
    }

    .is-nav-open .nav-backdrop {
        display: block;
    }

    .site-nav {
        display: grid;
        order: 3;
        gap: 10px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: color-mix(in srgb, var(--surface-2) 52%, var(--surface));
        padding: 14px;
    }

    .site-nav__link,
    .nav-dropdown summary {
        justify-content: space-between;
        width: 100%;
        min-height: 58px;
        border-color: var(--line);
        background: var(--surface);
        border-radius: 16px;
        padding: 0 18px;
        text-align: left;
        font-size: 15px;
    }

    .site-nav > a.site-nav__link::after,
    .nav-dropdown summary::before {
        margin-left: auto;
        color: var(--muted);
        content: "→";
        font-weight: 900;
    }

    .nav-dropdown summary::before {
        order: 2;
    }

    .support-link {
        display: inline-flex;
    }

    .nav-dropdown__menu {
        position: static;
        width: 100%;
        min-width: 0;
        border-radius: 14px;
        box-shadow: none;
        margin-top: 8px;
    }

    .nav-panel > .site-search {
        width: 100%;
        height: 48px;
        flex-basis: auto;
        justify-content: stretch;
        order: 2;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: var(--surface);
        padding: 12px;
        height: 74px;
    }

    .nav-panel > .site-search input {
        position: static;
        width: 100%;
        height: 48px;
        border-radius: 14px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        overflow: visible;
        padding: 0 48px 0 42px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367645d' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16.5 16.5 4 4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 16px center;
        background-size: 20px 20px;
        box-shadow: none;
    }

    .nav-panel > .site-search::before,
    .nav-panel > .site-search::after {
        display: none;
    }

    [data-theme="dark"] .nav-panel > .site-search input {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4d0c7' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16.5 16.5 4 4'/%3E%3C/svg%3E");
    }

    .nav-panel > .site-search button {
        position: absolute;
        top: 15px;
        right: 15px;
        box-shadow: none;
    }

    .header-actions {
        display: grid;
        order: 4;
        gap: 14px;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: color-mix(in srgb, var(--surface-2) 45%, var(--surface));
        padding: 14px;
    }

    .choice-menu summary,
    .account-menu summary,
    .header-auth a {
        width: 100%;
        min-height: 54px;
        border-radius: 16px;
        padding: 0 16px;
    }

    .choice-menu summary,
    .account-menu summary {
        justify-content: space-between;
    }

    .nav-panel .header-auth {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .nav-panel .header-auth a {
        align-items: center;
        justify-content: center;
        border-color: var(--line);
        background: var(--surface);
        box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
        color: var(--text);
        text-align: center;
    }

    .nav-panel .header-auth__login:hover {
        border-color: var(--brand);
        background: color-mix(in srgb, var(--brand) 12%, var(--surface));
    }

    .nav-panel .header-auth a.header-auth__register {
        border-color: var(--brand) !important;
        background: var(--brand) !important;
        color: #111111 !important;
    }

    .choice-menu summary > span:not(.choice-code):not(.theme-preview),
    .account-name {
        display: inline-flex;
    }

    .choice-menu__dropdown,
    .account-menu__dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        border-radius: 16px;
        box-shadow: none;
        margin-top: 8px;
    }

    .choice-menu__dropdown--wide {
        width: 100%;
    }

    .choice-menu__dropdown--wide a {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 76px;
    }

    .mobile-header-search input {
        position: fixed;
        top: 84px;
        right: 14px;
        left: 14px;
        z-index: 180;
        width: auto;
        max-width: none;
        height: 54px;
        padding-right: 18px;
        padding-left: 42px;
        transform-origin: top center;
    }

    .mobile-header-search::before {
        position: fixed;
        top: 103px;
        right: auto;
        left: 31px;
        z-index: 181;
    }

    .mobile-header-search::after {
        position: fixed;
        top: 116px;
        right: auto;
        left: 44px;
        z-index: 181;
    }
}

@media (max-width: 640px) {
    .site-notices {
        top: 76px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .main-nav__inner {
        gap: 10px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .brand {
        width: 54px;
        height: 46px;
    }

    .header-actions {
        gap: 12px;
    }

    .choice-menu summary,
    .header-auth a,
    .account-menu summary {
        min-height: 36px;
        padding: 0 8px;
        font-size: 12px;
    }

    .theme-preview {
        width: 64px;
        min-width: 64px;
        flex-basis: 64px;
        gap: 7px;
    }

    .header-auth {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .nav-panel .choice-menu summary,
    .nav-panel .account-menu summary,
    .nav-panel .header-auth a {
        min-height: 48px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .main-nav__inner {
        min-height: 68px;
        padding-right: 0;
        padding-left: 0;
    }

    .brand {
        width: 52px;
        height: 44px;
    }

    .nav-toggle,
    .mobile-header-search {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .nav-panel {
        top: 8px;
        width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
        gap: 10px;
        border-radius: 20px;
        padding: 12px;
    }

    .nav-panel__identity,
    .site-nav,
    .header-actions,
    .nav-panel > .site-search {
        border-radius: 16px;
    }

    .site-nav,
    .header-actions {
        padding: 10px;
    }

    .site-nav__link,
    .nav-dropdown summary {
        min-height: 50px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .mobile-header-search input {
        top: 76px;
        right: 8px;
        left: 8px;
        width: auto;
    }

    .mobile-header-search::before {
        top: 95px;
        left: 25px;
    }

    .mobile-header-search::after {
        top: 108px;
        left: 38px;
    }
}
