.app-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 12000;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  background: #10241a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  padding: 10px 14px;
  font: 600 13px/1.35 'DM Sans', sans-serif;
  transition: opacity 0.18s ease, transform 0.18s ease;
  max-width: calc(100vw - 32px);
  text-align: center;
}

.app-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.menu-item.is-coming-soon {
  opacity: 0.76;
}

.menu-item.is-coming-soon::after {
  content: "In curand";
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 4px 7px;
}

button.is-coming-soon,
.btn-secondary.is-coming-soon {
  position: relative;
  opacity: 0.78;
}

button.is-coming-soon::after,
.btn-secondary.is-coming-soon::after {
  content: "In curand";
  margin-left: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.btn-disabled-soft,
button:disabled {
  cursor: not-allowed;
}

@media (max-width: 768px) {
  html,
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .menu-item.is-coming-soon::after {
    font-size: 9px;
    padding: 3px 6px;
  }

  .app-toast {
    bottom: 14px;
    width: calc(100vw - 28px);
  }
}
