.support-widget {
        all: unset;
        font-family: 'Poppins', sans-serif;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 1000;
        display: block;
        box-sizing: border-box;
    }

    /* Tombol merah pojok kanan bawah */
    .support-widget .wa-floating-btn {
        font-family: inherit;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #a50000;
        color: #fff;
        border-radius: 50px;
        padding: 10px 18px;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        font-weight: bold;
        width: max-content;
        cursor: pointer;
        user-select: none;
    }

    .support-widget .wa-floating-btn.disabled {
        background: #ccc;
        pointer-events: none;
        cursor: default;
    }

    .support-widget .wa-floating-btn img {
        width: 18px;
        height: 18px;
    }

    /* Kotak support */
    .support-widget .support-box {
        font-family: inherit;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        position: fixed;
        bottom: 80px;
        right: 20px;
        display: none;
        width: 300px;
        min-height: 200px;
        backdrop-filter: blur(6px);
        background-color: rgba(255, 255, 255, 0.88);
        background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 120px;
        background-blend-mode: lighten;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
    }

    .support-widget .support-box.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .support-widget .support-header {
        background-color: #a50000;
        color: #fff;
        text-align: center;
        padding: 15px;
        font-weight: bold;
        font-size: 17px;
        user-select: none;
    }

    .support-widget .support-item {
        display: flex;
        align-items: center;
        padding: 14px;
        border-bottom: 1px solid #eee;
        background: #fff;
        cursor: pointer;
        font-size: 17px;
        font-weight: bold;
        user-select: none;
    }

    .support-widget .support-item img {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        margin-right: 12px;
    }

    .support-widget .support-item.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Status label */
    .support-widget .status {
        font-size: 12px;
        font-weight: normal;
        margin-left: auto;
        padding: 4px 8px;
        border-radius: 8px;
        user-select: none;
    }

    .support-widget .online {
        background-color: #4caf50;
        color: white;
    }

    .support-widget .offline {
        background-color: #999;
        color: white;
    }