.whatsapp-sticky-button {
    position: fixed;
    z-index: 9999;
    top: 65%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.whatsapp-sticky-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.whatsapp-position-right {
    right: 20px;
}

.whatsapp-position-left {
    left: 20px;
}

.whatsapp-sticky-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    cursor: pointer;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 250px;
    padding: 15px;
    display: none;
    z-index: 9998;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.whatsapp-position-left .whatsapp-popup {
    left: 0;
    right: auto;
}

.whatsapp-popup-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.whatsapp-popup-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.whatsapp-popup-options li {
    padding: 10px 15px;
    margin-bottom: 5px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    display: block;
    list-style-type: none !important;
    list-style-position: inside;
    position: relative;
    text-align: left;
}

.whatsapp-popup-options li::before {
    content: "";
    display: none;
}

.whatsapp-popup-options li:hover {
    background-color: #e6e6e6;
}

.whatsapp-popup-options li span {
    display: block;
    width: 100%;
}

.whatsapp-popup-options li:last-child {
    margin-bottom: 0;
}

.whatsapp-popup.active {
    display: block;
}

/* Responsives Design */
@media (max-width: 768px) {
    .whatsapp-sticky-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-position-right {
        right: 15px;
    }
    
    .whatsapp-position-left {
        left: 15px;
    }
}
