/* =================== promo-bar.css =================== */
/* Contextual top announcement bar, above the sticky header (scrolls away on
   scroll). Slim, dark, premium; gold-accented icon + emphasis. Dismissible. */

.hc-promo-bar {
  background: var(--hc-ink, #1a1714);
  color: #fdf8ef;
  font-size: 12.5px;
}

.hc-promo-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.hc-promo-bar__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
  color: rgba(253, 248, 240, 0.92);
}

.hc-promo-bar__ico {
  flex: 0 0 auto;
  color: var(--hc-gold, #d4b896);
}

.hc-promo-bar b {
  color: var(--hc-gold, #d4b896);
  font-weight: 600;
}

.hc-promo-bar__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(253, 248, 240, 0.55);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.hc-promo-bar__close:hover {
  color: #fdf8ef;
  background: rgba(253, 248, 240, 0.1);
}

@media (max-width: 640px) {
  .hc-promo-bar {
    font-size: 11.5px;
  }
  .hc-promo-bar__inner {
    padding-left: 8px;
    padding-right: 34px;
  }
  .hc-promo-bar__text {
    text-align: left;
  }
}
