/* Position des boutons flottants */
.lqd-buy-now-right,
.lqd-buy-now-left {
  position: fixed;
  bottom: 30px;
  z-index: 999;
}
.lqd-buy-now-right { right: 30px; }
.lqd-buy-now-left  { left: 30px; }

/* Bouton */
.lqd-buy-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  border-radius: 50em;

  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  font-size: 15px;
  font-weight: 600;
  line-height: 1;             /* plus propre pour emoji + numéro */
  color: #000;

  text-decoration: none;       /* au cas où .lqd-buy-now-btn est un <a> */
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

/* Hover */
.lqd-buy-now-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transform: translateY(-2px);
}

/* Emoji (si tu utilises <span class="phone-emoji">👋</span>) */
.phone-emoji {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Numéro (si tu utilises <span class="phone-number">...</span>) */
.phone-number {
  white-space: nowrap;
  line-height: 1;
}
