/* Smart‑Tekk Seasonal Magic */
#stfx-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

.stfx-toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1000000;
  pointer-events: none;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  max-width: 260px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(6px);
}

.stfx-toast.stfx-toast--show {
  opacity: 1;
  transform: translateY(0);
}

.stfx-hidden {
  display: none !important;
}
