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

.mpb-popup-content {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    padding: 30px;
    max-width: 800px;
    width: 95%;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.mpb-popup-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    flex: 1;
    border-radius: 6px;
}

.mpb-popup-text {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.mpb-popup-text p {
    font-size: 16px;
    margin-bottom: 15px;
}

.mpb-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff3b3f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    width: fit-content;
}

.mpb-btn:hover {
    background: #e32b2f;
}

.mpb-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}