/* Vipostore — Barra spedizione gratuita nel carrello */

/* Nasconde il segnaposto (vuoto/rotto) del modulo Línea Gráfica,
   per evitare messaggi doppi se il suo JS tornasse a funzionare. */
#freeshippinginfo {
  display: none !important;
}

#vipo-fs-bar {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff4e8;               /* sotto soglia: tinta arancio, coerente col modulo esistente */
  border: 1px solid #fe9126;
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.4;
}

#vipo-fs-bar .vipo-fs-text strong {
  color: #e5762f;
}

#vipo-fs-bar .vipo-fs-track {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(254, 145, 38, 0.18);
  overflow: hidden;
}

#vipo-fs-bar .vipo-fs-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #fe9126;
  transition: width 0.45s ease;
}

/* Soglia raggiunta: passa al verde, come il messaggio attuale del sito */
#vipo-fs-bar.vipo-fs-reached {
  background: #eef9ef;
  border-color: #55c65e;
}

#vipo-fs-bar.vipo-fs-reached .vipo-fs-text strong {
  color: #2f9a38;
}

#vipo-fs-bar.vipo-fs-reached .vipo-fs-track {
  background: rgba(85, 198, 94, 0.18);
}

#vipo-fs-bar.vipo-fs-reached .vipo-fs-fill {
  background: #55c65e;
}

@media (max-width: 576px) {
  #vipo-fs-bar {
    font-size: 14px;
    padding: 12px 14px;
  }
}
