.magnifier {
  
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
 
  z-index: 900;
  color: #666;
}

.magnifier.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.magnifier:hover {
  background: #f5f5f5;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.magnifier.is-trip {
  bottom: 90px;
}

.magnifier-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.magnifier-img i {
  font-size: 32px;
}
