/* ===== Footer Base Enhancement ===== */
.bg-gray-50 {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.default_footer {
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ===== Footer Links ===== */
.default_footer_link a {
  position: relative;
  transition: color 0.25s ease;
}

.default_footer_link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #111827;
  transition: width 0.3s ease;
}

.default_footer_link a:hover::after {
  width: 100%;
}

/* ===== Social Icons ===== */
.default_footer_social_link {
  transition: transform 0.25s ease, color 0.25s ease;
}

.default_footer_social_link:hover {
  transform: translateY(-4px) scale(1.1);
  color: #111827;
}

/* ===== Store Info ===== */
.footer_store_info a {
  transition: color 0.2s ease;
}

.footer_store_info a:hover {
  color: #111827;
}

/* ===== Slide In Animation ===== */
.animate-slideIn {
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-slideIn.visible {
  transform: translateY(0);
  opacity: 1 !important;
}

/* ===== Footer Text ===== */
footer p {
  letter-spacing: 0.2px;
}

/* ===== Mobile Tweaks ===== */
@media (max-width: 640px) {
  .default_footer_links_container {
    gap: 8px;
  }

  .footer_store_info {
    text-align: center;
  }
}
