.hero-model-rotator.hero-price {
	position: relative;
	display: block;
	width: min(100%, 430px);
	min-height: 86px;
	margin: 24px 0 0 !important;
	overflow: hidden;
	border: 1px solid rgba(8, 126, 123, 0.22);
	border-left: 3px solid #13bdb8;
	border-radius: 15px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 10px 25px rgba(32, 91, 87, 0.07);
	backdrop-filter: blur(10px);
}

.hero-model-rotator__viewport {
	position: relative;
	min-height: 60px;
}

.hero-model-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2px 16px;
	align-content: center;
	color: inherit;
	opacity: 0;
	pointer-events: none;
	transform: translateY(7px);
	transition: opacity 220ms ease, transform 220ms ease;
}

.hero-model-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.hero-model-slide__name {
	overflow: hidden;
	color: #344849;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hero-model-slide__price {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	padding-bottom: 16px;
	color: #122628;
	font-size: 26px;
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 1;
	white-space: nowrap;
}

.hero-model-slide small {
	display: flex;
	min-width: 0;
	gap: 5px;
	align-items: center;
	color: #6e8081;
	font-size: 10px;
	line-height: 1.3;
}

.hero-model-slide small b {
	color: #087e7b;
	font-weight: 900;
	white-space: nowrap;
}

.hero-model-slide small i {
	overflow: hidden;
	font-style: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hero-model-rotator__controls {
	position: absolute;
	right: 12px;
	bottom: 7px;
	z-index: 3;
	display: flex;
	gap: 5px;
	align-items: center;
}

.hero-model-rotator__controls button {
	display: grid;
	width: 23px;
	height: 23px;
	place-items: center;
	border: 1px solid rgba(8, 126, 123, 0.2);
	border-radius: 50%;
	padding: 0;
	color: #087e7b;
	background: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.hero-model-rotator__controls button:hover {
	color: #fff;
	background: #0ba9a4;
	transform: translateY(-1px);
}

.hero-model-rotator__controls > span {
	min-width: 29px;
	color: #6d8081;
	font-size: 9px;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

.hero-model-rotator__controls b {
	color: #087e7b;
}

@media (max-width: 720px) {
	.hero-model-rotator.hero-price {
		display: block;
		min-height: 80px;
		margin-top: 16px !important;
		padding: 10px 12px;
		border-radius: 13px;
	}

	.hero-model-rotator__viewport {
		min-height: 58px;
	}

	.hero-model-slide {
		gap: 2px 9px;
	}

	.hero-model-slide__name {
		max-width: 160px;
		font-size: 10px;
	}

	.hero-model-slide__price {
		padding-bottom: 17px;
		font-size: 21px;
	}

	.hero-model-slide small {
		max-width: 190px;
		font-size: 8px;
	}

	.hero-model-rotator__controls {
		right: 9px;
		bottom: 6px;
	}

	.hero-model-rotator__controls button {
		width: 21px;
		height: 21px;
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-model-slide,
	.hero-model-rotator__controls button {
		transition: none;
	}
}
