/* ==========================================================================
   Sezione 1 — Topbar offerta + countdown
   Figma node 1070:4162 (ESG) — barra rossa, icona sale + testo offerta + countdown g/h/m
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #e30234;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e0f2fe;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding-block: 10px;
}

.topbar__offer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-body);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.topbar__icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.topbar__offer strong { font-weight: var(--fw-bold); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .topbar__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .topbar__offer { font-size: var(--fs-13); }
}

@media (max-width: 480px) {
  .topbar__offer { font-size: var(--fs-12); }
}
