/* ============================
   FLOATING MAIN BUTTON
============================ */
#dwf-main-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    z-index: 999999;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

#dwf-main-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

#dwf-main-btn img {
    width: 32px;
}

/* ============================
   POPUP WRAPPER
============================ */
#dwf-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 285px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
    z-index: 999999;
    border: 1px solid #e7e7e7;
    animation: dwfFadeIn .25s ease-out;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Fade animation */
@keyframes dwfFadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* ============================
   HEADER TITLE
============================ */
.dwf-header {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

/* ============================
   CONTACT ITEM
============================ */
.dwf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid #25d366;
    margin-bottom: 12px;
    transition: all .2s ease;
}

.dwf-item:hover {
    background: #e7fbee;
    transform: translateY(-2px);
}

/* Icon */
.dwf-icon img {
    width: 26px;
    height: 26px;
}

/* Text */
.dwf-text {
    text-align: left;
}

.dwf-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f7c48;
}

/* ============================
   SEPARATOR LINE
============================ */
.dwf-separator {
    width: 100%;
    height: 1px;
    background: #efefef;
    margin: 8px 0 12px 0;
}

/* ============================
   CLOSE BUTTON
============================ */
#dwf-close {
    font-size: 15px;
    font-weight: 700;
    color: #d9534f;
    cursor: pointer;
}

#dwf-close:hover {
    color: #b12e2b;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 480px) {
    #dwf-popup {
        width: 240px;
        right: 10px;
        padding: 15px;
    }
}
