/* Chat button */
.chat-widget-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-widget-button:hover {
    background: #1ebe57;
}

/* Chat popup */
.chat-widget-popup {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: white;
    width: 260px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    z-index: 1000;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chat popup header */
.chat-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.chat-widget-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.chat-widget-close {
    font-size: 14px;
    cursor: pointer;
    color: #888;
}

.chat-widget-close:hover {
    color: red;
}

/* Welcome message */
.chat-widget-message {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
    text-align: center;
}

/* Chat links */
.chat-widget-popup a {
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-weight: bold;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.chat-widget-whatsapp {
    background-color: #25d366;
    color: white;
}

.chat-widget-whatsapp:hover {
    background-color: #1ebe57;
}

.chat-widget-email {
    background-color: #007bff;
    color: white;
}

.chat-widget-email:hover {
    background-color: #0056b3;
}
