/* Social Proof Notifications */
#wge-sp-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    max-width: 320px;
}

.wge-sp-notif {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-left: 4px solid #1a1a2e;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
    position: relative;
    margin-bottom: 8px;
}
.wge-sp-notif.wge-sp-visible { transform: translateX(0); opacity: 1; }

.wge-sp-icon { font-size: 24px; flex-shrink: 0; }
.wge-sp-text { flex: 1; min-width: 0; }
.wge-sp-text strong { display: block; font-size: 13px; color: #1a1a2e; font-weight: 700; }
.wge-sp-text span { display: block; font-size: 12px; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wge-sp-text small { display: block; font-size: 11px; color: #aaa; margin-top: 2px; }
.wge-sp-close {
    position: absolute; top: 8px; right: 8px;
    background: none; border: none; color: #ccc;
    font-size: 12px; cursor: pointer; padding: 0;
}

/* Product Stats */
.wge-product-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}
.wge-product-stats span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wge-stat-urgent {
    color: #e63946 !important;
    font-weight: 700 !important;
}
