/* Social Proof Notifications - Professionelles, modernes Toast-Design */

#dfp-social-proof-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999998;
    pointer-events: none;
}

.dfp-social-notification {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    border: none;
    padding: 16px 18px 16px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 380px;
    pointer-events: auto;
    cursor: pointer;
    animation: dfpSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.dfp-social-notification:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

@keyframes dfpSlideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.dfp-notification-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dfp-notification-content {
    flex: 1;
    min-width: 0;
}

.dfp-notification-text {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 4px 0;
    font-weight: 400;
}

.dfp-notification-name {
    font-weight: 600;
    color: #111827;
    font-size: 13px;
}

.dfp-notification-location {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.dfp-notification-product {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    font-weight: 500;
}

.dfp-notification-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.dfp-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #9ca3af;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.dfp-social-notification:hover .dfp-notification-close {
    opacity: 1;
}

.dfp-notification-close:hover {
    color: #374151;
    background: rgba(0, 0, 0, 0.06);
}

/* Mobile */
@media (max-width: 640px) {
    #dfp-social-proof-container {
        left: 12px;
        right: 12px;
        bottom: 16px;
    }

    .dfp-social-notification {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 14px 16px 14px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .dfp-notification-avatar {
        width: 44px;
        height: 44px;
    }

    .dfp-notification-text {
        font-size: 12px;
    }

    .dfp-notification-name {
        font-size: 12px;
    }

    .dfp-notification-location {
        font-size: 11px;
    }

    .dfp-notification-close {
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}
