.bb-sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: linear-gradient(90deg, #2563EB 0%, #1D4ED8 100%);
  color: #fff;
  transform: translateY(-100%);
  transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 14px rgba(37, 99, 235, .25);
  pointer-events: none;
}
.bb-sticky-cta--visible { transform: translateY(0); pointer-events: auto; }
.bb-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: Heebo, Inter, system-ui, sans-serif;
  font-size: 14px;
  position: relative;
  flex-wrap: wrap;
}
.bb-sticky-cta-text { font-weight: 500; }
.bb-sticky-cta-text strong { font-weight: 800; }
.bb-sticky-cta-sep { opacity: .6; margin: 0 6px; }
.bb-sticky-cta-btn {
  background: #fff;
  color: #1E3A8A;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 150ms;
}
.bb-sticky-cta-btn:hover { background: #DBEAFE; }
.bb-sticky-cta-close {
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .8;
}
.bb-sticky-cta-close:hover { background: rgba(255,255,255,.15); opacity: 1; }

/* Push body content down so banner doesn't overlap fixed nav */
body.bb-sticky-cta-active .nav { top: 36px; }

@media (max-width: 540px) {
  .bb-sticky-cta-inner { font-size: 13px; padding: 8px 44px 8px 12px; }
  .bb-sticky-cta-text { display: none; }
  .bb-sticky-cta-text strong { display: inline; font-size: 13px; }
  .bb-sticky-cta-text strong::after {
    content: " · ניסיון חינם";
    font-weight: 500;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-sticky-cta { transition: none; }
}
