.mock-toast {
  position: fixed;
  right: 24px;
  top: 112px;
  z-index: 2000;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 18px;
  border-radius: 4px;
  background: #222;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.mock-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mock-toast.success {
  background: #2d7d46;
}

.mock-toast.warning {
  background: #9d6d00;
}

.mock-search-results {
  display: none;
  margin-top: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  max-height: 420px;
  overflow: auto;
}

.mock-search-results.is-visible {
  display: block;
}

.mock-search-results .mock-search-empty,
.mock-search-results a {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid #efefef;
}

.mock-search-results a:hover {
  background: #fdd000;
}

.mock-search-results strong {
  display: block;
  font-size: 16px;
  color: #333;
}

.mock-search-results span {
  display: block;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 4px;
}

.mock-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .76);
}

.mock-video-overlay.is-visible {
  display: flex;
}

.mock-video-box {
  position: relative;
  width: min(920px, 92vw);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.mock-video-box video {
  display: block;
  width: 100%;
  max-height: 78vh;
}

.mock-video-close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #fdd000;
  color: #222;
  font-size: 24px;
  line-height: 36px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mock-toast {
    top: 84px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }

  .mock-search-results {
    max-height: 360px;
  }
}
