/* Social Proof Notifications */
.social-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    border: 1px solid #f3f3f3;
    max-width: 300px;
    min-width: 280px;
    z-index: 9998;
    transform: translateX(-350px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Inter', sans-serif;
    opacity: 1;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-notification.show {
    transform: translateX(0);
}

.socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.social-notification-platform {
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-notification-platform i {
    color: #4F19B6;
    font-size: 14px;
}

.social-notification-username {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
}

.social-notification-time {
    font-size: 11px;
    color: #888;
}

.social-notification-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.social-notification-action {
    color: #666;
    font-size: 11px;
    line-height: 1.3;
}

.social-notification-action strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .social-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        min-width: auto;
    }
}