/* Floating WhatsApp button styles */
#wab-button.wab-floating{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5c 100%);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  animation: wab-fadein 0.5s ease, wab-pulse 2s ease-in-out 3s infinite;
}
#wab-button.wab-floating:hover{
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
#wab-button .wab-icon{ 
  margin-right: 8px; 
  width: 22px; 
  height: 22px; 
  flex-shrink: 0; 
}
#wab-button .wab-label{ 
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}

@keyframes wab-fadein{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes wab-pulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
}

#wab-options.wab-options-menu{
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9998;
  overflow: hidden;
  min-width: 220px;
  animation: wab-slideup 0.3s ease;
}

@keyframes wab-slideup{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

#wab-options .wab-option{
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: #fff;
  color: #333;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}
#wab-options .wab-option:last-child{ border-bottom: none; }
#wab-options .wab-option:hover{ 
  background: #f8f8f8;
  padding-left: 22px;
  color: #25D366;
}

/* Mobile responsive */
@media (max-width: 768px){
  #wab-button.wab-floating{
    right: 15px;
    bottom: 15px;
    padding: 10px 16px;
  }
  #wab-button .wab-label{
    font-size: 14px;
  }
  #wab-options.wab-options-menu{
    right: 15px;
    bottom: 75px;
    min-width: 200px;
  }
  #wab-options .wab-option{
    padding: 12px 16px;
    font-size: 13px;
  }
}

.wab-shortcode{ display:inline-block; background:#25D366; color:#fff; padding:8px 12px; border-radius:4px; text-decoration:none; }
