.sale-popup-container {
    display: none;
}

/* Styling for WhatsApp floating button */
.float-whatsapp {
    position: fixed;
    bottom: 75px;
    left: 10px;
    background-color: #25D366;
    border-radius: 20%;
    width: 40px;
    height: 40px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

/* Styling for Call floating button */
.float-call {
    position: fixed;
    bottom: 75px;
    right: 10px;
    background-color: #0A74DA;
    border-radius: 20%;
    width: 40px;
    height: 40px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon {
    width: 30px;
    height: 30px;
}

/* Hover effects */
.float-whatsapp:hover, .float-call:hover {
    opacity: 0.8;
}