/* ═══ XO LOVE — Footer ═══ */

/* CTA Section */
.xo-cta-section { padding: 30px 0; }
.xo-cta-box {
  text-align: center; padding: 30px; border: 1px solid var(--xo-border);
  border-radius: var(--xo-radius); background: var(--xo-bg-card);
}
.xo-cta-box h2 { font-size: 1.2rem; margin-bottom: 8px; }
.xo-cta-box p { color: var(--xo-text-muted); font-size: 0.85rem; margin-bottom: 16px; }

/* Footer */
.xo-footer {
  border-top: 1px solid var(--xo-border);
  padding: 50px 0 30px;
  margin-top: 20px;
}

/* Top: logo + nav + social */
.xo-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--xo-border);
  margin-bottom: 30px;
}
.xo-footer-logo img { height: 42px; width: auto; }
.xo-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.xo-footer-nav a {
  font-size: 0.95rem;
  color: var(--xo-text-secondary);
  font-weight: 500;
  transition: color var(--xo-transition);
}
.xo-footer-nav a:hover { color: var(--xo-accent); }
.xo-footer-social { display: flex; gap: 18px; }
.xo-footer-social a { color: var(--xo-text-muted); transition: color var(--xo-transition); }
.xo-footer-social a:hover { color: var(--xo-accent); }

/* Pills inside footer */
.xo-footer-pills {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--xo-border);
  margin-bottom: 24px;
}
.xo-pills-group {
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.xo-pills-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--xo-text-muted);
  white-space: nowrap;
  min-width: 80px;
  font-weight: 500;
}
.xo-pills-list { display: flex; flex-wrap: wrap; gap: 6px; }
.xo-pill {
  padding: 5px 13px;
  background: var(--xo-bg-elevated);
  border: 1px solid var(--xo-border);
  border-radius: var(--xo-radius-pill);
  font-size: 0.8rem;
  color: var(--xo-text-secondary);
  transition: all var(--xo-transition);
  white-space: nowrap;
}
.xo-pill:hover {
  border-color: var(--xo-accent);
  color: var(--xo-accent);
  background: var(--xo-accent-glow);
}

/* Disclaimer */
.xo-footer-disclaimer {
  padding: 16px 0;
  font-size: 0.72rem;
  color: var(--xo-text-muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--xo-border);
  margin-bottom: 16px;
}

/* Partners */
.xo-footer-partners {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 16px;
  font-size: 0.72rem;
  color: var(--xo-text-muted);
  border-bottom: 1px solid var(--xo-border);
  margin-bottom: 16px;
}
.xo-footer-partners img { height: 30px; width: auto; opacity: 0.6; }
.xo-footer-partners img:hover { opacity: 1; }

/* Bottom */
.xo-footer-bottom {
  font-size: 0.72rem;
  color: var(--xo-text-faint);
  text-align: center;
  padding-top: 8px;
}

@media (max-width: 768px) {
  .xo-footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .xo-footer-nav { justify-content: center; }
  .xo-pills-group { flex-direction: column; gap: 8px; }
  .xo-cta-box { padding: 24px 16px; }
  .xo-footer-partners { flex-wrap: wrap; justify-content: center; }
}
