.site-footer {
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  margin-top: auto;
  position: relative;
  z-index: 1000; /* Поверх всего */
  display: flex !important; /* Принудительный показ */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-section {
  flex: 1;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-copyright {
  justify-content: flex-start;
}
.footer-socials {
  justify-content: center;
  gap: 15px;
}
.footer-legal {
  justify-content: flex-end;
  gap: 15px;
}

.social-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.social-link:hover {
  color: #fff;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* На очень узких экранах элементы встанут в столбик */
    gap: 15px;
  }
  .footer-section {
    justify-content: center;
    text-align: center;
  }
}
