/* WhatsApp Floating Button */
#wa-btn{
 position: fixed;
 left: 20px;
 bottom: 30px;
 cursor: pointer;
 z-index: 9999;
 background: transparent;
}

#wa-btn img{
 width: 45px;
 height: 45px;
 display: block;
 background: transparent;
}

/* WhatsApp Popup */
#wa-popup{
 position: fixed;
 left: 20px;
 bottom: 90px;
 width: 280px;
 background: #ffffff;
 padding: 15px;
 display: none;
 border-radius: 10px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.2);
 z-index: 9999;
 font-family: Arial, sans-serif;
}

/* Popup Heading */
#wa-popup h3{
 margin: 0 0 10px;
 font-size: 16px;
 text-align: center;
 color: #333;
}

/* Inputs */
#wa-popup input{
 width: 100%;
 padding: 8px 10px;
 margin-bottom: 8px;
 border: 1px solid #ccc;
 border-radius: 5px;
 font-size: 14px;
 outline: none;
}

/* Button */
#wa-popup button{
 width: 100%;
 padding: 10px;
 background: #25D366;
 color: #fff;
 border: none;
 border-radius: 5px;
 font-size: 15px;
 cursor: pointer;
 transition: background 0.3s ease;
}

#wa-popup button:hover{
 background: #1ebe5d;
}