/* ==========================================================================
   Sezione 1 — Topbar offerta + countdown
   Figma node 254:1468 — barra rossa, testo offerta + countdown g/h/m
   ========================================================================== */

.topbar {
  background: #e30234;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e0f2fe;
}

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

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

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

.topbar__text strong { font-weight: var(--fw-bold); }
.topbar__hl { color: #ffffff; }

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

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