/* ── GEDEELDE FOOTER ──
   Gebruikt door src/landingspagina/ en src/webshop/ via footer.js.
   Bevat bewust geen var(--...) kleuren van de hostpagina: landingspagina en
   webshop gebruiken elk hun eigen CSS-variabelen (met andere namen/waarden
   voor --orange), dus de footer werkt alleen overal hetzelfde als de kleuren
   hier letterlijk vastliggen. */

footer { background: #0a2d67; padding: 36px 24px 22px; font-family: 'Barlow', sans-serif; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .09em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.footer-col-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e8a060;
  margin-bottom: 12px;
}
.footer-col-h-spaced { margin-top: 14px; }

.footer-links { list-style: none; }
.footer-links-spaced { margin-top: 20px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; font-weight: 300; color: #a9b6ca; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.frow { font-size: 14px; font-weight: 300; color: #a9b6ca; margin-bottom: 4px; line-height: 1.4; }
.frow a { color: inherit; text-decoration: none; transition: color .2s; }
.frow a:hover { color: #fff; }

.footer-icon-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: #a9b6ca;
  text-decoration: none;
  transition: color .2s;
}
.footer-icon-link:hover { color: #fff; }
.footer-icon-link img { display: block; }

.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
