/* =========================
   Footer Section
   ========================= */
.site-footer {
  background: linear-gradient(to bottom, #f3f4f8, #ffffff);
  padding: 3rem 0 2rem;
  font-family: var(--moonexe-font-body, 'Inter', sans-serif);
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 32px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #10D3E2;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.footer-payments img {
  height: 20px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-payments img:hover {
  opacity: 1;
}

.footer-bottom p {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6b7280;
  text-transform: uppercase;
}

/* =========================
   Mobile Responsive (Footer)
   ========================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-logo img {
    height: 28px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-payments {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 1.5rem 0;
  }

  .footer-payments img {
    height: 18px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 24px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-payments img {
    height: 16px;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }
}
