.sr3d-experience {
    --sr3d-accent: #c8ff33;
    --sr3d-panel: rgba(10, 12, 16, .88);
    background: #080a0e;
    border-radius: 18px;
    color: #fff;
    height: var(--sr3d-height, 640px);
    min-height: 360px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.sr3d-stage, .sr3d-model, .sr3d-panorama { height: 100%; width: 100%; }
.sr3d-model { background: radial-gradient(circle at 50% 35%, #303844, #080a0e 70%); }
.sr3d-loader { left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); z-index: 2; }
.sr3d-scenes {
    backdrop-filter: blur(14px);
    background: var(--sr3d-panel);
    border-radius: 999px;
    bottom: 18px;
    display: flex;
    gap: 6px;
    left: 50%;
    max-width: calc(100% - 32px);
    overflow-x: auto;
    padding: 6px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
}
.sr3d-scene-button, .sr3d-ar-button, .sr3d-poll__option {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: inherit;
    cursor: pointer;
    padding: 10px 15px;
    white-space: nowrap;
}
.sr3d-scene-button.is-active, .sr3d-ar-button, .sr3d-poll__option { background: var(--sr3d-accent); color: #111; }
.sr3d-ar-button { bottom: 76px; left: 50%; position: absolute; transform: translateX(-50%); }
.sr3d-hotspot {
    align-items: center;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    gap: 7px;
    padding: 0;
}
.sr3d-hotspot__dot {
    align-items: center;
    background: var(--sr3d-accent);
    border: 3px solid rgba(255,255,255,.9);
    border-radius: 50%;
    color: #111;
    display: flex;
    font: 700 12px/1 system-ui;
    height: 30px;
    justify-content: center;
    width: 30px;
}
.sr3d-hotspot__label {
    background: var(--sr3d-panel);
    border-radius: 8px;
    font: 600 13px/1.2 system-ui;
    opacity: 0;
    padding: 7px 9px;
    transform: translateX(-5px);
    transition: .18s ease;
}
.sr3d-hotspot:hover .sr3d-hotspot__label, .sr3d-hotspot:focus-visible .sr3d-hotspot__label { opacity: 1; transform: none; }
.sr3d-dialog {
    background: #12161e;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    color: #fff;
    max-height: 80vh;
    max-width: 620px;
    padding: 28px;
    width: calc(100% - 40px);
}
.sr3d-dialog::backdrop { backdrop-filter: blur(6px); background: rgba(0,0,0,.66); }
.sr3d-dialog__close { background: transparent; border: 0; color: #fff; cursor: pointer; font-size: 28px; position: absolute; right: 12px; top: 8px; }
.sr3d-dialog img, .sr3d-dialog video { border-radius: 10px; display: block; margin: 0 0 18px; max-height: 50vh; max-width: 100%; }
.sr3d-dialog audio { margin: 0 0 18px; width: 100%; }
.sr3d-cta { background: var(--sr3d-accent); border-radius: 999px; color: #111; display: inline-block; font-weight: 700; margin-top: 14px; padding: 11px 18px; text-decoration: none; }
.sr3d-live { background: var(--sr3d-panel); border-left: 4px solid var(--sr3d-accent); border-radius: 8px; left: 18px; max-width: min(420px, calc(100% - 36px)); opacity: 0; padding: 12px 15px; pointer-events: none; position: absolute; top: 18px; transform: translateY(-10px); transition: .2s ease; z-index: 7; }
.sr3d-live span { display: block; margin-top: 3px; }
.sr3d-live.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.sr3d-live .sr3d-live__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.sr3d-live__link { border: 1px solid currentColor; border-radius: 999px; color: inherit; display: inline-block; font-size: 13px; font-weight: 700; padding: 6px 11px; text-decoration: none; }
.sr3d-live__link--primary { background: var(--sr3d-accent); border-color: var(--sr3d-accent); color: #111; }
.sr3d-experience.is-adding-product .sr3d-hotspot { cursor: progress; }
.sr3d-panorama { background-position: center; background-repeat: repeat-x; background-size: auto 100%; cursor: grab; position: relative; touch-action: none; }
.sr3d-panorama:active { cursor: grabbing; }
.sr3d-panorama__overlay { inset: 0; overflow: hidden; position: absolute; }
.sr3d-panorama__hotspot { position: absolute; transform: translate(-50%, -50%); }
.sr3d-poll { display: grid; gap: 8px; margin-top: 16px; }
@media (max-width: 600px) {
    .sr3d-experience { border-radius: 0; min-height: 480px; }
    .sr3d-scenes { bottom: 10px; }
    .sr3d-hotspot__label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .sr3d-experience *, .sr3d-experience *::before, .sr3d-experience *::after { scroll-behavior: auto !important; transition: none !important; }
}
