.floating-buttons-wrapper { position: fixed; right: 20px; bottom: 50px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
.floating-btn { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 50px; text-decoration: none; font-family: Arial, sans-serif; font-size: 15px; font-weight: 700; color: rgb(255, 255, 255); background: rgb(223, 103, 48); box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 20px; transition: 0.3s; animation: 2s ease 0s infinite normal none running floatPulse; cursor: pointer; }
.floating-btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-icon { font-size: 20px; }
.btn-text { white-space: nowrap; }
@keyframes floatPulse { 
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
  .floating-buttons-wrapper { right: 15px; bottom: 40px; }
  .floating-btn { padding: 12px 16px; font-size: 14px; }
  .btn-icon { font-size: 18px; }
}