#cpp-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.gallery-item img {
    height: 250px;
    object-fit: cover;
}
.cpp-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    inset: 0;
}

.cpp-content {
    background: #e91e63;
    width: 90%;
    max-width: 800px;
    margin: auto;
    position: relative;
    top: 5%;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
}

.cpp-close {
    position: absolute;
    top: 0px !important;
    right: 25px !important;
    font-size: 34px;
    cursor: pointer;
    color: #ffff;
}

.cpp-actions a svg {
    width: 25px;
} 

.cpp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 15px;
}

.cpp-item h4 {
    color: #ffff;
    margin: 15px 0px;
}

.cpp-item img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ffff;
    height: 250px;
    object-fit: cover;
}

.cpp-content .whatsapp {
    color: #ffff !important;
}

.cpp-book {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 25px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
}

.cpp-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
	margin-top:20px;
}

.cpp-actions a {
    padding: 10px 24px;
    border-radius: 10px;
    color: #ffff !important;
    text-decoration: none;
    border: 2px solid;
    display: flex;
    gap: 5px;
    align-items: center;
}

.call { background: #2196f3; }
.whatsapp { background: #25D366; }
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .cpp-content {
        width: 80%;
        top: 5%;
        padding: 15px;
        max-height: 90vh;
        overflow-y: auto;
		padding: 60px 20px !important;
    }

    .cpp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cpp-item h4 {
        font-size: 20px;
        margin-top: 16px;
    }

    .cpp-book {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .cpp-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cpp-actions a {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 12px;
		justify-content: center;
    }

    .cpp-close {
        font-size: 40px;
    }
}
