/* ============================================
   Chatki Bet — Footer Styles
   ============================================ */

.site-footer {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 0;
  margin-top: 3rem;
}
.footer-top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  padding: 5px 0;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-text); }

/* Footer Disclaimer */
.footer-disclaimer {
  max-width: var(--container-max);
  margin: 32px auto 0;
  padding: 20px 16px;
  border-top: 1px solid var(--color-border);
}
.footer-disclaimer p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-disclaimer .affiliate-disclosure {
  background: rgba(245, 179, 1, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--color-muted);
  margin: 12px 0;
}
.footer-responsible {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.footer-responsible .age-badge-lg {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--color-muted);
}
.footer-legal-links a:hover { color: var(--color-primary); }

/* --- Mobile Bottom Bar --- */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  z-index: 1000;
}
.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 8px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  min-width: 44px;
  min-height: 44px;
  transition: color var(--transition-fast);
}
.bottom-bar-item svg { width: 22px; height: 22px; }
.bottom-bar-item.active { color: var(--color-primary); }
.bottom-bar-item:hover { color: var(--color-text); }

/* --- Responsive --- */
@media (max-width: 600px) {
  .bottom-bar { display: block; }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
