.wm360-viewer {
  --wm360-bg: #efefef;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--wm360-bg);
  padding: 24px;
  border-radius: 10px;
  overflow: hidden;
}

.wm360-sidebar {
  padding-top: 40px;
}

.wm360-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  color: #111;
}

.wm360-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm360-thumb {
  width: 60px;
  height: 44px;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  border-radius: 3px;
}

.wm360-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm360-thumb.is-active {
  border-color: #d40000;
}

.wm360-stage-wrap {
  min-width: 0;
}

.wm360-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.wm360-stage.is-dragging {
  cursor: grabbing;
}

.wm360-canvas {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.wm360-loading {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 300px;
  display: none;
  align-items: center;
  justify-content: center;
}

.wm360-loading-bar {
  width: 100%;
  height: 8px;
  background: rgba(0,0,0,.08);
  border-radius: 30px;
  overflow: hidden;
}

.wm360-loading-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(0,0,0,.55);
  transition: width .2s ease;
}

.wm360-caption {
  text-align: center;
  margin-top: 10px;
  color: #9d9d9d;
}

.wm360-caption-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 3px solid #cfcfcf;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 8px;
  color: #bdbdbd;
}

.wm360-caption-text {
  font-size: 16px;
}

@media (max-width: 900px) {
  .wm360-viewer {
    grid-template-columns: 1fr;
  }

  .wm360-sidebar {
    padding-top: 0;
  }

  .wm360-stage {
    min-height: 280px;
  }

  .wm360-thumb {
    width: 54px;
    height: 40px;
  }
}