/* ── Promo bar — mobile first ── */
.promo-bar {
  background: var(--color-orange);
  color: var(--color-white);
}

.promo-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  text-align: left;
}

.promo-bar__text {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
}

.promo-bar__flag {
  width: 21px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

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

.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  background: var(--color-white);
  color: var(--color-orange);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.promo-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-bar__cta svg {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .promo-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem 1.25rem;
  }

  .promo-bar__text {
    align-items: center;
    font-size: 0.95rem;
    flex: 1;
  }

  .promo-bar__flag {
    margin-top: 0;
  }

  .promo-bar__cta {
    width: auto;
    padding: 0.5rem 1.1rem;
    min-height: 0;
    font-size: 0.85rem;
    border-radius: 6px;
  }
}
