.ctj-rec-launcher {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: calc(max(20px, env(safe-area-inset-bottom)) + 62px);
  z-index: 2147482990;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: #8a2be2;
  color: #fff;
  box-shadow: 0 8px 22px rgba(41, 18, 71, .22);
  font: 700 15px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none !important;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background-color .18s ease;
}
.ctj-rec-launcher:hover { background: #7020bd; color: #fff; transform: translateY(-1px); }
.ctj-rec-launcher:focus-visible { outline: 3px solid rgba(138, 43, 226, .28); outline-offset: 3px; }
.ctj-rec-launcher-icon { display: grid; width: 24px; height: 24px; place-items: center; }
.ctj-rec-launcher-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.ctj-pwa-standalone .ctj-rec-launcher--pwa {
  position: static !important;
  inset: auto !important;
  gap: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #8a2be2 !important;
  box-shadow: none !important;
  transform: none !important;
}
.ctj-rec-launcher--pwa .ctj-rec-launcher-label { display: none; }
.ctj-rec-launcher--pwa .ctj-rec-launcher-icon { width: 24px; height: 24px; }

@media (max-width: 780px) {
  .ctj-rec-launcher:not(.ctj-rec-launcher--pwa) {
    left: max(12px, env(safe-area-inset-left));
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 59px);
    min-width: 47px;
    min-height: 47px;
    padding: 10px 12px;
  }
  .ctj-rec-launcher:not(.ctj-rec-launcher--pwa) .ctj-rec-launcher-label { display: none; }
}
@media print { .ctj-rec-launcher { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .ctj-rec-launcher { transition: none; } }
