/* Social Proof Notification Styles */
#social-proof-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 999999;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.social-proof-notification {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 6px 6px;
    margin-bottom: 0px;
    width: 320px;
    min-width: 320px;
    position: relative;
    border: 1px solid #e1e5e9;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}
.social-proof-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.social-proof-notification.hide {
    opacity: 0 !important;
    transform: translateY(100%) !important;
    pointer-events: none !important;
    transition: transform 0.4s ease, opacity 0.4s ease !important;
}
.social-proof-notification.show:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease;
}
.social-proof-close {
    position: absolute !important;
    top: 6px !important;
    right: 8px !important;
    background: none !important;
    border: none !important;
    font-size: 19px !important;
    color: #999999 !important;
    cursor: pointer !important;
    width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1000 !important;
}
.social-proof-close:hover {
    color: #666666 !important;
    background: none !important;
    border: none !important;
    text-decoration: none !important;
}
.social-proof-close:focus {
    color: #666666 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.social-proof-image {
    width: 63px;
    height: 63px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
    background: #f0f2f5;
}
.social-proof-content {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}
.social-proof-customer {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}
.social-proof-location {
    color: #65676b;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}
.social-proof-action {
    color: #000000;
    font-size: 13px;
    margin: 2px 0 0 0;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.social-proof-product {
    color: #000000;
    font-weight: 700;
}
.social-proof-time {
    display: flex;
    align-items: center;
    margin-top: 4px;
    color: #888888;
    font-size: 12px;
}
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    color: #888888;
    font-size: 12px;
    padding: 0;
    margin-left: 5px;
    font-weight: 500;
}
.social-proof-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background: #939393;
    border-radius: 50%;
    flex-shrink: 0;
}
.social-proof-badge-icon svg {
    width: 8px;
    height: 8px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #social-proof-container {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    .social-proof-notification {
        width: 100%;
        min-width: unset;
		border: 1px solid #e1e5e9;  /* Border wieder rein */
        border-radius: 6px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
        padding: 4px 6px;
        transform: translateY(100%);
    }
    .social-proof-notification.show {
        transform: translateY(0);
    }
    .social-proof-notification.hide {
        transform: translateY(100%) !important;
    }
    .social-proof-notification.show:hover {
        transform: translateY(0);
    }
    .social-proof-image {
        width: 60px;
        height: 60px;
    }
    .social-proof-customer {
        font-size: 13px;
    }
    .social-proof-action {
        font-size: 12px;
    }
}
