/* Minimal promo hello bar (mobile-first, no deps) */
#acb-promo-bar.acb-promo-bar {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  background: #111827;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.acb-promo-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.acb-promo-bar__msg {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.1px;
  flex: 1 1 auto;
  min-width: 0;
}

.acb-promo-bar__right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.acb-promo-bar__countdown {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

.acb-promo-bar__cta {
  display: inline-block;
  background: #ffffff;
  color: #111827;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 13px;
  white-space: nowrap;
}

.acb-promo-bar__close {
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
  padding: 0;
}

@media (max-width: 767px) {
  .acb-promo-bar__inner {
    padding: 8px 10px;
    gap: 8px;
  }

  .acb-promo-bar__msg {
    flex: 1 1 100%;
    font-size: 13px;
    line-height: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .acb-promo-bar__right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .acb-promo-bar__countdown {
    font-size: 11px;
    line-height: 14px;
    white-space: nowrap;
  }

  .acb-promo-bar__cta {
    padding: 7px 10px;
    font-size: 12px;
    line-height: 12px;
  }

  .acb-promo-bar__close {
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 768px) {
  .acb-promo-bar__inner {
    padding: 10px 16px;
    flex-wrap: nowrap;
  }
  .acb-promo-bar__msg {
    font-size: 15px;
    line-height: 20px;
  }
}
