/*
 * holder.css — lock overlay for holder-check.js
 * Self-contained: every selector is prefixed yiq-holder-* to avoid app collisions.
 */

/* Lock the underlying page: blur + dim + block pointer events */
.yiq-holder-locked { overflow:hidden !important; }
.yiq-holder-locked body > *:not(#yiq-holder-bg) {
  filter: blur(8px) brightness(.35) !important;
  pointer-events: none !important;
  user-select: none !important;
}

#yiq-holder-bg {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(20,20,24,.94);
  display: flex; align-items: center; justify-content: center;
  font: 15px/1.55 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1d1d1f;
  padding: 16px;
}

.yiq-holder-modal {
  background: #fff;
  max-width: 460px; width: 100%;
  border-radius: 16px;
  padding: 32px 30px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.yiq-holder-eyebrow {
  color: #a88a3a;
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 6px;
}
.yiq-holder-modal h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1d1d1f;
}
.yiq-holder-sub {
  color: #444;
  margin: 0 0 20px 0;
  font-size: .95rem;
}
.yiq-holder-modal form { display:flex; flex-direction:column; gap:10px; }
.yiq-holder-label {
  font-size: .78rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #86868b;
  margin-bottom: -2px;
}
.yiq-holder-modal input {
  font: 15px/1.4 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 12px 14px;
  border: 2px solid #e0d6c0;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: #1d1d1f;
  width: 100%;
  box-sizing: border-box;
}
.yiq-holder-modal input:focus { border-color: #a88a3a; }
.yiq-holder-btn {
  background: #1d1d1f;
  color: #fff;
  border: none;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .3px;
  margin-top: 4px;
}
.yiq-holder-btn:hover { background: #000; }
#yiq-holder-msg {
  min-height: 22px;
  font-size: .88rem;
  margin-top: 2px;
}
.yiq-holder-error { color: #a83a3a; font-weight: 700; }
