.cookie-notice {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6500;
  padding: 14px 22px;
  background: rgba(27, 32, 40, 0.96);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-notice.is-visible {
  display: block;
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-notice__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.cookie-notice__ok {
  flex-shrink: 0;
  min-width: 128px;
  height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 6px;
  background: rgb(27, 91, 163);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-notice__ok:hover {
  background: rgb(22, 78, 140);
}

@media (max-width: 1024px) {
  .cookie-notice {
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

@media print {
  .cookie-notice {
    display: none !important;
  }
}
