/* Back to School 2026 — sticky promo bar. Remove after 30 Sep 2026. */
.coh-promo {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 16px;
  text-align: center;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #081218;
  background: linear-gradient(110deg, #4EE6D5 0%, #A16DFF 48%, #FF6B35 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.coh-promo.is-active {
  display: flex;
}

.coh-promo a {
  color: #081218;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.coh-promo a:hover {
  opacity: 0.85;
}

.coh-promo .coh-promo-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(8, 18, 24, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.coh-promo-on {
  --coh-promo-h: 44px;
}

/* Keep fixed/sticky site nav below the sale bar */
body.coh-promo-on header,
body.coh-promo-on .site-header {
  top: var(--coh-promo-h) !important;
}

@media (max-width: 600px) {
  .coh-promo {
    font-size: 12.5px;
    padding: 9px 12px;
    gap: 6px;
  }
  body.coh-promo-on {
    --coh-promo-h: 56px;
  }
}
