/**
 * Customer account header entry
 * Loaded for eligible members and signed private-preview guests.
 *
 * @author Igor Yakushev <https://igor-ya.ru/>
 * @since 2026-09
 */

.upheader {
    column-gap: 12px;
}

.upheader .owleys-account-entry {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.upheader .owleys-account-entry__link,
.upheader .owleys-account-entry__link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    color: #3d4151;
    background: transparent;
    transition: color 160ms ease;
}

.upheader .owleys-account-entry__link:hover,
.upheader .owleys-account-entry__link:focus-visible {
    color: #ff8338;
    background: transparent;
}

.upheader .owleys-account-entry__link:focus-visible {
    outline: 2px solid #171717 !important;
    outline-offset: 2px;
}

.upheader .owleys-account-entry__icon {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .upheader {
        column-gap: 8px;
    }

    .upheader > .owleys-account-entry {
        order: 2;
        margin: 0;
    }
}
