.cookie-notice {
  position: fixed;
  left: 20px;
  right: auto;
  bottom: 20px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: calc(100% - 160px);
  max-width: 760px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice__text {
  flex: 1;
}

.cookie-notice__text a {
  text-decoration: underline;
}

.cookie-notice__btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 0;
  border-radius: 6px;
  background: #333;
  color: #fff;
  cursor: pointer;
}

.cookie-notice__btn:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 85px;
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
  }

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