.social-proof-popup {
    position: fixed;
    bottom: 30px;
    left: -600px; /* Initially hidden off-screen to the left */
    width: 420px;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    padding: 15px;
    z-index: 99999;
    transition: left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.2s ease;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #f1f1f1;
    text-decoration: none; /* In case we use an <a> tag */
    cursor: pointer;
}

.social-proof-popup:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.social-proof-popup.show {
    left: 30px;
}

.social-proof-image-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #eef2f6;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.social-proof-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof-content {
    margin-left: 18px;
    flex-grow: 1;
    padding-right: 15px;
}

.social-proof-title {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 4px 0;
    font-weight: 500;
    line-height: 1.2;
}

.social-proof-product {
    font-size: 17px;
    color: #1e3a8a; /* Deep blue text */
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive adjust for mobile */
@media (max-width: 480px) {
    .social-proof-popup {
        bottom: 20px;
        width: 350px;
    }
    .social-proof-popup.show {
        left: 15px;
    }
    .social-proof-image-container {
        width: 65px;
        height: 65px;
    }
}
