.atelier-viewer {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100vw - 32px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 34px 110px rgba(89, 67, 114, 0.2);
}

.atelier-window {
  height: 520px;
  overflow: hidden;
  cursor: grab;
}

.atelier-window:active {
  cursor: grabbing;
}

.shop-panorama-img {
  width: 160%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.atelier-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(36, 48, 68, 0.16);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    transform 0.3s var(--ease-out),
    background-color 0.3s ease;
}

.atelier-arrow:hover {
  background: var(--white);
  transform: translateY(calc(-50% + 3px)) scale(1.06);
}

.atelier-arrow.left {
  left: 20px;
}

.atelier-arrow.right {
  right: 20px;
}

.atelier-arrow::before {
  width: 12px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 0 3px 3px;
  content: "";
  transform: translateX(2px) rotate(45deg);
}

.atelier-arrow.right::before {
  transform: translateX(-2px) rotate(225deg);
}

.atelier-caption {
  position: absolute;
  right: auto;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 48px);
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(36, 48, 68, 0.1);
  backdrop-filter: blur(12px);
}

.atelier-caption strong {
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  line-height: 1.15;
}

.atelier-caption span {
  color: var(--muted);
  font-size: clamp(0.72rem, 1.9vw, 0.86rem);
  line-height: 1.35;
}

/* Copyright RZU Informatique */
