/**
 * Bike listing card — paired with template-parts/modules/bike/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: 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: rgb(226 232 240);
}

[data-theme="dark"] .ntp-spec-score__track {
	stroke: rgb(51 65 85);
}

.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: rgb(15 23 42);
}

[data-theme="dark"] .ntp-spec-score__value {
	color: rgb(248 250 252);
}
