.site-footer {
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.site-footer a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--color-accent);
}

/* Верхняя часть футера */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

/* Колонки */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--color-heading);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-menu,
.footer-contacts,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.footer-contacts li,
.footer-links li {
  margin-bottom: 6px;
}

.footer-bottom {
  background: var(--color-bg-light);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  width: 100%;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom .footer-brand img {
  max-width: 150px;
  height: auto;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom .footer-brand img {
    max-width: 120px;
  }
}
