.voranix-product-page .voranix-site h1,
.voranix-site .voranix-product-hero h1 {
	font-size: clamp(2.05rem, 3.1vw, 3.25rem);
	line-height: 1.06;
}

.voranix-product-breadcrumb {
	color: #657789;
	font-size: 0.84rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.voranix-product-breadcrumb a {
	color: var(--vx-blue);
	text-decoration: none;
}

.voranix-product-hero {
	background:
		radial-gradient(circle at 82% 16%, rgba(0, 163, 184, 0.13), transparent 34%),
		linear-gradient(180deg, #f7fafc 0%, #eef4f7 100%);
	padding-block: clamp(56px, 7vw, 96px);
}

.voranix-product-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(38px, 7vw, 84px);
	grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
}

.voranix-product-hero h1 {
	margin-bottom: 24px;
}

.voranix-product-hero .voranix-lead {
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	max-width: 690px;
}

.voranix-product-carousel {
	background: #ffffff;
	border: 1px solid var(--vx-line);
	border-radius: var(--vx-radius-lg);
	box-shadow: var(--vx-shadow-sm);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.voranix-product-carousel__viewport {
	background: #f7f9fb;
}

.voranix-product-carousel__slide {
	margin: 0;
}

.voranix-product-carousel__slide[hidden] {
	display: none;
}

.voranix-product-carousel__slide img {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.voranix-product-carousel__slide figcaption {
	background: #ffffff;
	border-top: 1px solid var(--vx-line);
	color: var(--vx-slate);
	font-size: 0.78rem;
	line-height: 1.5;
	min-height: 63px;
	padding: 13px 56px 13px 17px;
}

.voranix-product-carousel__control {
	align-items: center;
	background: rgba(11, 31, 51, 0.88);
	border: 0;
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font: 700 28px/1 Arial, sans-serif;
	height: 42px;
	justify-content: center;
	padding: 0 0 3px;
	position: absolute;
	top: calc(50% - 50px);
	transition: background 160ms ease, transform 160ms ease;
	width: 42px;
	z-index: 2;
}

.voranix-product-carousel__control:hover,
.voranix-product-carousel__control:focus-visible {
	background: var(--vx-blue);
	transform: scale(1.04);
}

.voranix-product-carousel__control--prev {
	left: 14px;
}

.voranix-product-carousel__control--next {
	right: 14px;
}

.voranix-product-carousel__dots {
	align-items: center;
	bottom: 22px;
	display: flex;
	gap: 7px;
	position: absolute;
	right: 18px;
	z-index: 2;
}

.voranix-product-carousel__dot {
	background: #9fb1c0;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 8px;
	padding: 0;
	transition: background 160ms ease, width 160ms ease;
	width: 8px;
}

.voranix-product-carousel__dot.is-active {
	background: var(--vx-cyan);
	width: 22px;
}

.voranix-product-facts {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 34px;
}

.voranix-product-fact {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(18, 104, 168, 0.18);
	border-radius: 10px;
	padding: 14px;
}

.voranix-product-fact strong {
	color: var(--vx-navy);
	display: block;
	font-size: 0.82rem;
}

.voranix-product-fact span {
	color: var(--vx-slate);
	display: block;
	font-size: 0.78rem;
	margin-top: 4px;
}

.voranix-product-split {
	align-items: start;
	display: grid;
	gap: clamp(34px, 6vw, 76px);
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.voranix-product-checklist {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}

.voranix-product-checklist li {
	color: var(--vx-slate);
	padding-left: 30px;
	position: relative;
}

.voranix-product-checklist li::before {
	align-items: center;
	background: #dff3f2;
	border-radius: 50%;
	color: var(--vx-success);
	content: "✓";
	display: flex;
	font-size: 0.76rem;
	font-weight: 900;
	height: 20px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 4px;
	width: 20px;
}

.voranix-product-alert {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	color: #8f3f0b;
	padding: 20px 22px;
}

.voranix-product-alert strong {
	color: #7c2d12;
	display: block;
	margin-bottom: 6px;
}

.voranix-product-config {
	border-top: 5px solid var(--vx-blue);
}

.voranix-product-config:nth-child(2) {
	border-color: var(--vx-cyan);
}

.voranix-product-config:nth-child(3) {
	background: var(--vx-navy);
	border-color: var(--vx-accent);
}

.voranix-product-config:nth-child(3) h3,
.voranix-product-config:nth-child(3) p,
.voranix-product-config:nth-child(3) li {
	color: var(--vx-white);
}

.voranix-product-config ul {
	color: var(--vx-slate);
	margin: 20px 0 0;
	padding-left: 1.1em;
}

.voranix-product-config li + li {
	margin-top: 8px;
}

.voranix-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.voranix-chip-list li {
	background: #eaf5fa;
	border: 1px solid #cce4ee;
	border-radius: 999px;
	color: #174f73;
	font-size: 0.84rem;
	font-weight: 720;
	padding: 9px 14px;
}

.voranix-sample-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 38px;
}

.voranix-sample-card {
	background: #ffffff;
	border: 1px solid var(--vx-line);
	border-radius: var(--vx-radius-md);
	margin: 0;
	overflow: hidden;
}

.voranix-sample-card img {
	aspect-ratio: 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.voranix-sample-card figcaption {
	color: var(--vx-slate);
	font-size: 0.82rem;
	line-height: 1.55;
	padding: 15px 17px 18px;
}

.voranix-sample-card figcaption strong {
	color: var(--vx-navy);
	display: block;
	margin-bottom: 4px;
}

.voranix-product-placeholder {
	align-items: center;
	aspect-ratio: 1;
	background: linear-gradient(135deg, #0b1f33, #1268a8);
	color: #ffffff;
	display: flex;
	font-size: 0.82rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.08em;
	padding: 28px;
	text-align: center;
	text-transform: uppercase;
}

.voranix-evidence-note {
	background: #edf8f7;
	border-left: 4px solid var(--vx-cyan);
	color: #2c5e63;
	margin-top: 28px;
	padding: 17px 20px;
}

.voranix-spec-status {
	align-items: center;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 10px;
	color: #8f3f0b;
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	padding: 15px 18px;
}

.voranix-spec-status::before {
	content: "!";
	align-items: center;
	background: #f27a24;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	flex: 0 0 auto;
	font-weight: 900;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.voranix-spec-status--sourced {
	background: #edf8f7;
	border-color: #b9e3df;
	color: #285f64;
}

.voranix-spec-status--sourced::before {
	background: var(--vx-success);
	content: "i";
}

.voranix-specification-group + .voranix-specification-group {
	margin-top: 36px;
}

.voranix-specification-group h3 {
	font-size: clamp(1.08rem, 1.8vw, 1.34rem);
	margin: 0 0 14px;
}

.voranix-site .voranix-spec-table--comparison {
	min-width: 1120px;
}

.voranix-site .voranix-spec-table--comparison th {
	width: auto;
}

.voranix-site .voranix-spec-table--comparison thead th {
	background: var(--vx-navy);
	color: #ffffff;
	font-size: 0.82rem;
	position: sticky;
	top: 0;
	z-index: 1;
}

.voranix-site .voranix-spec-table--comparison tbody th {
	background: #f4f7f9;
	font-size: 0.78rem;
	min-width: 120px;
	text-transform: capitalize;
}

.voranix-site .voranix-spec-table--comparison td {
	font-size: 0.84rem;
	min-width: 190px;
}

.voranix-selection-grid {
	counter-reset: select;
}

.voranix-selection-grid .voranix-card {
	counter-increment: select;
}

.voranix-selection-grid .voranix-card::before {
	color: var(--vx-blue);
	content: "0" counter(select);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	margin-bottom: 24px;
}

.voranix-related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.voranix-related-links a {
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 7px;
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 730;
	padding: 10px 14px;
	text-decoration: none;
}

.voranix-related-links a:hover,
.voranix-related-links a:focus-visible {
	background: rgba(255, 255, 255, 0.1);
}

.voranix-laser-category-summary {
	background: #ffffff;
	border: 1px solid #d9e5ec;
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(9, 31, 52, 0.11);
	padding: clamp(26px, 4vw, 46px);
}

.voranix-laser-category-summary h2 {
	color: #08233f;
	font-size: clamp(28px, 3vw, 42px);
}

.voranix-laser-category-card {
	display: flex;
	flex-direction: column;
}

.voranix-laser-category-card img {
	aspect-ratio: 4 / 3;
	background: #ffffff;
	border: 1px solid #e1e9ee;
	border-radius: 12px;
	margin-bottom: 24px;
	object-fit: contain;
	padding: 14px;
	width: 100%;
}

.voranix-laser-category-card__note {
	color: #52677a;
	font-size: 0.92rem;
}

.voranix-laser-category-card .voranix-card__link {
	margin-top: auto;
}

@media (max-width: 900px) {
	.voranix-product-hero__grid,
	.voranix-product-split {
		grid-template-columns: 1fr;
	}

	.voranix-product-carousel {
		max-width: 680px;
	}

	.voranix-sample-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.voranix-product-facts,
	.voranix-sample-grid {
		grid-template-columns: 1fr;
	}
}
