.fsp-popup {
    position: fixed;
    background: #fff;
    color: #000;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 99999;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 10px;
    border:1px solid #ccc;
    width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.fsp-popup .fsp-left {
    flex-shrink: 0;
}

.fsp-popup img.fsp-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.fsp-popup .fsp-right {
    display: flex;
    flex-direction: column;
}

.fsp-popup .fsp-name {
    font-weight: 500;
}

.fsp-popup .fsp-product {
    margin: 2px 0;
}

.fsp-popup .fsp-time {
    font-size: 12px;
    color: #ccc;
}

.fsp-popup.bottom-left { bottom: 20px; left: 20px; }
.fsp-popup.bottom-right { bottom: 20px; right: 20px; }
.fsp-popup.top-left { top: 20px; left: 20px; }
.fsp-popup.top-right { top: 20px; right: 20px; }