/* Конверсійні віджети (сповіщення + прилипаюча кнопка) — спільні для всіх шаблонів.
   Лише мобільна верстка, як і решта проєкту (SPEC, рішення 9) — фіксовані px, без медіа-запитів. */

#lendos-notify {
  position: fixed;
  bottom: 16px;
  z-index: 9998;
  max-width: 280px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
  font: 13px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
#lendos-notify.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#lendos-notify.notify-bottom-left { left: 16px; }
#lendos-notify.notify-bottom-right { right: 16px; }
#lendos-notify .lendos-notify-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  flex: none;
}

#lendos-sticky-order {
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff5722;
  color: #fff;
  font: 700 16px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
#lendos-sticky-order.sticky-bar {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
}
#lendos-sticky-order.sticky-pill {
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 8px;
}
