#fsp-popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#fsp-popup-container.fsp-hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

#fsp-popup-container.fsp-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#fsp-popup-container a {
    text-decoration: none !important;
    color: inherit !important;
}

.fsp-popup-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px;
    width: 320px;
    max-width: 90vw;
    border-left: 4px solid #28a745;
}

.fsp-image-container {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
}

.fsp-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fsp-text-container {
    flex-grow: 1;
}

.fsp-buyer-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

#fsp-buyer-name, #fsp-buyer-city {
    font-weight: 600;
    color: #333;
}

.fsp-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
    /* Truncate to 2 lines if too long */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fsp-time-info {
    font-size: 11px;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fsp-verified {
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 480px) {
    #fsp-popup-container {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
    }
    .fsp-popup-content {
        width: 100%;
        max-width: 100%;
        padding: 8px;
    }
    .fsp-image-container {
        width: 50px;
        height: 50px;
        margin-right: 8px;
    }
    .fsp-product-title {
        font-size: 13px;
        -webkit-line-clamp: 1; /* Keep title to 1 line on mobile */
    }
    .fsp-buyer-info {
        font-size: 12px;
    }
    .fsp-time-info {
        font-size: 10px;
    }
    .fsp-verified svg {
        width: 10px;
        height: 10px;
    }
}
