/* Mobile only */
@media (max-width: 768px) {
  /* Make the icons sit below the last menu item */
  .hsi-social-icons {
    /* remove absolute positioning */
    position: static !important;
    bottom: auto !important;
    left: auto !important;

    /* flow normally and span full width */
    width: 100% !important;
    margin-top: 12px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;

    /* your existing styling */
    background: transparent !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
  }
  .hsi-social-icons a i {
  font-size: 16px !important;
}
}

/* Desktop: always hide icons */
@media (min-width: 769px) {
  .hsi-social-icons {
    display: none !important;
  }
}