/* ── Detail Page Wrapper ── */
.cgp-detail-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* ── Back button + badge ── */
.cgp-detail-back {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.cgp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #f4f4f6;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
}
.cgp-back-btn:hover { background: #e0e0e6; color: #111; text-decoration: none; }
.cgp-type-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
}

/* ── Hero Image ── */
.cgp-detail-hero {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 32px;
    background: #e8e8e8;
    max-height: 480px;
}
.cgp-hero-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.cgp-hero-img.cgp-placeholder {
    opacity: .45;
    filter: grayscale(1);
}

/* ── Title + Description ── */
.cgp-detail-content {
    margin-bottom: 40px;
}
.cgp-detail-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 18px;
    line-height: 1.35;
}
.cgp-detail-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
}

/* ── Gallery Section ── */
.cgp-gallery-section {
    margin-top: 10px;
}
.cgp-gallery-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.cgp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 700px) {
    .cgp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
    .cgp-gallery-grid { grid-template-columns: 1fr; }
    .cgp-detail-title { font-size: 22px; }
}
.cgp-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4/3;
}
.cgp-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform .25s;
}
.cgp-gallery-img:hover { transform: scale(1.04); }

.cgp-no-images {
    padding: 30px;
    text-align: center;
    color: #999;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ── Lightbox ── */
#cgp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}
#cgp-lb-img {
    max-width: 88vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,.6);
    display: block;
}
#cgp-lb-close {
    position: absolute;
    top: 18px; right: 22px;
    color: #fff; font-size: 36px;
    cursor: pointer; background: none; border: none; line-height: 1;
}
#cgp-lb-prev, #cgp-lb-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 52px; font-weight: 300;
    cursor: pointer; background: none; border: none; line-height: 1;
    padding: 0 16px;
    opacity: .7;
    transition: opacity .2s;
}
#cgp-lb-prev:hover, #cgp-lb-next:hover { opacity: 1; }
#cgp-lb-prev { left: 10px; }
#cgp-lb-next { right: 10px; }
