.cpp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpp-popup {
    width: 570px;
    height: 670px;
    background: white;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.cpp-popup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.cpp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: red;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cpp-close:hover {
    background-color: red;
    color: white;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .cpp-popup {
        width: 90%;
        height: auto;
    }

    .cpp-popup img {
        height: auto;
    }
}
