/* cookie-consent.css — minimal cookie popup styles (i18n consent UI) */

.cookie[hidden] { display: none; }

.cookie {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cookie__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.cookie__card {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.cookie__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.cookie__text {
  margin: 0 0 14px;
  font-size: .95rem;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}

.cookie__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie__btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie__btn--primary {
  background: #fff;
  color: #111;
}

.cookie__btn--secondary {
  background: transparent;
  color: #fff;
}

.cookie__btn:focus {
  outline: 2px solid rgba(255,255,255,.65);
  outline-offset: 2px;
}

.cookie__meta {
  margin: 10px 0 0;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

.cookie__link {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
}
