/* Dual WhatsApp Floating Button styles */

#dwa-widget {
    position: fixed;
    bottom: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#dwa-widget.dwa-pos-right {
    right: 24px;
    align-items: flex-end;
}

#dwa-widget.dwa-pos-left {
    left: 24px;
    right: auto;
    align-items: flex-start;
}

/* Visibility by device */
.dwa-show-desktop {
    display: flex;
}
.dwa-show-mobile {
    display: none;
}
.dwa-show-all {
    display: flex;
}

@media (max-width: 782px) {
    .dwa-show-desktop {
        display: none;
    }
    .dwa-show-mobile {
        display: flex;
    }
    .dwa-show-all {
        display: flex;
    }
}

/* Main button */
.dwa-main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dwa-color, #25D366);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-size: 15px;
    line-height: 1;
}

.dwa-main-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.dwa-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dwa-main-text {
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 480px) {
    .dwa-main-text {
        display: none;
    }
    .dwa-main-btn {
        padding: 14px;
        border-radius: 50%;
    }
}

/* Expand panel */
.dwa-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

#dwa-widget.dwa-open .dwa-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dwa-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.12s ease;
}

.dwa-contact-item:hover {
    transform: translateX(-2px);
    color: #111;
}

#dwa-widget.dwa-pos-left .dwa-contact-item:hover {
    transform: translateX(2px);
}

.dwa-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dwa-contact-label {
    display: block;
}
