/* ==========================================================================
   Lote — Phone screen mockup styles
   Used inside .lote-phone__screen on Personal + Merchant hero sections.
   ========================================================================== */

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--c-ink-900);
  background: var(--c-paper);
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 0;
  font-size: 13px;
  font-weight: 600;
}

.phone-dot {
  width: 3px;
  height: 3px;
  background: var(--c-ink-900);
  border-radius: 999px;
}
.phone-dot--pulse {
  width: 6px;
  height: 6px;
  background: var(--accent-positive);
  animation: phonePulse 1.4s infinite;
}
@keyframes phonePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

.phone-body { flex: 1; padding: 0 18px 18px; overflow: hidden; }

.phone-row { display: flex; align-items: center; justify-content: space-between; }
.phone-greet { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.phone-sub { font-size: 12px; color: var(--c-ink-500); margin-top: 2px; }
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--c-ink-900);
  color: var(--c-paper-raised);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}

.phone-card {
  margin-top: 18px;
  padding: 18px;
  background: var(--c-ink-900);
  color: var(--c-paper-raised);
  border-radius: 18px;
}
.phone-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,238,227,0.6);
}
.phone-amount {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  margin-top: 6px;
}
.phone-progress {
  margin-top: 14px;
  height: 4px;
  background: rgba(244,238,227,0.16);
  border-radius: 999px;
  overflow: hidden;
}
.phone-progress span {
  display: block; height: 100%;
  background: var(--c-accent);
  border-radius: 999px;
}
.phone-progress-meta {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: rgba(244,238,227,0.6);
  margin-top: 6px;
}

.phone-actions {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; margin-top: 16px;
}
.phone-action {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10px;
  color: rgba(244,238,227,0.7);
}
.phone-action__icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(244,238,227,0.08);
  display: flex; align-items: center; justify-content: center;
}
.phone-action__icon img,
.phone-action__icon svg {
  width: 16px; height: 16px;
  filter: invert(95%) sepia(8%) saturate(298%) hue-rotate(345deg) brightness(98%) contrast(89%);
}

.phone-section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding: 0 2px;
  font-size: 12px; font-weight: 600;
  color: var(--c-ink-700);
}

.phone-tx {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--c-line-300);
}
.phone-tx:last-child { border-bottom: 0; }
.phone-tx__icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--c-paper-deep);
  flex-shrink: 0;
}
.phone-tx__main { flex: 1; min-width: 0; }
.phone-tx__who { font-size: 12px; font-weight: 600; }
.phone-tx__what { font-size: 10px; color: var(--c-ink-500); margin-top: 1px; }
.phone-tx__amount { font-size: 13px; font-weight: 600; }
.phone-tx__amount.is-pos { color: var(--accent-positive); }

/* ---------- Merchant screen ---------------------------------------- */

.phone-back {
  font-size: 16px; color: var(--c-ink-700);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.phone-title { font-size: 14px; font-weight: 600; }

.phone-amount-display {
  margin-top: 20px;
  padding: 22px;
  background: var(--c-ink-900);
  color: var(--c-paper-raised);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
}
.phone-amount-display__eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244,238,227,0.6);
}
.phone-amount-display__val { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }

.phone-qr {
  margin-top: 18px;
  padding: 18px;
  background: var(--c-paper-raised);
  border-radius: 18px;
  border: 1px solid var(--c-line-300);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.phone-qr__wrap {
  width: 180px; height: 180px;
  background: var(--c-paper);
  border-radius: 8px;
  padding: 6px;
  box-sizing: border-box;
}
.phone-qr__caption { font-size: 11px; color: var(--c-ink-500); }

.phone-merchant-status {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  background: var(--accent-positive-soft);
  color: var(--accent-positive);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  align-self: center;
}

.phone-cta {
  margin-top: 12px;
  width: 100%;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--c-line-500);
  background: transparent;
  color: var(--c-ink-700);
  font-size: 13px;
  cursor: pointer;
}
