.mtb-ticket-button {
  position: fixed;
  z-index: 99999;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 22px;
  border: 0;
  border-radius: 20px;
  background: #c0dce4;
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, 14px);
  transition: opacity .2s ease, transform .2s ease;
}

.mtb-ticket-button.mtb-is-visible { display: flex; }
.mtb-ticket-button.mtb-is-shown { opacity: 1; transform: translate(-50%, 0); }
.mtb-ticket-button:focus-visible { outline: 3px solid #000; outline-offset: 3px; }
.mtb-ticket-icon { display: inline-flex; width: 21px; height: 21px; align-items: center; justify-content: center; }
.mtb-ticket-icon .icon-ticket { display: none; font-size: 20px; line-height: 1; }
.mtb-ticket-icon.mtb-has-theme-icon .icon-ticket { display: inline-block; }
.mtb-ticket-icon.mtb-has-theme-icon .mtb-ticket-fallback { display: none; }
.mtb-ticket-fallback { width: 21px; height: 21px; fill: currentColor; }

@media (hover: hover) {
  .mtb-ticket-button:hover { background: #dbeaf4; }
}

@media (min-width: 768px) {
  .mtb-ticket-button,
  .mtb-ticket-button.mtb-is-visible { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .mtb-ticket-button { transition: none; }
}
