/* YBI Dealer Pages – dealer page layout (mobile first). */

body.ybi-dealer-page {
	margin: 0;
	background: #f6f8fb;
	color: #14213d;
	font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	display: block;
	min-height: 100vh;
}

.ybi-d-wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 24px 16px 32px;
	box-sizing: border-box;
}

.ybi-d-brand {
	text-align: center;
	padding: 8px 0 24px;
}

.ybi-d-logo {
	max-height: 90px;
	width: auto;
	max-width: 80%;
	height: auto;
	display: inline-block;
}

.ybi-d-name {
	margin: 0;
	font-size: clamp(1.6rem, 6vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: #14213d;
}

.ybi-d-widget {
	width: 100%;
	min-height: 240px;
	box-sizing: border-box;
}

.ybi-d-widget iframe {
	max-width: 100%;
}

.ybi-d-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 240px;
	color: #5b6475;
}

.ybi-d-spinner {
	width: 22px;
	height: 22px;
	border: 3px solid #d6dce6;
	border-top-color: #1463ff;
	border-radius: 50%;
	animation: ybi-spin 0.8s linear infinite;
}

@keyframes ybi-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.ybi-d-spinner { animation: none; }
}

.ybi-d-msg {
	background: #fff;
	border: 1px solid #e3e8f0;
	border-radius: 14px;
	padding: 32px 20px;
	text-align: center;
	font-size: 1.05rem;
	margin: 0;
}

.ybi-d-footer {
	text-align: center;
	font-size: 0.85rem;
	color: #5b6475;
	padding-top: 32px;
}

.ybi-d-footer p {
	margin: 4px 0;
}

.ybi-d-footer a {
	color: #5b6475;
}
