/**
 * Bike listing card — paired with Modules/Bike/Frontend/Partials/listing-page/listing-card-bike.php
 *
 * @package NewTechPrice
 */

/* Listing card — compare control + media (spec score ring removed; ratings from user reviews). */
.ntp-spec-score {
	position: absolute;
	top: 2.75rem;
	right: 0.5rem;
	bottom: auto;
	left: auto;
	z-index: var(--ntp-z-spec-score, 6);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.ntp-spec-score__svg {
	display: block;
}

.ntp-spec-score__track {
	stroke: var(--ntp-border-color, #dfe4ea);
}

[data-theme="dark"] .ntp-spec-score__track {
	stroke: var(--ntp-border-color, #334155);
}

.ntp-spec-score__arc {
	stroke: var(--ntp-primary-color, #0a58ca);
	stroke-linecap: round;
	transition: stroke-dashoffset 0.35s ease;
}

.ntp-spec-score__value {
	position: absolute;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	color: var(--ntp-text-color, #2f3542);
}

[data-theme="dark"] .ntp-spec-score__value {
	color: var(--ntp-text-color, #f1f5f9);
}
