@keyframes eebFadeViewerSmooth {
  0% { opacity: 0; transform: scale(0.98) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.eeb-animated-viewer-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
  overflow: hidden;
  background: #ffffff;
  animation: eebFadeViewerSmooth 1.4s cubic-bezier(0.25, 1, 0.2, 1) forwards;
}

.eeb-3d-viewer {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.2, 1);
}

.eeb-3d-viewer.model-loaded {
  opacity: 1;
}

.eeb-hotspot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(0,0,0,0.65);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.eeb-hotspot:hover {
  transform: scale(1.15);
  background: rgba(0,0,0,0.85);
}

.eeb-hotspot-icon {
  font-size: 18px;
  line-height: 1;
}

.eeb-hotspot-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.eeb-hotspot:hover .eeb-hotspot-label,
.eeb-hotspot:focus .eeb-hotspot-label {
  opacity: 1;
}

.eeb-hotspot[data-active] {
  background: rgba(30, 80, 200, 0.85);
}

.eeb-vr-frame-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
  background: #ffffff;
}

.eeb-vr-frame {
  display: block;
  width: 100%;
  border: 0;
}
