/* ========================= FOOTER ========================= */

.footer {
  flex-shrink: 0; /* ДОДАНО: не дає футеру стискатися */
  background-color: #790000;
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
  width: 100%;
}

.footer__inner {
  display: flex;
  flex-direction: row; /* 4 колонки на десктопі за замовчуванням */
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer__company,
.footer__nav,
.footer__contacts {
  flex: 1;
}

.footer__logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__socials img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.footer__socials img:hover {
  transform: scale(1.1);
}

.footer__phones a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer__phones a:hover {
  text-decoration: underline;
}

.footer__title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav li {
  margin-bottom: 10px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__address {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: normal;
}

.footer__email {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer__schedule p {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  max-width: 220px;
}

.footer__schedule span {
  color: rgba(255, 255, 255, 0.6);
}

/* Кнопка Вгору */
.footer__back-to-top {
  position: absolute;
  top: -21px; /* На самій верхній межі футера */
  right: 20px;
  background-color: #b30000;
  border-radius: 50%;
  border: 2px solid white;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
  z-index: 10;
}

.footer__back-to-top:hover {
  background-color: #ff0000;
  transform: translateY(-3px);
}
/* ===== Нижній ряд футера ===== */

.footer__bottom {
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* відстань між елементами */
  font-size: 12px;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer__agreement {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__agreement:hover {
  color: #fff;
  text-decoration: underline;
}

/* ====стрілочка акордеону у футері= */
.footer-arrow {
  width: 10px;
  height: 10px;
  margin-left: 8px;
  display: none;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;

  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
/* ==============Адаптив=========== */
@media (min-width: 992px) {
  .footer__back-to-top {
    right: 50px;
  }
}

@media (max-width: 991px) {
  .footer__nav--catalog {
    display: none;
  }
}
/* Для дуже маленьких екранів ≤514px */
@media (max-width: 514px) {
  /* Загальна структура футера */
  .footer__inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  /* Навігація, соцмережі, оплати */
  .footer__nav ul,
  .footer__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Телефони */
  .footer__phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  /* Графік роботи:
     блок по центру, внутрішнє вирівнювання — як на десктопі */
  .footer__schedule {
    display: flex;
    flex-direction: column;
    gap: 5px; /* відстань між рядками */
    margin: 0 auto; /* центруємо блок горизонтально */
    text-align: left; /* текст всередині p починається зліва */
  }
  .footer__schedule p {
    display: flex;
    justify-content: space-between; /* назва зліва, span справа */
    max-width: 220px; /* обмежуємо ширину для гарного вигляду */
    width: 100%; /* займає всю ширину батька */
    margin: 0 auto; /* центруємо p всередині блоку */
  }

  /* ===== АКОРДЕОН: ТІЛЬКИ "Покупцям" ===== */

  /* Ховаємо список */
  .footer__nav--buyers ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  /* Заголовок клікабельний */
  .footer__nav--buyers .footer__title {
    cursor: pointer;
    position: relative;
    padding: 0; /* прибираємо padding-right */
    display: flex;
    justify-content: center; /* центруємо текст */
    align-items: center; /* вертикально вирівнюємо зі стрілкою */
    gap: 8px; /* відстань між текстом і стрілкою */
    width: 100%;
  }

  /* Стрілка — ТІЛЬКИ на мобілці */
  .footer-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  /* Відкрита секція */
  .footer__nav--buyers.active ul {
    max-height: 1000px;
  }

  .footer__nav--buyers.active .footer-arrow {
    transform: rotate(-135deg);
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}
