/* WhatsApp Floating Widget */
.whatsapp-widget { position: fixed; bottom: 20px; right: 20px; z-index: 99999; pointer-events: auto; font-family: sans-serif; }
#wa-trigger { cursor: pointer; background: #25d366; border-radius: 50%; padding: 0; width: 64px; height: 64px; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: center; justify-content: center; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: background 0.3s; }
#wa-trigger:hover { background: #1ebe5d; }
#wa-trigger img { width: 34px; height: 34px; display: block; }
#wa-popup { position: absolute; bottom: 70px; right: 0; width: 260px; background: #fff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); overflow: hidden; display: none; }
#wa-popup.wa-visible { display: block; }
.wa-header { background: #25d366; color: #fff; padding: 10px; display: flex; align-items: center; justify-content: space-between; }
.wa-header h5 { font-size: 14px; margin: 0; }
.wa-header .icon { width: 20px; height: 20px; margin-right: 8px; }
#wa-close { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.wa-body { padding: 10px; }
.wa-contact { display: flex; flex-direction: column; background: #f9f9f9; border-radius: 6px; padding: 8px; text-decoration: none; color: #333; margin-bottom: 8px; transition: background 0.3s; }
.wa-contact:hover { background: #f0f0f0; }
.wa-contact .status { font-size: 12px; color: green; margin-bottom: 4px; }
.wa-contact .name { font-weight: bold; font-size: 14px; }
.wa-footer { padding: 8px 10px; font-size: 12px; color: #666; border-top: 1px solid #eee; }


