.cgp-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.cgp-item {
    cursor: pointer;
    text-align: center;
    width: 320px;
}
.cgp-item img {
    width: 100%;
    border-radius: 8px;
}

/* Popup */
.cgp-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
}
.cgp-popup-content {
    background: #fff;
    margin: auto;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
}
.cgp-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
}
.cgp-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}
