.cookie-notice {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000001;
  width: min(460px, calc(100vw - 32px));
  padding: 22px 28px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-notice__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  appearance: none;
  -webkit-appearance: none;
}

.cookie-notice__close:hover {
  opacity: 1;
}

.cookie-notice__text {
  margin: 0 18px 16px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
}

.cookie-notice__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice__text a:hover {
  color: #bbccd4;
}

.cookie-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #bbccd4;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}

.cookie-notice__btn span {
  margin-left: 6px;
  font-size: 14px;
  position: relative;
  top: 0.5px;
  transition: transform 0.25s ease;
}

.cookie-notice__btn:hover {
  background: #93a3ad;
}

.cookie-notice__btn:hover span {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px 20px 16px;
  }
}
