* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
  color: #222;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.viewer-wrap {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.viewer {
  width: 100%;
  /* magasabb keret, hogy kényelmesen elférjen a teljes tárgy */
  aspect-ratio: 4 / 5;              /* igény szerint: 3/4, 1/1 stb. */
  display: grid;
  place-items: center;
  user-select: none;
  touch-action: none;               /* saját gesztuskezelés */
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.1);
}

.viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain;              /* ne vágjon bele */
  object-position: bottom center;   /* az aljára horgonyozva */
  pointer-events: none;             /* az eseményeket a konténer kapja */
  transition: transform 0.15s ease; /* finom zoom animáció */
  will-change: transform;
}

.hint {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
}
