.cc-wa-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.cc-wa-fab {
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    background: #25D366 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1;
    text-align: center;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cc-wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.cc-wa-fab svg {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0;
    fill: #fff;
    flex-shrink: 0;
    pointer-events: none;
}

.cc-wa-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
}

.cc-wa-widget.is-open .cc-wa-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cc-wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cc-wa-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.cc-wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cc-wa-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cc-wa-meta strong {
    font-size: 16px;
    color: #111;
}

.cc-wa-meta span {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.cc-wa-body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.cc-wa-action {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .2s ease;
}

.cc-wa-action:hover {
    opacity: .92;
    color: #fff;
}

.cc-wa-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 767px) {
    .cc-wa-widget {
        right: 14px;
        bottom: 14px;
    }

    .cc-wa-fab {
        width: 58px;
        height: 58px;
    }

    .cc-wa-panel {
        width: min(320px, calc(100vw - 28px));
        right: 0;
        bottom: 74px;
        padding: 16px;
    }
}

.cc-wa-fab::before,
.cc-wa-fab::after {
    display: none !important;
    content: none !important;
}