/* ── Blok Galeri 360 (page builder) ───────────────────────── */
.bk-360 {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.bk-360-viewer {
    width: 100%;
    background: #000;
}

.bk-360-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    background: #f1f2f6;
}

.bk-360-controls button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    background: #e9ecef;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color .15s ease;
}
.bk-360-controls button:hover { background: #dfe2e6; }
.bk-360-controls button.bk-360-reset {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #fff;
}
.bk-360-controls button.bk-360-reset:hover { opacity: .92; }
.bk-360-controls button.bk-360-autorotate.is-active {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.bk-360-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.bk-360-thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .75;
    transition: opacity .15s ease, border-color .15s ease;
}
.bk-360-thumb:hover { opacity: 1; }
.bk-360-thumb.active {
    opacity: 1;
    border-color: #6366f1;
}

/* Sembunyikan toolbar bawaan Pannellum — kita pakai tombol kustom sendiri */
.bk-360-viewer .pnlm-controls-container,
.bk-360-viewer .pnlm-compass {
    display: none !important;
}
