.evrv-wrap {
	--evrv-badge-color: #4F46E5;
	--evrv-price-bar-color: #111111;
	--evrv-button-color: #0E9F6E;
	max-width: 100%;
	margin: 32px 0;
	box-sizing: border-box;
}

.evrv-wrap * {
	box-sizing: border-box;
}

.evrv-heading {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #111;
}

.evrv-carousel {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.evrv-track-viewport {
	overflow: hidden;
	flex: 1 1 auto;
	width: 100%;
}

.evrv-track {
	display: flex;
	transition: transform .35s ease;
	touch-action: pan-y;
}

/* Card */

.evrv-card {
	padding: 0 10px;
}

.evrv-card-inner {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.evrv-card-titlewrap {
	text-decoration: none;
	color: inherit;
}

.evrv-card-title {
	margin: 16px 16px 8px;
	font-size: 17px;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
}

.evrv-sev-badge {
	display: inline-block;
	margin: 0 16px 14px;
	background: var(--evrv-badge-color);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 20px;
}

.evrv-card-imglink {
	display: block;
}

.evrv-card-img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	display: block;
	background: #fafafa;
}

.evrv-card-img-placeholder {
	width: 100%;
	height: 180px;
	background: #f1f1f1;
}

.evrv-stats {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f0f0f0;
	border-radius: 12px;
	margin: 14px 16px;
	padding: 14px 10px;
	gap: 6px;
}

.evrv-stat {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #1a1a1a;
	white-space: nowrap;
}

.evrv-stat .evrv-icon {
	color: #555;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
}

.evrv-stat strong {
	font-weight: 700;
}

.evrv-stat small {
	color: #777;
	font-weight: 500;
	font-size: 13px;
}

.evrv-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 16px 14px;
}

.evrv-tag {
	border: 1px solid #e3e3e3;
	background: #fff;
	color: #2b2b2b;
	font-size: 12.5px;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.evrv-tag-more {
	background: #f5f5f5;
	color: #555;
}

.evrv-footer {
	margin-top: auto;
	background: var(--evrv-price-bar-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
}

.evrv-price {
	font-weight: 700;
	font-size: 16px;
}

.evrv-go-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--evrv-button-color);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	flex-shrink: 0;
}

/* Arrows */

.evrv-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	padding: 0;
}

.evrv-arrow:disabled {
	opacity: .35;
	cursor: default;
}

.evrv-arrow:hover:not(:disabled) {
	background: #f7f7f7;
}

/* Dots */

.evrv-dots {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.evrv-dots--left {
	justify-content: flex-start;
}

.evrv-dots--center {
	justify-content: center;
}

.evrv-dots--right {
	justify-content: flex-end;
}

.evrv-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d9d9d9;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: width .2s, background .2s;
}

.evrv-dot.is-active {
	width: 22px;
	border-radius: 4px;
	background: var(--evrv-button-color);
}

@media (max-width: 1024px) {
	.evrv-card-img,
	.evrv-card-img-placeholder {
		height: 160px;
	}
}

@media (max-width: 640px) {
	.evrv-heading {
		font-size: 18px;
	}
	.evrv-card-title {
		font-size: 15px;
	}
	.evrv-card-img,
	.evrv-card-img-placeholder {
		height: 150px;
	}
	.evrv-arrow {
		width: 34px;
		height: 34px;
	}
}
