.lqd-buy-now-right {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}
.lqd-buy-now-left {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 999;
}
.lqd-buy-now-btn {
    display: inline-flex;
    padding: 15px 30px;
    align-items: center;
    border: none;
    border-radius: 50em;
    background: #4e3b8c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    line-height: 1.5em;
    color: #fff;
    transition: all 0.3s;
      white-space: nowrap;        /* ne coupe jamais le texte */
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.lqd-buy-now-btn svg {
    margin-right: 12px;
}
.lqd-buy-now-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

/* Placement / taille mobile */
@media (max-width: 768px){
  .lqd-buy-now-right{
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px)); /* safe area iOS */
  }
  .lqd-buy-now-btn{
    font-size: 16px;
    padding: 14px 22px;
    border-radius: 20px;
  }
  .lqd-buy-now-btn svg{
    width: 20px; height: 20px;
    margin-right: 0;
    flex: 0 0 auto;
  }
}