.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px;
  background: rgba(15, 15, 15, 0.96);
  color: #fff;
}

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

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.35;
}

.cookie-banner__link {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  appearance: none;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.cookie-btn--primary {
  background: #fff;
  color: #000;
}

.cookie-btn--ghost {
  background: transparent;
}