.eao-picker { display: block; }
.eao-picker__row { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 8px; }
@media (max-width: 720px) { .eao-picker__row { grid-template-columns: 1fr 1fr; } .eao-picker__row button { grid-column: 1 / -1; } }
.eao-picker select { appearance: none; width: 100%; padding: 12px 10px; border: 1px solid #e6e9ee; border-radius: 8px; background: #fff; font: inherit; }
.eao-picker select:disabled { opacity: .55; cursor: not-allowed; }
.eao-picker__result { margin-top: 14px; }
.eao-picker__result .muted { color: #5b6672; }

/* ---------- Spec sheet ---------- */
.eao-spec {
	background: #fff;
	color: #14181d;
	border: 1px solid #e6e9ee;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(10,15,20,.06);
}
.eao-spec__head {
	background: linear-gradient(135deg, #0b0d10 0%, #1a1f26 100%);
	color: #fff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}
.eao-spec__title { margin: 0; font-size: 1.15rem; letter-spacing: -.01em; }
.eao-spec__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.eao-spec__badge {
	font-size: .72rem; padding: 3px 8px; border-radius: 999px; font-weight: 600;
	text-transform: uppercase; letter-spacing: .04em;
}
.eao-spec__badge--src { background: rgba(255,255,255,.12); color: #d5dae0; }
.eao-spec__badge--verified { background: #00a32a; color: #fff; }
.eao-spec__section { border-top: 1px solid #e6e9ee; padding: 0; }
.eao-spec__section:first-of-type { border-top: 0; }
.eao-spec__section-title {
	margin: 0; padding: 10px 20px; font-size: .8rem; color: #5b6672;
	text-transform: uppercase; letter-spacing: .08em; background: #f6f8fb;
	border-bottom: 1px solid #e6e9ee; font-weight: 700;
}
.eao-spec__table { width: 100%; border-collapse: collapse; }
.eao-spec__table tr:nth-child(even) { background: #fafbfc; }
.eao-spec__table th, .eao-spec__table td { text-align: left; padding: 10px 20px; border-bottom: 1px solid #eef1f5; font-size: .95rem; }
.eao-spec__table tr:last-child th, .eao-spec__table tr:last-child td { border-bottom: 0; }
.eao-spec__table th { width: 40%; font-weight: 600; color: #5b6672; }
.eao-spec__table td { color: #14181d; font-weight: 600; }
.eao-spec__foot { padding: 12px 20px; background: #f6f8fb; border-top: 1px solid #e6e9ee; text-align: right; }
.eao-spec__more { color: var(--eao-accent, #ff6a00); font-weight: 600; text-decoration: none; }
.eao-spec__more:hover { text-decoration: underline; }
.eao-spec__empty { padding: 18px 20px; margin: 0; color: #5b6672; }

@media (max-width: 560px) {
	.eao-spec__table th { width: 50%; padding: 10px 12px; }
	.eao-spec__table td { padding: 10px 12px; }
	.eao-spec__head { padding: 14px 16px; }
}

.eao-picker__tabs { display: flex; gap: 4px; margin: 14px 0 0; border-bottom: 1px solid #e6e9ee; flex-wrap: wrap; }
.eao-picker__tabs[hidden] { display: none !important; }
.eao-picker__tab { background: transparent; border: 0; padding: 10px 14px; cursor: pointer; font: inherit; color: #5b6672; border-bottom: 2px solid transparent; }
.eao-picker__tab:hover { color: #14181d; }
.eao-picker__tab.is-active { color: #14181d; border-bottom-color: var(--eao-accent, #ff6a00); font-weight: 600; }

.eao-picker__tool { background: #fff; font-weight: 600; }
