/* Баннер cookies */

.bg-cookie {
  position: fixed;
  z-index: 10050;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(30, 30, 30, 0.18);
  color: #1e1e1e;
}

.bg-cookie[hidden] {
  display: none !important;
}

.bg-cookie__inner {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 22px 24px;
}

.bg-cookie__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.55;
}

.bg-cookie__text p {
  margin: 0 0 10px;
}

.bg-cookie__text p:last-child {
  margin-bottom: 0;
}

.bg-cookie__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bg-cookie__text a:hover {
  color: #b99272;
}

.bg-cookie__btn {
  flex-shrink: 0;
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;
  background: #1e1e1e;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.bg-cookie__btn:hover {
  background: #333;
}

@media (max-width: 720px) {
  .bg-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .bg-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .bg-cookie__text {
    font-size: 13px;
  }

  .bg-cookie__btn {
    width: 100%;
  }
}
