.zoomable {
  width: 250px;
  transition: transform 0.4s ease, box-shadow 0.3s ease, left 0.3s ease;
  cursor: zoom-in;
  position: relative;
  z-index: 1;
}

.zoomable.zoomed {
  transform: scale(3);
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  cursor: zoom-out;
}
  