/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 16px 0;
}

.cookie-banner._visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner__text {
  max-width: 720px;
}

.cookie-banner__text a {
  font-size: 14px;
}

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

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

.footer .social {
  margin-left: auto;
  margin-right: 0;
  width: auto;
  display: flex;
  justify-content: flex-end;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.cookie-banner__btn._primary {
  background: #e31f26;
  border-color: #e31f26;
}

.cookie-banner__btn._secondary {
  background: transparent;
}

@media (max-width: 767px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

