.toast {
  position: fixed;
  top: 28px;
  left: 50%;
  z-index: 9999;

  min-width: 320px;
  max-width: 460px;
  padding: 18px 26px;

  border-radius: 18px;
  font-size: 15.5px;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;

  background: linear-gradient(
    180deg,
    rgba(35,35,35,0.96),
    rgba(18,18,18,0.96)
  );
  color: #fff;

  transform: translate(-50%, -12px) scale(0.96);
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 0 rgba(0,0,0,0);
}

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

/* SUCCESS */
.toast.success {
  border: 1px solid rgba(80, 255, 180, 0.55);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 24px rgba(80, 255, 180, 0.25);
}

/* ERROR */
.toast.error {
  border: 1px solid rgba(255, 110, 110, 0.55);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 24px rgba(255, 110, 110, 0.25);
}

.toast.success::before {
  content: "✓";
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
  color: rgb(90, 255, 180);
}

.toast.error::before {
  content: "✕";
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
  color: rgb(255, 130, 130);
}


.contact-desc .accent{
  display: inline;
  white-space: normal;
  padding: 0.18em 0.6em;
  margin: 0 0.15em;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  color: #ff6a1a;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid rgba(255, 106, 26, 0.45);
  box-shadow:
    0 0 6px rgba(255,106,26,0.35),
    0 0 14px rgba(255,106,26,0.25),
    inset 0 0 8px rgba(255,106,26,0.12);


  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
