
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid rgba(0, 105, 182, .28);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(10, 48, 75, .22);
  color: #17344e;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.cookie-banner.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__text {
  font-size: 15px;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: #0069b6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 140px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #0d5c8d, #0076bf);
  box-shadow: 0 10px 24px rgba(0, 105, 182, .22);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner__button:hover {
  filter: brightness(1.06);
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
