/* Top promo strip */
#sa-strip {
  position: relative;
  background: linear-gradient(135deg, #ff6a00 0%, #ff3a00 100%);
  color: #fff;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 10px 16px;
  text-align: center;
  z-index: 60;
}
#sa-strip .sa-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
#sa-strip .sa-strip__msg { letter-spacing: .02em; }
#sa-strip .sa-strip__cta {
  background: #fff; color: #ff3a00;
  padding: 4px 12px; border-radius: 16px;
  font-weight: 800; text-decoration: none;
  font-size: 13px;
}
#sa-strip .sa-strip__cta:hover { background: #ffe; }

/* Sticky 60-min new-visitor timer */
#sa-timer {
  position: fixed;
  left: 12px; bottom: 12px;
  background: #0018a8; color: #fff;
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  z-index: 9000;
  font-family: 'Poppins', system-ui, sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  max-width: 440px;
}
#sa-timer .sa-timer__inner {
  display: flex; gap: 10px; align-items: center;
}
#sa-timer .sa-timer__badge {
  background: #ff6a00; color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
#sa-timer .sa-timer__body { display: flex; flex-direction: column; gap: 4px; }
#sa-timer .sa-timer__msg { font-size: 12px; font-weight: 600; line-height: 1.3; }
#sa-timer .sa-timer__msg span { font-weight: 800; color: #ffb84d; font-size: 14px; }
#sa-timer .sa-timer__ctas { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
#sa-timer .sa-timer__cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 10px; border-radius: 10px;
  font-size: 11px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  font-family: Poppins, system-ui, sans-serif;
}
#sa-timer .sa-timer__cta--primary { background: #ff6a00; color: #fff; }
#sa-timer .sa-timer__cta--primary:hover { background: #e65d00; }
#sa-timer .sa-timer__cta--secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.4); }
#sa-timer .sa-timer__cta--secondary:hover { background: rgba(255,255,255,.22); }
#sa-timer .sa-timer__close {
  background: transparent; border: 0; color: #aaa;
  font-size: 20px; line-height: 1;
  align-self: flex-start; cursor: pointer; padding: 0 4px;
}
#sa-timer .sa-timer__close:hover { color: #fff; }

/* Price display with strike-through */
.sa-price { display: inline-flex; align-items: baseline; gap: 6px; }
.sa-price__old { color: #999; text-decoration: line-through; font-weight: 500; }
.sa-price__new { color: #0018a8; font-weight: 800; }

/* Promo badge — small floating chip on cards */
.sa-promo-badge {
  display: inline-block;
  background: #00a884; color: #fff;
  padding: 4px 10px; border-radius: 14px;
  font-size: 12px; font-weight: 700;
  margin-right: 6px;
}
.sa-promo-badge--hot { background: #ff3a00; }

@media (max-width: 700px) {
  #sa-timer { left: 8px; right: 8px; bottom: 8px; max-width: none; }
  #sa-strip { font-size: 12px; padding: 6px 12px; }
}
