/* ==========================================================================
   Wizo — discreet bar shown on every demo website.
   Kept in its own file so the demos themselves stay free of Wizo styling.
   ========================================================================== */

.wizo-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 24px);
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: rgba(12, 14, 20, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .7);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.3;
}

.wizo-bar b {
  color: #fff;
  font-weight: 600;
}

.wizo-bar .wizo-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(120deg, #1d4ed8, #3b82f6 55%, #22d3ee);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease;
}
.wizo-bar .wizo-back:hover { transform: translateY(-1px); }
.wizo-bar .wizo-back svg { width: 13px; height: 13px; }

@media (max-width: 700px) {
  .wizo-bar { font-size: 11px; gap: 9px; padding-left: 13px; bottom: 10px; }
  .wizo-bar .wizo-note { display: none; }
}
