/* =====================================================================
   We Mate — Canonical site-footer stylesheet (single source of truth)
   --------------------------------------------------------------------
   Lifted verbatim from the wm-footer-styles block in /footer.html.
   Every non-product page links THIS file and no longer ships its own
   .site-footer / .footer-* rules, so the footer renders identically
   site-wide: Merriweather wordmark, square-rounded (10px) socials,
   #1B3A4B background, cream text, gold (#D9B871) hover.

   Everything is scoped under .site-footer, so it never collides with the
   rest of a page's CSS and needs no :root variables. Product pages
   (mint/citrus/mango/merch) keep their bespoke bare <footer> and do NOT
   load this file.
   ===================================================================== */
.site-footer { background: #1B3A4B; color: #E5D9C2; padding: 80px 24px 32px; font-family: 'Inter', sans-serif; line-height: 1.6; }
.site-footer a { text-decoration: none; color: inherit; }
.site-footer .footer-container { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 80px; padding-bottom: 56px; }
.site-footer .footer-logo-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.site-footer .footer-logo { font-family: 'Merriweather', Georgia, serif; font-size: 1.6rem; font-weight: 600; color: #F0E6D2; letter-spacing: -.01em; white-space: nowrap; }
.site-footer .footer-tagline { font-size: .95rem; line-height: 1.65; color: #F0E6D2; opacity: .85; margin: 0 0 28px; max-width: 320px; }
.site-footer .footer-socials { display: flex; flex-direction: row; gap: 10px; align-items: center; }
.site-footer .footer-socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(240,230,210,.10); display: flex; align-items: center; justify-content: center; color: #F0E6D2; transition: background .25s ease, color .25s ease, transform .25s ease; }
.site-footer .footer-socials a:hover { background: #D9B871; color: #1B3A4B; transform: translateY(-3px); }
.site-footer .footer-socials svg { width: 18px; height: 18px; }
.site-footer .footer-col-title { font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #F0E6D2; opacity: .6; margin: 0 0 22px; }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 12px; }
.site-footer .footer-links a { font-size: .95rem; color: #F0E6D2; opacity: .85; transition: opacity .2s ease, color .2s ease; }
.site-footer .footer-links a:hover { opacity: 1; color: #D9B871; }
.site-footer .footer-bottom { border-top: 1px solid rgba(240,230,210,.12); padding-top: 28px; max-width: 1240px; margin: 0 auto; }
.site-footer .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-footer .footer-meta { font-size: .85rem; color: #F0E6D2; opacity: .55; margin: 0; letter-spacing: .04em; }
@media (max-width: 768px) {
  .site-footer { padding: 64px 20px 24px; }
  .site-footer .footer-container { grid-template-columns: 1fr; gap: 48px; padding-bottom: 40px; }
  .site-footer .footer-tagline { max-width: none; }
  .site-footer .footer-bottom-container { flex-direction: column; align-items: flex-start; gap: 16px; }
}
