.cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: system-ui, sans-serif;
}

.cookie-banner__content {
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.cookie-banner__content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.cookie-banner__content p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-btn {
  border-radius: 999px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

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

.cookie-btn:hover {
  opacity: 0.9;
}
