/* Site-wide availability banner — injected by js/banner.js from get_banner.php.
   Markup and styling match the original hardcoded #avail-bar block. */
#avail-bar {
  background: #2d4a1e;
  color: #fff;
  text-align: center;
  padding: 11px 48px;
  font-size: .93rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1100;
  letter-spacing: .01em;
}
#avail-bar a.avail-cta {
  color: #b8e87a;
  font-weight: 700;
  margin-left: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,232,122,.4);
  transition: color .15s, border-color .15s;
}
#avail-bar a.avail-cta:hover { color: #fff; border-bottom-color: #fff; }
#avail-bar .avail-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.55);
  font-size: 1.3rem; cursor: pointer;
  line-height: 1; padding: 0 6px;
  font-family: inherit;
}
#avail-bar .avail-close:hover { color: #fff; }
.avail-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: #7ddc4a;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative; top: -1px;
  animation: avail-pulse 1.8s infinite;
}
@keyframes avail-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(125,220,74,.75); }
  70%  { box-shadow: 0 0 0 7px rgba(125,220,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,220,74,0); }
}
@media (max-width: 576px) {
  #avail-bar { font-size: .82rem; padding: 10px 40px; }
}
