/* POS giriş — panel girişiyle aynı iskelet; yalnızca POS’a özel parçalar */

.login-gate--pos-trust .login-gate__field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #8a8a8a;
  line-height: 1.4;
}

.login-gate--pos-trust .login-gate__field-hint code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  background: #f3f4f6;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  color: #111;
}

.pos-trust-unlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pos-trust-device {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: -0.35rem 0 1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #111;
  color: #f7c948;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pos-trust-unlock__hint {
  margin: 0.85rem 0 0;
  color: #8a8a8a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pos-trust-unlock.is-busy .pos-trust-unlock__hint {
  color: #111;
}

.pos-trust-unlock.is-error .pos-trust-pinpad {
  animation: pos-trust-shake 420ms ease;
}

.pos-trust-unlock.is-error .pos-pinpad__dots span {
  border-color: #dc2626;
}

@keyframes pos-trust-shake {
  0%,
  100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

.pos-trust-pinpad {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 292px;
  gap: 1.15rem;
}

.pos-trust-pinpad .pos-pinpad__dots {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pos-trust-pinpad .pos-pinpad__dots span {
  flex: 0 0 auto;
  width: 42px;
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
  display: grid;
  place-items: center;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.pos-trust-pinpad .pos-pinpad__dots span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
  transform: scale(0.4);
  transition: transform 160ms ease, background 160ms ease;
}

.pos-trust-pinpad .pos-pinpad__dots span.is-next {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.pos-trust-pinpad .pos-pinpad__dots span.is-filled {
  background: #111;
  border-color: #111;
}

.pos-trust-pinpad .pos-pinpad__dots span.is-filled::after {
  background: #f7c948;
  transform: scale(1);
}

.pos-trust-pinpad .pos-pinpad__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0.55rem;
  width: 100%;
}

.pos-trust-pinpad .pos-pinpad__key {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1.12 / 1;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  color: #111;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.05);
  font-size: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.pos-trust-pinpad .pos-pinpad__key strong {
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pos-trust-pinpad .pos-pinpad__key em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9ca3af;
  min-height: 0.7rem;
}

.pos-trust-pinpad .pos-pinpad__key:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.2);
}

.pos-trust-pinpad .pos-pinpad__key:active:not(:disabled) {
  transform: scale(0.96);
  background: #111;
  color: #fff;
  border-color: #111;
}

.pos-trust-pinpad .pos-pinpad__key:active:not(:disabled) em {
  color: rgba(255, 255, 255, 0.55);
}

.pos-trust-pinpad .pos-pinpad__key.is-action {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #6b7280;
  font-size: 1.15rem;
}

.pos-trust-pinpad .pos-pinpad__key.is-action:active:not(:disabled) {
  background: rgba(17, 17, 17, 0.06);
  color: #111;
}

.pos-trust-unlock.is-busy .pos-trust-pinpad {
  opacity: 0.55;
  pointer-events: none;
}

.pos-trust-links {
  display: flex;
  width: 100%;
  margin-top: 1.1rem;
  justify-content: space-between;
}

.pos-trust-text-btn {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.pos-trust-text-btn--block {
  display: block;
  width: 100%;
  margin: 1rem auto 0;
  text-align: center;
}

.pos-trust-code-input {
  text-align: center;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase;
}
