.wp-com-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 15px;
    z-index: 9999;
    font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
    border: 1px solid #d1d5db;
    transition: transform 0.2s ease;
    animation: wpComFloatIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 250px;
}

.wp-com-float-widget:hover {
    transform: translateY(-2px);
}

.wp-com-float-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wp-com-float-icon {
    background: var(--wp-com-status-color, #111111);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.wp-com-float-icon .dashicons {
    font-size: 20px;
}

.wp-com-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.wp-com-float-text strong {
    font-size: 13px;
    color: #111111;
}

.wp-com-float-action {
    font-size: 12px;
    color: #111111;
    text-decoration: underline;
    font-weight: 600;
}

.wp-com-float-disclaimer {
    font-size: 9px;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 5px;
}

@keyframes wpComFloatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 600px) {
    .wp-com-float-widget {
        bottom: 20px;
        right: 20px;
    }
}
