footer.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000; /* 🧠 raise above mobile menu */
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Desktop footer text */
.desktop-footer {
  display: block;
}

/* Hide mobile icons by default */
.mobile-footer-icons {
  display: none;
}

/* Show mobile icons and hide text on small screens */
@media (max-width: 1098px) {
  .desktop-footer {
    display: none;
  }

  .mobile-footer-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .mobile-footer-icons img {
    width: 40px;
    height: 40px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  .mobile-footer-icons img:hover {
    opacity: 1;
  }
}
