/* Live badge in header nav */
.uc-navbar-nav .uc-live-badge,
.uc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #e62323 !important;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.uc-navbar-nav .uc-live-badge:hover,
.uc-live-badge:hover {
  color: #e62323 !important;
  opacity: 0.75;
}

.uc-live-badge .uc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e62323;
  box-shadow: 0 0 0 0 rgba(230, 35, 35, 0.55);
  animation: uc-live-pulse 1.6s ease-out infinite;
}

@keyframes uc-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 35, 35, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(230, 35, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 35, 35, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uc-live-badge .uc-live-dot {
    animation: none;
  }
}

/* Newsletter subscribe button inside header mega-menu dropdown.
   Parent `.text-unset` strips the btn-primary white text, so force it. */
.uc-navbar-newsletter .btn-primary {
  color: #fff !important;
}

.uc-navbar-newsletter .form-control {
  min-width: 0;
}
