/*
 * $15 Team Builder — モバイルファースト。
 * ドラッグ&ドロップは実装しない（タップのみ）。
 */

.bf-tbd {
	max-width: 720px;
	margin: 0 auto;
	padding: 16px 16px 96px;
	font-family: inherit;
	color: #1a1a1a;
}

.bf-tbd-hero {
	text-align: center;
	margin-bottom: 20px;
}

.bf-tbd-hero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	color: #666;
	margin: 0 0 4px;
}

.bf-tbd-hero__title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px;
}

.bf-tbd-lead {
	font-size: 14px;
	color: #444;
	margin: 0;
}

.bf-tbd-noscript,
.bf-tbd-loading,
.bf-tbd-error {
	text-align: center;
	padding: 24px 12px;
	color: #666;
}

/* ---- Tier sections ---- */

.bf-tbd-tier {
	margin-bottom: 20px;
}

.bf-tbd-tier__heading {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px;
	padding-left: 2px;
}

.bf-tbd-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

@media (min-width: 480px) {
	.bf-tbd-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---- Player card ---- */

.bf-tbd-card {
	display: block;
	width: 100%;
	text-align: left;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: #fff;
	padding: 10px;
	cursor: pointer;
	font: inherit;
	transition: border-color 0.12s ease, background-color 0.12s ease, transform 0.08s ease;
}

.bf-tbd-card:active {
	transform: scale(0.98);
}

.bf-tbd-card__price {
	font-size: 12px;
	font-weight: 700;
	color: #b8860b;
}

.bf-tbd-card__name {
	font-size: 14px;
	font-weight: 600;
	margin-top: 2px;
	line-height: 1.3;
}

.bf-tbd-card__team {
	font-size: 11px;
	color: #888;
	margin-top: 2px;
}

.bf-tbd-card.is-selected {
	border-color: #1a7f37;
	background: #eafaf0;
}

.bf-tbd-card.is-selected .bf-tbd-card__name::after {
	content: " \2713";
	color: #1a7f37;
}

.bf-tbd-card.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.bf-tbd-card.is-flash {
	border-color: #c62828;
	background: #fdecea;
}

/* ---- Sticky budget summary ---- */

.bf-tbd-summary {
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #ddd;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
	margin: 0 -16px -96px;
}

.bf-tbd-summary__stats {
	font-size: 13px;
	font-weight: 600;
}

.bf-tbd-summary__stats .bf-tbd-summary__budget.is-over {
	color: #c62828;
}

.bf-tbd-summary__button {
	border: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 14px;
	background: #1a7f37;
	color: #fff;
	cursor: pointer;
}

.bf-tbd-summary__button:disabled {
	background: #ccc;
	color: #888;
	cursor: not-allowed;
}

/* ---- Complete / Saved screen ---- */

.bf-tbd-complete {
	text-align: center;
}

.bf-tbd-complete-card {
	border: 2px solid #1a7f37;
	border-radius: 14px;
	padding: 20px 16px;
	margin: 12px 0 20px;
	background: #fff;
}

.bf-tbd-complete-card__brand {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: #666;
	margin: 0 0 12px;
}

.bf-tbd-complete-card__list {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	text-align: left;
}

.bf-tbd-complete-card__list li {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px dashed #eee;
	font-size: 14px;
}

.bf-tbd-complete-card__total {
	font-size: 18px;
	font-weight: 800;
}

.bf-tbd-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.bf-tbd-actions a,
.bf-tbd-actions button {
	display: inline-block;
	border: none;
	border-radius: 999px;
	padding: 12px 24px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}

.bf-tbd-actions .bf-tbd-btn--primary {
	background: #1a7f37;
	color: #fff;
}

.bf-tbd-actions .bf-tbd-btn--secondary {
	background: #f0f0f0;
	color: #1a1a1a;
}

.bf-tbd-saved-message {
	font-weight: 700;
	color: #1a7f37;
	margin-bottom: 12px;
}
