.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  max-width: 28rem;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #1c1f26;
  color: #eef1f4;
  border: 1px solid rgba(158, 197, 192, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 12rem;
  color: #9399a3;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: #9ec5c0;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(158, 197, 192, 0.18);
}

.cookie-accept {
  background: #e08a3c;
  color: #1a1208;
  border-color: transparent;
}

.cookie-reject {
  background: transparent;
  color: #eef1f4;
}

.cookie-banner button:focus-visible {
  outline: 2px solid #f0b27a;
  outline-offset: 2px;
}
