.widgets-container {
  position: relative;
  z-index: 998;
}

/* WhatsApp Floating Button (Bottom Left) */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 998;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  padding: 0;
  border: none;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn .icon {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* WhatsApp Gentle Ripple Animation */
.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: ripple 2.2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* Go to Top Button (Bottom Right) */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(30, 166, 89, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  box-sizing: border-box;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 166, 89, 0.45);
}

.scroll-top-btn .icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover .icon {
  transform: translateY(-2px);
}
