Hi,
I think it's possible only through CSS media query @media
your Shopping cart and Social links you need to add as a menu items with specific class,
and display menu items with specific class only under 768px
should be:
.custom-menu-item {
visibility: hidden;
}
@media (max-width: 768px ) {
.custom-menu-item {
visibility: visible;
}
}
Regards,