/* ─── Promo Banner module (top of input box) ─────────────────────────────── */

.promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: #E8572A;
  border: none;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  max-height: 56px;
  opacity: 1;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity    0.22s ease,
              padding    0.32s ease;
}

.promo-banner--hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

/* Live dot */
.promo-banner__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  position: relative;
}

.promo-banner__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  animation: promo-pulse 2s ease-out infinite;
}

@keyframes promo-pulse {
  0%   { transform: scale(0.5); opacity: 1; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.promo-banner__text {
  flex: 1;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-banner__text strong {
  font-weight: 700;
}

.promo-banner__cta {
  flex-shrink: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.promo-banner:hover,
.promo-banner:focus-visible {
  background: #D44D22;
  outline: none;
}

.promo-banner:hover .promo-banner__cta,
.promo-banner:focus-visible .promo-banner__cta {
  color: #fff;
}

@media (max-width: 640px) {
  .promo-banner {
    display: none !important;
  }
}
