.wcrsp-popup {
    position: fixed;
    bottom: 22px;
    width: min(390px, calc(100vw - 28px));
    background: var(--bg);
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: 0 14px 45px rgba(0,0,0,.18);
    border-left: 4px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    z-index: 999999;
    overflow: hidden;
    font-family: inherit;
}

.wcrsp-bottom-left { left: 18px; }
.wcrsp-bottom-right { right: 18px; }

.wcrsp-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wcrsp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 38px 14px 14px;
    color: inherit;
    text-decoration: none;
}

.wcrsp-image-wrap {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}

.wcrsp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcrsp-content {
    min-width: 0;
}

.wcrsp-message {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.wcrsp-time {
    margin-top: 4px;
    font-size: 12px;
    opacity: .68;
}

.wcrsp-verified {
    margin-top: 5px;
    font-size: 11px;
    opacity: .72;
}

.wcrsp-verified span {
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
}

.wcrsp-close {
    position: absolute;
    right: 8px;
    top: 6px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    opacity: .55;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.wcrsp-close:hover {
    opacity: 1;
}

@media (max-width: 520px) {
    .wcrsp-popup {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px;
        width: auto;
    }
}