/**
 * MDS Photo Pills — prompt suggestion pills for the TRX igenerator.
 * Depends on mds-system.css (provides --mds-* tokens).
 */

.mds-photo-pills {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ── Tab row ─────────────────────────────────────────────────────────────── */

.mds-photo-pills__tabs {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.mds-photo-pills__tab {
	padding: 4px 12px;
	border-radius: var(--mds-radius-pill, 999px);
	border: 1px solid var(--mds-bd);
	background: transparent;
	color: var(--mds-text-muted);
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	font-family: inherit;
	line-height: 1;
}

.mds-photo-pills__tab:hover {
	color: var(--mds-text);
}

.mds-photo-pills__tab--active {
	background: var(--mds-bg3);
	color: var(--mds-text);
	border-color: var(--mds-accent);
}

/* ── Panes ───────────────────────────────────────────────────────────────── */

.mds-photo-pills__panes {
	min-height: 0;
}

.mds-photo-pills__pane {
	display: none;
	flex-wrap: wrap;
	gap: 6px;
}

.mds-photo-pills__pane--active {
	display: flex;
}

/* ── Individual pills ────────────────────────────────────────────────────── */

.mds-photo-pills__pill {
	padding: 4px 12px;
	border-radius: var(--mds-radius-pill, 999px);
	border: 1px solid var(--mds-bd);
	background: transparent;
	color: var(--mds-text-muted);
	font-size: 0.8em;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	white-space: nowrap;
	line-height: 1;
}

.mds-photo-pills__pill:hover {
	background: var(--mds-bg3);
	border-color: var(--mds-accent);
	color: var(--mds-text);
}
