/* BBR Push – UI */
:root { --bbr-push-brand: #ac0018; }

/* ── Einblende-Banner (oben) ───────────────────────────────── */
.bbr-push-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: #ffffff;
  border-bottom: 3px solid var(--bbr-push-brand);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .14);
  transform: translateY(-110%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.bbr-push-banner.is-visible { transform: translateY(0); }
.bbr-push-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}
.bbr-push-banner__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bbr-push-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.bbr-push-banner__text { flex: 1 1 auto; line-height: 1.35; }
.bbr-push-banner__text strong { display: block; font-size: 15px; color: #1f1f1f; }
.bbr-push-banner__text span { font-size: 13px; color: #555; }
.bbr-push-banner__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.bbr-push-banner__close {
  background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: #999; padding: 0 6px;
}
.bbr-push-banner__close:hover { color: #1f1f1f; }

/* ── Buttons ───────────────────────────────────────────────── */
.bbr-push-btn {
  font: inherit; font-size: 14px; font-weight: 600;
  border-radius: 6px; padding: 9px 18px; cursor: pointer;
  border: 1px solid transparent; transition: background .15s, color .15s;
}
.bbr-push-btn--primary { background: var(--bbr-push-brand); color: #fff; }
.bbr-push-btn--primary:hover { background: #8a0014; }
.bbr-push-btn--ghost {
  background: #fff; color: var(--bbr-push-brand);
  border-color: var(--bbr-push-brand);
}
.bbr-push-btn--ghost:hover { background: #fbeaec; }

/* ── Glocke (unten links) ──────────────────────────────────── */
.bbr-push-bell {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 99998;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bbr-push-brand);
  color: #fff;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: transform .15s, box-shadow .15s;
}
.bbr-push-bell:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, .3); }
.bbr-push-bell__dot {
  position: absolute; top: 9px; right: 9px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #2ecc71; border: 2px solid var(--bbr-push-brand);
}

/* ── Verwaltungs-Popover ───────────────────────────────────── */
.bbr-push-manager {
  position: fixed;
  left: 20px; bottom: 84px;
  z-index: 99999;
  width: 290px; max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
  padding: 16px 18px 18px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .22s, transform .22s;
}
.bbr-push-manager.is-visible { opacity: 1; transform: translateY(0); }
.bbr-push-manager__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bbr-push-manager__title { font-weight: 700; font-size: 15px; color: #1f1f1f; }
.bbr-push-manager__close { background: none; border: 0; font-size: 24px; line-height: 1; color: #999; cursor: pointer; }
.bbr-push-manager__close:hover { color: #1f1f1f; }
.bbr-push-manager__status { font-size: 13px; color: #555; line-height: 1.45; margin: 0 0 14px; }
.bbr-push-manager__hint { font-size: 11.5px; color: #999; margin: 10px 0 0; text-align: center; }

@media (max-width: 600px) {
  .bbr-push-banner__inner { flex-wrap: wrap; gap: 10px; padding: 10px 14px; }
  .bbr-push-banner__text { flex: 1 1 100%; order: 2; }
  .bbr-push-bell { left: 14px; bottom: 14px; width: 50px; height: 50px; }
}
