/* ===== ОСНОВА ===== */

.mf-footer {
  padding: 0 24px 24px;
  background: #323232;
  color: #fff;
  margin-top: 0px;
}

.mf-footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.mf-col {
  display: flex;
  flex-direction: column;
}

/* ===== ЗАГОЛОВКИ ===== */

.mf-title {
  margin: 30px 0;
  display: flex;
  justify-content: flex-start;
  background: none;
  border: none;
  padding: 0;
}

.mf-title-inner {
  font-size: 16px;
  font-weight: 600;
  color: #fff;

  transform: translateX(var(--shift, 0px));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
  .mf-footer.scrolled .mf-title-inner {
    transform: translateX(calc(-50% + 0px));
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===== СПИСКИ ===== */

.mf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mf-list li {
  margin-bottom: 8px;
}

.mf-list a {
  color: #bbb;
  text-decoration: none;
}

.mf-list a:hover {
  color: #fff;
}

/* ===== ТЕЛЕФОНЫ ===== */

.mf-phones {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.mf-phones a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
}

/* ===== СОЦСЕТИ ===== */

.container-footer-right {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 23px 0 10px;
  flex-direction: row;
}

.container-footer-right img {
  width: 31px;
}

/* ===== QR ===== */

.mf-qr {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mf-qr img {
  width: 135px;
  height: 135px;
  margin-bottom: 6px;
}

/* ===== НИЗ ===== */

.mf-footer-bottom {
  max-width: 1400px;
  margin: 20px auto 0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mf-footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11pt;
  font-weight: bolder;
  color: #d9d9d9;
}

.mf-age {
  font-size: 14px;
}

.mf-footer-legal {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mf-footer-legal a {
  color: #bbb;
  text-decoration: none;
}

.mf-footer-legal a:hover {
  color: #fff;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .mf-title {
    justify-content: flex-start;
    transform: none;
  }

  .container-footer-right {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
  }

  .mf-qr {
    display: none;
  }

  .mf-social .mf-title {
    display: flex;
  }
  
  .mf-footer-container {
    gap: 24px;
    margin-top: 20px;
  }

  .mf-title {
    margin: 16px 0 10px;
    font-size: 16px;
  }

  .mf-title-inner {
    transform: none !important;
  }
  .mf-list li {
    margin-bottom: 6px;
  }

  .container-footer-right {
  margin-top: 0px;
  }
}

/* Desktop — скрываем "Мы в соцсетях" */
@media (min-width: 769px) {
  .mf-social .mf-title {
    display: none;
  }
}