.shoot-streetview-panel {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: var(--shoot-bg);
}

.shoot-streetview-panel.is-active {
    z-index: 12000;
    pointer-events: auto;
}

.shoot-streetview-canvas {
    position: absolute;
    inset: 0;
    background: var(--shoot-surface-solid);
}

.shoot-streetview-header {
    position: absolute;
    z-index: 1;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 11px 10px 14px;
    color: var(--shoot-text);
    border: 1px solid var(--shoot-line-strong);
    border-radius: var(--shoot-radius-card);
    background: rgba(20, 18, 50, .92);
    box-shadow: var(--shoot-card-shadow);
}

.shoot-streetview-eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--shoot-accent);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .13em;
}

.shoot-streetview-header strong {
    display: block;
    max-width: min(68vw, 460px);
    overflow: hidden;
    font-size: .88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shoot-streetview-close {
    display: grid;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0 0 2px;
    color: var(--shoot-text);
    border: 1px solid var(--shoot-line-strong);
    border-radius: 50%;
    background: var(--shoot-surface-strong);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
}

.shoot-streetview-close:hover,
.shoot-streetview-close:focus-visible {
    border-color: var(--shoot-accent-line);
    outline: 2px solid var(--shoot-accent);
    outline-offset: 2px;
}

.shoot-streetview-notice {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    left: 14px;
    margin: 0;
    padding: 9px 12px;
    color: var(--shoot-text);
    border: 1px solid var(--shoot-line-strong);
    border-radius: var(--shoot-radius-control);
    background: rgba(20, 18, 50, .92);
    box-shadow: var(--shoot-card-shadow);
    font-size: .78rem;
    text-align: center;
}

.shoot-streetview-notice:empty {
    display: none;
}
