.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

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

.cookie-notice__content {
  width: min(920px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.97);
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .28);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.cookie-notice__text {
  min-width: 0;
}

.cookie-notice__text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.cookie-notice__text p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-notice__link {
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-notice__link:hover,
.cookie-notice__link:focus-visible {
  text-decoration: underline;
}

.cookie-notice__button {
  margin: 0 !important;
  padding: 10px 16px !important;
  min-height: 40px;
  border: 0;
  border-radius: 12px !important;
  background: #47c1ef !important;
  color: #082f49 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transform: none !important;
}

.cookie-notice__button:hover,
.cookie-notice__button:focus-visible {
  background: #7dd3fc !important;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 700px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-notice__content {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-notice__actions {
    justify-content: flex-end;
  }
}
