.popup {
    position: fixed;
    bottom: -400px;
    right: 10px;
    margin: auto;
    width: 100%;
    max-width: 400px;
    background: var(--bg-color);
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.popup__title {
    font-size: 24px;
    font-weight: 700;
}

.popup__text {
    font-size: 20px;
}

@media (max-width: 768px) {
    .popup {
        left: 0;
        right: 0;
    }
    
}

.popup.active {
    bottom: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup i {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}