/* =========================================
   ULTEUME CUSTOM FOOTER STYLE
   ========================================= */

/* Effet sur les icônes sociales */
footer a img {
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
  filter: brightness(0.9);
}

/* Zoom + légère lueur bleutée au survol */
footer a img:hover {
  transform: scale(1.1);
  opacity: 0.95;
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(100, 149, 237, 0.5));
}

/* Icônes plus petites sur mobile */
@media (max-width: 768px) {
  footer a img {
    height: 28px !important;
    width: 28px !important;
  }
}

/* Option : Centrer la section paiement si tu l'ajoutes plus tard */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
.footer-payments img {
  height: 35px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-payments img:hover {
  transform: scale(1.05);
  filter: brightness(1.3);
}
