/* WhatsApp button styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 30px;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }
}


/* translate widget */
/* Floating Button */
#translateBtn {
    position: fixed;
    bottom: 20px;
    left: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s ease;
}

#translateBtn:hover {
    transform: scale(1.05);
    background-color: #f7f2f2;
}

.translate-icon {
    width: 32px;
    height: 32px;
}

/* Translate Box (Vertical) */
.translate-box {
    position: fixed;
    bottom: 80px;
    left: 15px;
    z-index: 99999;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    width: 195px;
}

/* Make languages vertical + black text */
.goog-te-combo {
    width: 100% !important;
    padding: 8px;
    border: 1px solid #333 !important;
    border-radius: 6px;
    color: #000 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Options black color */
.goog-te-combo option {
    color: #000 !important;
}

/* Responsive */
@media (max-width: 600px) {
    #translateBtn {
        width: 48px;
        height: 48px;
    }

    .translate-icon {
        width: 26px;
        height: 26px;
    }

    .translate-box {
        left: 10px;
        bottom: 70px;
        width: 140px;
        padding: 10px;
    }
}