#trustysales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #111;
    color: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 99999;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    font-family: -apple-system, sans-serif;
    pointer-events: none;
}

#trustysales-popup.visible {
    opacity: 1;
    transform: translateX(0);
}

.ts-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.ts-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.ts-message {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: white;
    line-height: 1.4;
}