.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  font-family: inherit;
  display: none;
}

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

.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.cookie-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner__button {
  border: 1px solid #1f1f1f;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.cookie-banner__button--accept {
  background: #1f1f1f;
  color: #ffffff;
}

.cookie-banner__button--reject {
  background: #ffffff;
  color: #1f1f1f;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

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