#lop-popup { position: fixed; bottom: 24px; left: 24px; z-index: 999999; }
.lop-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(-20px);
    transition: .35s ease;
}
.lop-card.visible { opacity: 1; transform: translateX(0); }

.lop-icon {
    width: 40px;
    height: 40px;
    background: #e9f7ee;
    border: 1px solid #c8efd1;
    border-radius: 8px;
    position: relative;
}
.lop-icon:after {
    content: "\\2713";
    position: absolute;
    left: 11px;
    top: 6px;
    color: #29a346;
    font-size: 20px;
    font-weight: 700;
}

.lop-line1 strong { font-size: 15px; }
.lop-line2 { font-size: 14px; margin-top:4px; }
.lop-line3 { font-size: 12px; color:#666; margin-top:6px; }

@media(max-width:480px){
    .lop-card { min-width: 240px; padding: 10px; }
}
