#contact-widget {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.contact-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #28a745;
    background-image: url('https://islapacifico.com/wp-content/uploads/2025/08/icono-whatsapp-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-options {
    position: absolute;
    bottom: 20px;
    right: 0px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.contact-options.hidden {
    display: none;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.contact-link:hover {
    background: #f0f0f0;
}

.close-button {
    position: absolute;
    top: 6px;
    right: 1px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}
