/* ZyroPAI classic-checkout token picker (blue / white brand) */
.zyropai-co {
	position: relative;
	font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
	max-width: 420px;
	margin-top: 6px;
}

.zyropai-co-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 8px 14px;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	transition: border-color .15s, box-shadow .15s;
}
.zyropai-co.open .zyropai-co-trigger,
.zyropai-co-trigger:hover { border-color: #2F62F4; box-shadow: 0 0 0 3px rgba(47,98,244,.12); }

.zyropai-co-trigger-inner { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; color: #0F1729; }
.zyropai-co-caret { color: #9CA3AF; transition: transform .15s; }
.zyropai-co.open .zyropai-co-caret { transform: rotate(180deg); }

.zyropai-co-logo {
	flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
	overflow: hidden; display: flex; align-items: center; justify-content: center;
	background: #F1F5F9; color: #6B7280; font-weight: 700; font-size: 13px;
}
.zyropai-co-logo img { width: 100%; height: 100%; object-fit: cover; }

.zyropai-co-meta { display: flex; flex-direction: column; line-height: 1.2; }
.zyropai-co-sym { font-weight: 700; font-size: 14px; color: #0F1729; }
.zyropai-co-net { font-size: 12px; color: #6B7280; }

.zyropai-co-panel {
	position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 50;
	background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
	box-shadow: 0 12px 32px -8px rgba(15,23,42,.22); overflow: hidden;
}
.zyropai-co-search { padding: 10px; border-bottom: 1px solid #F3F4F6; }
.zyropai-co-search input {
	width: 100%; height: 40px; padding: 0 12px; border: 1px solid #E5E7EB;
	border-radius: 9px; font-size: 14px; outline: none; background: #F9FAFB; color: #0F1729;
	font-family: inherit;
}
.zyropai-co-search input:focus { border-color: #2F62F4; background: #fff; box-shadow: 0 0 0 3px rgba(47,98,244,.12); }

.zyropai-co-list { max-height: 280px; overflow-y: auto; padding: 6px; }
.zyropai-co-row {
	width: 100%; display: flex; align-items: center; gap: 10px;
	padding: 9px 10px; border: none; background: none; border-radius: 9px;
	cursor: pointer; text-align: left;
}
.zyropai-co-row:hover { background: #F9FAFB; }
.zyropai-co-row.selected { background: #EEF3FF; }
.zyropai-co-rowmeta { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.25; }
.zyropai-co-rowname { font-weight: 600; font-size: 14px; color: #0F1729; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zyropai-co-rowname em { font-style: normal; font-weight: 400; font-size: 12px; color: #9CA3AF; margin-left: 4px; }
.zyropai-co-tick { color: #2F62F4; font-weight: 700; }
.zyropai-co-none { padding: 22px 10px; text-align: center; color: #9CA3AF; font-size: 13px; }
