.netstore-account-shortcuts {
    padding: 12px 8px 10px;
    border-top: 1px solid #edf0f4;
}

.netstore-account-shortcuts__label {
    display: block;
    padding: 0 10px 7px;
    color: #8a94a4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.3;
    text-transform: uppercase;
}

.netstore-account-shortcut {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 9px 10px;
    color: #536075;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    border-radius: 8px;
    transition: color .18s ease, background-color .18s ease;
}

.netstore-account-shortcut:hover,
.netstore-account-shortcut:focus {
    color: #2d70b8;
    text-decoration: none;
    background: #f1f6fb;
}

.netstore-account-shortcut__main {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.netstore-account-shortcut__main .fa {
    width: 18px;
    color: #6d8eaf;
    font-size: 15px;
    text-align: center;
}

.netstore-account-shortcut__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 22px;
    padding: 2px 6px;
    color: #66758a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    background: #edf2f7;
}

@media (max-width: 991px) {
    .netstore-account-shortcuts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding: 10px 8px 12px;
    }

    .netstore-account-shortcuts__label {
        grid-column: 1 / -1;
        padding-bottom: 3px;
    }

    .netstore-account-shortcut {
        min-width: 0;
        border: 1px solid #e5ebf1;
        background: #fff;
    }
}

@media (max-width: 620px) {
    .netstore-account-shortcuts {
        grid-template-columns: 1fr;
    }
}
