/* Social Proof Notification Toast */
.social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through if not on toast */
}

.proof-toast {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    transform: translateX(-120%);
    /* Start hidden left */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.proof-toast.visible {
    transform: translateX(0);
}

.proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0efff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.proof-content {
    flex: 1;
}

.proof-name {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.proof-action {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

.proof-time {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 5px;
}

.proof-close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
}

.proof-close:hover {
    color: #333;
}

@media (max-width: 576px) {
    .social-proof-container {
        display: none;
        /* Hide on mobile to avoid clutter */
    }
}