/* Footer – igual que Luxur (checkout.html) */

.footer-luxur {
  color: #fff;
}

.footer-links a {
  font-weight: 600;
  opacity: .9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-socials-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .75;
  text-align: center;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff !important;
  background: linear-gradient(45deg, #ff004c, #ffb200, #00ffd5);
  background-size: 300% 300%;
  box-shadow:
    0 0 10px rgba(255, 178, 0, .6),
    0 0 20px rgba(255, 0, 76, .5);
  animation: footerGlow 4s linear infinite;
  transition: transform .25s ease;
  text-decoration: none !important;
}

.social-btn:hover {
  transform: scale(1.15) rotate(8deg);
  color: #fff !important;
}

.social-btn.fb {
  filter: hue-rotate(210deg);
}

.social-btn.ig {
  filter: hue-rotate(320deg);
}

.social-btn.tt {
  filter: hue-rotate(120deg);
}

@keyframes footerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffb200, transparent);
  margin: 40px 0;
}

.footer-copy-bottom {
  font-weight: 700;
  letter-spacing: .5px;
}

@media (max-width: 575.98px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
