/* 1. Základ - schováno VŠUDE (přidáno !important) */
.retino-floating-widget {
  position: fixed;
  bottom: 150px; 
  left: 20px;
  z-index: 99999;
  transform: scale(0.7);
  transform-origin: left bottom;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
  display: none !important; 
}

/* 2. Zobrazení POUZE na PC a POUZE na hlavní stránce (přidáno !important) */
@media screen and (min-width: 769px) {
  body.in-index .retino-floating-widget {
    display: block !important; 
  }
}