/* TRIGGER BUTTON */
.zt-trigger-btn {
  background: var(--zt-gradient);
  color: white;
  border: none;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
  z-index: 9999;
}
.zt-trigger-btn:hover { transform: scale(1.05); box-shadow: 0 14px 28px rgba(14, 165, 233, 0.35); }
.zt-trigger-btn img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
