/* ============================================================
   Sitemap Lightbox
   File: your-theme/components/sitemap-lightbox.css
   ============================================================ */

.sitemap-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: zoom-in;
}

.sitemap-lightbox {
    display: block;
    position: relative;
    overflow: hidden;
}

.sitemap-img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.sitemap-lightbox:hover .sitemap-img {
    transform: scale(1.02);
}

/* Expand icon overlay */
.sitemap-lightbox-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sitemap-lightbox:hover .sitemap-lightbox-icon {
    opacity: 1;
}

/* ── PhotoSwipe overrides ─────────────────────────────────── */
.pswp__bg {
    background: rgba(0, 0, 0, 0.85);
}

.pswp__ui--fit .pswp__top-bar {
    background: none;
}

.pswp__button--zoom {
    display: block !important;
    padding: 0 !important;
}

.pswp__button--close {
	padding: 0 !important;
}

.pswp {
    overflow: visible !important;
}

.pswp__top-bar {
    overflow: visible !important;
}