/* BKZ product 3D viewer. Designed for HostCMS product card slider. */
.bkz-3d-thumbs-column {
  width: 90px;
  margin-right: 10px;
  display: block;
  flex: 0 0 90px;
}
.bkz-3d-thumbs-column #carousel,
.bkz-3d-thumbs-column .flexslider {
  width: 90px;
  margin-right: 0;
}
.bkz-3d-thumb {
  width: 90px;
  height: 90px;
  margin: 10px 0 0 0;
  list-style: none;
  cursor: pointer;
  display: block;
  clear: both;
}
.bkz-3d-thumb__box {
  box-sizing: border-box;
  width: 90px;
  height: 90px;
  border: 1px solid #d7dce5;
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #15156d;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s;
}
.bkz-3d-thumb:hover .bkz-3d-thumb__box,
.bkz-3d-thumb.active .bkz-3d-thumb__box {
  border-color: #15156d;
  box-shadow: inset 0 0 0 1px #15156d;
}
.bkz-3d-thumb img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 6px;
}
.bkz-3d-stage {
  position: relative;
  width: 400px;
  height: 400px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  background: #1f2937;
}
.bkz-3d-stage model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: radial-gradient(circle at 50% 35%, #536275 0%, #2f3b4a 45%, #18202b 100%);
}
.bkz-3d-controls {
  position: absolute;
  z-index: 5;
  left: 10px;
  right: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  pointer-events: none;
}
.bkz-3d-controls button {
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 14px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(15,23,42,.72);
  font-size: 12px;
  line-height: 1.1;
  cursor: pointer;
}
.bkz-3d-controls button:hover,
.bkz-3d-controls button.active {
  background: #b41716;
  border-color: #b41716;
}
.bkz-3d-status {
  position: absolute;
  z-index: 4;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: #d7dde8;
  background: rgba(15,23,42,.55);
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 12px;
}
@media (max-width: 560px) {
  .bkz-3d-thumbs-column {
    width: 50px;
    margin-right: 10px;
    flex-basis: 50px;
  }
  .bkz-3d-thumbs-column #carousel,
  .bkz-3d-thumbs-column .flexslider {
    width: 50px;
  }
  .bkz-3d-thumb,
  .bkz-3d-thumb__box {
    width: 50px;
    height: 50px;
  }
  .bkz-3d-thumb img {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
  }
  .bkz-3d-thumb span {
    font-size: 10px;
    line-height: 1.05;
  }
}
