/* IslandFlowTransfers — Estilos de mejoras (WhatsApp flotante + Pagar) */

/* Boton flotante de WhatsApp */
#ift-wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--wa,#25D366);
  color:var(--wa-ink,#fff);
  box-shadow:0 6px 20px -4px rgba(7,94,84,.45),0 2px 6px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease;
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
#ift-wa-float:hover{
  transform:scale(1.08);
  box-shadow:0 10px 26px -6px rgba(7,94,84,.55),0 3px 8px rgba(0,0,0,.22);
}
#ift-wa-float:active{ transform:scale(.96); }
#ift-wa-float svg{ display:block; }

/* Pequeña pulsacion sutil al cargar para llamar la atencion (una vez) */
@keyframes ift-wa-pop{
  0%{ transform:scale(0); opacity:0; }
  70%{ transform:scale(1.12); }
  100%{ transform:scale(1); opacity:1; }
}
#ift-wa-float{ animation:ift-wa-pop .4s ease both; }

@media (max-width:600px){
  #ift-wa-float{ width:54px; height:54px; right:14px; bottom:14px; }
}

/* Boton Pagar con tarjeta (en el formulario de reserva) */
.ift-pay-btn{
  background:#0E1620;
  color:#fff;
  border:1px solid #0E1620;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.ift-pay-btn:hover{ background:#1d2a3a; border-color:#1d2a3a; }
.ift-pay-btn svg{ flex:0 0 auto; }

/* En la fila de acciones, que los botones convivan bien */
.qb-actions{ flex-wrap:wrap; gap:10px; }
