#last-bought-popup {
    position: fixed;
    bottom: 25px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ccc;
    padding: 10px;
    display: block;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}
#last-bought-popup .item {
    display: none;
    align-items: center;
}
#last-bought-popup .item.active {
    display: flex;
}
#last-bought-popup img {
    max-width: 70px;
    margin-right: 10px;
}
#last-bought-popup .info a {
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
}
#last-bought-popup .info p {
    margin: 0;
    font-size: 0.8em;
    line-height: 17px !important;
}

#last-bought-popup .close-btn {
    position: absolute;
    left: 0px;
    bottom: -20px;
    cursor: pointer;
    font-size: 0.8em;
    color:#7a7a7a;

}