.wc-eqp-gallery-image {
  width: 100%;
}

.wc-eqp-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;
  overflow: hidden;
  background: #050505;
  border-radius: 10px;
  cursor: grab;
  touch-action: none;
}

.wc-eqp-viewer.is-dragging {
  cursor: grabbing;
}

.wc-eqp-viewer canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.wc-eqp-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  background: radial-gradient(circle, rgba(40,40,40,0.8), rgba(0,0,0,0.95));
}

.wc-eqp-fullscreen {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.wc-eqp-fullscreen:hover {
  background: #fff;
}

.wc-eqp-viewer:fullscreen {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  border-radius: 0;
}

@media (max-width: 768px) {
  .wc-eqp-viewer {
    min-height: 300px;
  }
}
