#sale-popup{
position:fixed;
left:20px;
bottom:25px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
padding:10px;
display:flex;
align-items:center;
gap:10px;
width:260px;
z-index:9999;
opacity:0;
transform:translateX(-40px);
transition:all .5s ease;
font-family:tahoma;
}

#sale-popup img{
width:55px;
height:55px;
border-radius:8px;
object-fit:cover;
}

#sale-popup .text{
font-size:13px;
line-height:1.4;
}

#sale-popup .title{
font-weight:bold;
color:#333;
}

#sale-popup .desc{
color:#777;
font-size:12px;
}