.popup-container {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-container .popup {
    position: relative;
    background: unset;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    z-index: 10000;

}

.popup-container .popup[data-position="center"] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.popup-container .popup[data-position="bottom_left"] {
    position: fixed;
    bottom: 20px;
    left: 20px;
    margin: 0;
}

.popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.popup-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.popup-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.popup-link {
    display: block;
    text-decoration: none;
}