/* ============================================================
   footer.css — футер
   ============================================================ */

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(139, 115, 85, 0.5);
  padding: clamp(32px, 5vw, 64px) var(--section-h);
  padding-bottom: max(clamp(32px, 5vw, 64px), env(safe-area-inset-bottom));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Мобиль ---- */
@media (max-width: 768px) {
  .site-footer { padding: 24px 20px 28px !important; }

  .footer-top   { margin-bottom: 16px !important; }
  .footer-links { display: none !important; }

  .footer-bottom {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  /* Скрываем предупреждение о противопоказаниях на мобиле */
  .footer-bottom > div:nth-child(2) { display: none !important; }
}
