/* Site-wide footer — light theme matching the rest of clickaboo.ro.
   Loaded on every page; injected as HTML by /footer.js into #site-footer. */
.site-footer {
  background: #fafaf8;
  border-top: 1px solid #ececea;
  margin-top: 64px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #6b7785;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.site-footer-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: #161d1f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer-address p { margin: 0 0 4px; }
.site-footer-address p.site-footer-contact { margin-top: 12px; }
.site-footer-address a,
.site-footer-links a {
  color: #6b7785;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer-address a:hover,
.site-footer-links a:hover {
  color: #1c89a7;
}
.site-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer-links li { margin-bottom: 8px; }
.site-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #ececea;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.site-footer-bottom p { margin: 0; }

@media (max-width: 768px) {
  .site-footer-inner { padding: 36px 20px; }
  .site-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; }
}
