/* Мобильные стили для футера (ширина экрана < 768px) */

/* Оптимизируем отступы для мобильных устройств */
.site-footer {
  padding: 0;
  margin-bottom: 56px; /* Учитываем высоту мобильной навигационной панели */
}

/* Верхняя часть футера - сжимаем для мобильных */
.footer-top {
  padding: 30px 0 20px;
}

/* Уменьшаем размеры заголовков */
.footer-heading {
  font-size: 16px;
  margin-bottom: 18px;
}

/* Уменьшаем размер и отступы для контактной информации */
.footer-contact-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Уменьшаем отступы для пунктов меню */
.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  font-size: 14px;
}

/* Оптимизируем нижнюю часть футера */
.footer-bottom {
  padding: 12px 0;
}

.copyright {
  font-size: 12px;
  text-align: center;
}

/* Адаптируем социальные ссылки */
.social-links {
  justify-content: center;
  margin-top: 10px;
}

.social-link {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

/* Стили для упрощенного мобильного футера */
.mobile-footer {
  display: block;
  padding: 15px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.mobile-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-footer .copyright {
  font-size: 12px;
  margin: 0;
}

.mobile-contact a {
  width: 28px;
  height: 28px;
  font-size: 14px;
}



/* Скрываем десктопный хедер на мобильных */
.bottom-header {
  display: none;
}

/* Стили для фиксированного мобильного хедера */
.fixed-header.mobile {
  background-color: #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Стили для мобильной версии шапки */
.site-header.top-header {
    padding: 10px 0;
}

.site-logo {
    display: inline-block;
}

.site-logo .mobile-logo {
    height: 40px;
    width: auto;
}

/* Делаем основной футер скрытым на мобильных */
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0 0;
  }
  
  .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-company, 
  .footer-contacts, 
  .footer-links {
    margin-bottom: 25px;
  }
  
  .footer-nav-list {
    column-count: 1;
  }
  
  .copyright {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .mobile-footer-content {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  
  .mobile-contact {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  
  .mobile-contact a {
    margin: 0 10px;
  }

  /* Дополнительные стили для уменьшения высоты футера на мобильных */
  .site-footer {
    padding: 15px 0 0 !important; /* Еще больше уменьшаем отступы для мобильных */
  }
  
  .footer-top {
    padding: 8px 0 10px !important;
  }
  
  .footer-heading {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  
  .footer-heading:after {
    margin-top: 4px !important;
    height: 1px !important;
    width: 30px !important;
  }
  
  .footer-company p {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  
  .footer-contact-list li {
    margin-bottom: 5px !important;
    font-size: 12px !important;
  }
  
  .footer-nav-list li {
    margin-bottom: 4px !important;
  }
  
  .footer-nav-list a {
    font-size: 12px !important;
  }
  
  .footer-company, 
  .footer-contacts, 
  .footer-links {
    margin-bottom: 15px !important;
  }
  
  .footer-bottom {
    padding: 8px 0 !important;
    margin-top: 10px !important;
  }
  
  /* Уменьшаем размер логотипа на мобильных */
  .footer-logo img {
    max-width: 100px !important;
  }
  
  /* Дополнительное уменьшение промежутка между footer-top и footer-bottom для мобильной версии */
  .footer-bottom {
    margin-top: 0 !important; /* Убираем отступ сверху */
    padding-top: 5px !important; /* Минимальный отступ для разделительной линии */
    border-top-width: 1px !important;
  }
}

/* Специальные стили для очень маленьких экранов */
@media (max-width: 370px) {
  .site-footer {
    padding: 20px 0 0;
  }
  
  .footer-heading {
    font-size: 15px;
  }
  
  .footer-contact-list li,
  .footer-nav-list li {
    font-size: 13px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
}

/* Дополнительные стили для адаптации отображения контента */
.footer-company {
  margin-bottom: 25px;
}

.footer-company p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-logo img {
  max-width: 120px;
}

/* Адаптируем строки с копирайтом и соцсетями */
.footer-bottom .row {
  flex-direction: column;
  text-align: center;
}

.footer-bottom .col-md-6 {
  width: 100%;
  margin-bottom: 10px;
}
