/* Site Footer — ported from sections/footer.liquid */

.site-footer {
  background: var(--wp--preset--color--accent, #0A0A0A);
  color: var(--wp--preset--color--surface, #FFFFFF);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.site-footer .footer-brand .logo {
  text-decoration: none;
  color: var(--wp--preset--color--surface, #FFFFFF);
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer .footer-brand .logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* Social links */
.site-footer .social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.site-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--wp--preset--color--surface, #FFFFFF);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer .social-link:hover {
  background: var(--wp--preset--color--accent-2, #0048FF);
  color: var(--wp--preset--color--surface, #FFFFFF);
}

/* Nav columns */
.site-footer .footer-col h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--surface, #FFFFFF);
  margin: 0 0 1.25rem;
}

.site-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-col ul li {
  margin-bottom: 0.625rem;
}

.site-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer .footer-col ul li a:hover {
  color: var(--wp--preset--color--surface, #FFFFFF);
}

/* Payment icons */
.site-footer .mt-lg {
  margin-top: 1.75rem;
}

.site-footer .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.site-footer .footer-logo-svg {
  display: block;
  margin-bottom: 1rem;
}

.site-footer .payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer .payment-icon svg {
  height: 28px;
  width: auto;
  display: block;
}

/* Legal bar */
.site-footer .legal {
  padding-top: 2rem;
  text-align: center;
}

.site-footer .legal p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
