/* assets/cookie-consent.css */

.cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  width: min(360px, calc(100vw - 32px));
  border-radius: 16px;

  background: rgba(20, 20, 24, 0.92);
  color: rgba(255, 255, 255, 0.92);

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 14px 14px 12px 14px;

  font: 500 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.1px;

  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__title {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 6px 0;
}

.cookie-consent__text {
  margin: 0 0 10px 0;
  color: rgba(255,255,255,0.82);
}

.cookie-consent__text a {
  color: rgba(120, 200, 255, 0.95);
  text-decoration: none;
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.cookie-consent__btn {
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.cookie-consent__btn--primary {
  background: rgba(120, 200, 255, 0.95);
  color: rgba(0, 0, 0, 0.85);
}

.cookie-consent__btn--ghost {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
}

.cookie-consent__btn:active {
  transform: translateY(1px);
}