/* Поисковый виджет vnx.su - плавающая круглая кнопка с лупой (в стиле чата) */
.vnx-search-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 99998;
}
.vnx-search-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ffb600 0%, #ff8a00 100%);
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vnx-search-toggle svg {
  display: block;
}
.vnx-search-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .vnx-search-widget {
    bottom: 70px;
    right: 10px;
  }
  .vnx-search-toggle {
    width: 50px;
    height: 50px;
  }
}
