.side-popup{
    position: fixed;
    left: -400px;
    bottom: 40px;
    width: 350px;
    background: var(--bg-primary1);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.6s ease;
    border-left: 6px solid var(--accent-primary);
}

.side-popup.show{
    left: 30px;
}

.side-popup p{
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.close-side-popup{
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: #f2f2f2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

@media(max-width: 768px){
    .side-popup{
        width: calc(100% - 40px);
        bottom: 20px;
    }

    .side-popup.show{
        right: 20px;
    }
}