/* ============ APPOLON — wallet picker bottom sheet ============ */
.wsheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wsheet[hidden] { display: none !important; }

.wsheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 12, 0.66);
  backdrop-filter: blur(6px);
  animation: wsFade 0.25s ease both;
}

.wsheet__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(24, 21, 56, 0.98), rgba(10, 9, 24, 0.99));
  border: 1px solid rgba(140, 120, 255, 0.28);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  padding: 14px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -30px 90px -20px rgba(111, 86, 255, 0.55);
  animation: wsUp 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  max-height: 82vh;
  overflow-y: auto;
}

@keyframes wsFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wsUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.wsheet__grip {
  width: 42px;
  height: 5px;
  border-radius: 3px;
  background: rgba(180, 170, 255, 0.3);
  margin: 0 auto 16px;
}

.wsheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wsheet__head h3 { margin: 0; font-size: 1.3rem; }

.wsheet__x {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(140, 120, 255, 0.2);
  background: rgba(111, 86, 255, 0.12);
  color: #ece8ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.wsheet__x:hover { background: rgba(111, 86, 255, 0.26); transform: rotate(90deg); }

.wsheet__sub { margin: 6px 0 16px; color: var(--muted); font-size: 0.9rem; }

.wsheet__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.wsheet__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(140, 120, 255, 0.18);
  border-radius: 16px;
  background: rgba(111, 86, 255, 0.06);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}
.wsheet__item:hover {
  transform: translateY(-2px);
  border-color: var(--stroke-strong);
  background: rgba(111, 86, 255, 0.12);
}

.wsheet__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.wsheet__logo svg { width: 26px; height: 26px; }

.wsheet__name {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wsheet__name small { font-weight: 500; color: var(--muted); font-size: 0.8rem; }

.wsheet__chev { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }

.wsheet__foot { margin: 16px 0 0; text-align: center; color: var(--muted-2); font-size: 0.8rem; }
.wsheet__foot strong { color: var(--violet-3); font-weight: 600; }
