/* ===================================================================
   FOOTER SOCIAL LINKS MODULE
   ================================================================= */

/* Social section configuration */
.meloopets-footer .footer-social h4 {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #F4BE0C;
  position: relative;
}

.meloopets-footer .footer-social h4 ::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #f26722;
}

/* Social links container */
.meloopets-footer .social-links {
  display: flex;
  gap: 15px;
}

/* Individual social link styling */
.meloopets-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3a6b1e;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Ensure SVG icons maintain white color */
.meloopets-footer .social-link svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  transition: none !important;
}

/* Hover effects */
.meloopets-footer .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Maintain icon color in all states */
.meloopets-footer .social-link:hover svg,
.meloopets-footer .social-link svg,
.meloopets-footer .social-link:focus svg,
.meloopets-footer .social-link:active svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Specific social platform hover states */
.meloopets-footer .social-link.facebook:hover {
  background: #3b5998;
  border-color: #3b5998;
}

.meloopets-footer .social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
}

.meloopets-footer .social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.meloopets-footer .social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}