/* .magtyre-fitment-finder {
	max-width: 380px;
	margin: 0 auto;
	padding: 32px 24px;
	text-align: center;
	font-family: inherit;
} */

.magtyre-fitment-title {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #111;
	line-height: 1.2;
}

.magtyre-fitment-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0 0 24px;
	line-height: 1.6;
}

/* Form */

.magtyre-fitment-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

/* Individual field rows */

.magtyre-fitment-field {
	display: flex;
	align-items: center;
	padding: 0 16px;
	height: 54px;
	transition: background 0.15s;

	border-radius: 8px;
	border: 1px solid #CBD5E1;
	background: #FFF;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.magtyre-fitment-field:focus-within {
	border-color: #007FFF;
}

.magtyre-fitment-field--disabled {
	/* opacity: 0.55; */
	background: #EEEEEE;
}

/* Loading spinner via border animation */
.magtyre-fitment-field--loading {
	position: relative;
}

.magtyre-fitment-field--loading::after {
	content: '';
	display: block;
	position: absolute;
	right: 16px;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 2px solid #ccc;
	border-top-color: #555;
	border-radius: 50%;
	animation: magtyre-spin 0.6s linear infinite;
}

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

/* Step number */

.magtyre-fitment-step {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: -0.4px;
	color: #94A3B8;
	font-weight: 600;
	letter-spacing: 0.03em;
	margin-right: 14px;
	flex-shrink: 0;
	line-height: 1;
	background: #E2E8F0;
    border-radius: 11px;
    height: 22px;
    width: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Select element */

.magtyre-fitment-select {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: none;
	background: transparent;
	font-size: 15px;
	color: #333;
	outline: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
}

.magtyre-fitment-field--disabled .magtyre-fitment-select {
	cursor: default;
	color: #9ca3af;
}

.magtyre-fitment-select:focus {
	outline: none;
}

/* Submit button */

.magtyre-fitment-btn {
	display: block;
	width: 100%;
	background: #007FFF;
	color: #fff;
	border: none;
	border-radius: 10px;
	height: 54px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
	margin-top: 4px;
	letter-spacing: 0.01em;
}

.magtyre-fitment-btn:hover,
.magtyre-fitment-btn:focus-visible {
	background: #1d4ed8;
	outline: none;
}

/* Disclaimer */

.magtyre-fitment-disclaimer {
	font-size: 12px;
	color: #9ca3af;
	line-height: 1.6;
	margin: 0;
}
