/* Custom WhatsApp styling for products page - desktop only */

/* Hide WhatsApp on mobile devices */
@media (max-width: 768px) {
  .whatsapp-floating {
    display: none !important;
  }
}

/* Position WhatsApp on the right side for products page */
.whatsapp-floating {
  left: auto;
  right: 25px;
}

/* Position the popup to open toward the left side */
.whatsapp-popup {
  right: 80px;
  left: auto;
  transform-origin: right bottom;
}

/* Add a chat bubble arrow pointing to the button */
.whatsapp-popup::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent white;
  z-index: 1;
}

/* Ensure the popup is visible when active */
.whatsapp-floating.active .whatsapp-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
