/**
 * OCSAPP Marketplace - Footer Component Styles
 * Main footer with links and copyright
 * Last Updated: December 18, 2025
 */

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
  margin: 48px 0 0 0;
  width: 100%;
  position: relative;
  left: 0;
  right: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 5%;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  transition: color var(--transition-base);
  font-size: 14px;
}

.footer a:hover,
.footer a:focus {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 5% 0;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  max-width: 1400px;
  margin-inline: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
