
/* Nasconde gli step NON correnti senza rompere il calcolo dei prezzi di YITH */
.ywapo-hidden{
  visibility:hidden !important;
  opacity:0 !important;
  height:0 !important;
  overflow:hidden !important;
  pointer-events:none !important;
  position:absolute !important;
}

/* Nasconde il pulsante WooCommerce finché non siamo all'ultimo step */
.ywapo-wc-add-hidden{
  display:none !important;
}

/* Sticky progress bar */
.ywapo-sticky-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:white;
  padding:10px 20px;
  z-index:9999;
  box-shadow:0 2px 5px rgba(0,0,0,0.15);
}

/* Static (non-sticky) progress bar sopra il form */
.ywapo-static-bar{
  width:100%;
  background:white;
  padding:10px 0 20px 0;
  margin-bottom:10px;
}

/* Barra inferiore, sotto ai pulsanti */
.ywapo-bottom-bar{
  width:100%;
  background:white;
  padding:10px 0 0 0;
  margin-top:10px;
}

.ywapo-progress-wrap{
  width:100%;
  height:10px;
  background:#e4e4e4;
  border-radius:5px;
  overflow:hidden;
}
.ywapo-progress-bar{
  height:100%;
  width:0%;
  transition:width .4s ease;
  background:#0073aa;
}
.ywapo-progress-text{
  margin-top:8px;
  font-weight:600;
  text-align:right;
  font-size:14px;
}

.ywapo-btn{
  background:#0073aa;
  color:white;
  padding:10px 18px;
  border-radius:4px;
  border:none;
  cursor:pointer;
  font-size:14px;
}
.ywapo-btn:hover{ opacity:0.9; }

.ywapo-nav{
  margin:20px 0;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
}

/* Pulsante carrello dentro la nav */
.ywapo-nav .default-btn,
.ywapo-nav .single_add_to_cart_button{
  margin-left:10px;
}
