:root {
	--pcam-ink: #08161c;
	--pcam-ink-2: #10242c;
	--pcam-paper: #f4f3ef;
	--pcam-white: #fff;
	--pcam-text: #132127;
	--pcam-muted: #637078;
	--pcam-line: #dfe3e2;
	--pcam-orange: #ff6500;
	--pcam-orange-dark: #dc5600;
	--pcam-radius: 18px;
}

body.pc-adria-model-page {
	margin: 0;
	background: var(--pcam-paper);
}

body.pc-adria-model-page .pcam-model,
body.pc-adria-model-page .pcam-model button,
body.pc-adria-model-page .pcam-model input {
	font-family: "Onest", sans-serif;
}

.pcam-model,
.pcam-model * {
	box-sizing: border-box;
}

.pcam-model {
	color: var(--pcam-text);
	background: var(--pcam-paper);
	overflow: hidden;
}

.pcam-model a {
	color: inherit;
	text-decoration: none;
}

.pcam-shell {
	width: min(1420px, calc(100% - 64px));
	margin-inline: auto;
}

.pcam-hero {
	padding: 30px 0 72px;
	color: var(--pcam-white);
	background:
		radial-gradient(circle at 74% 12%, rgba(255,101,0,.15), transparent 28%),
		linear-gradient(145deg, #061116 0%, #0a1b22 58%, #102a34 100%);
}

.pcam-breadcrumbs {
	margin-bottom: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	color: #92a0a6;
	font-size: 12px;
}

.pcam-breadcrumbs a:hover,
.pcam-breadcrumbs strong {
	color: #fff;
}

.pcam-breadcrumbs strong {
	font-weight: 600;
}

.pcam-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(370px, .75fr);
	gap: clamp(42px, 5vw, 86px);
	align-items: center;
}

.pcam-gallery {
	min-width: 0;
}

.pcam-main-photo {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 4px 32px 4px 4px;
	background: #17303a;
	box-shadow: 0 34px 80px rgba(0,0,0,.34);
}

.pcam-main-photo::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 35%;
	background: linear-gradient(transparent, rgba(3,11,14,.52));
	pointer-events: none;
}

.pcam-main-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: opacity .22s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.pcam-main-photo:hover img {
	transform: scale(1.015);
}

.pcam-main-photo img.is-changing {
	opacity: .3;
}

.pcam-photo-label,
.pcam-photo-count {
	position: absolute;
	z-index: 2;
	bottom: 18px;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.pcam-photo-label {
	left: 20px;
	padding: 8px 11px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	background: rgba(7,19,24,.55);
	backdrop-filter: blur(12px);
}

.pcam-photo-count {
	right: 20px;
	font-weight: 700;
}

.pcam-thumbs {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.pcam-thumb {
	width: 100%;
	padding: 0;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 5px;
	background: #17303a;
	cursor: pointer;
	opacity: .64;
	transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.pcam-thumb:hover,
.pcam-thumb.is-active {
	opacity: 1;
	transform: translateY(-2px);
	border-color: var(--pcam-orange);
}

.pcam-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pcam-summary {
	padding: 28px 0;
}

.pcam-eyebrow,
.pcam-overline {
	margin: 0 0 14px;
	color: var(--pcam-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.pcam-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
}

.pcam-eyebrow > span {
	width: 24px;
	height: 2px;
	background: var(--pcam-orange);
}

.pcam-summary h1 {
	max-width: 620px;
	margin: 0;
	color: #fff;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(34px, 4.2vw, 68px);
	font-weight: 700;
	letter-spacing: -.055em;
	line-height: 1.02;
	text-wrap: balance;
}

.pcam-lead {
	max-width: 560px;
	margin: 19px 0 0;
	color: #ced7da;
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 1.5;
}

.pcam-summary-rule {
	width: 72px;
	height: 2px;
	margin: 28px 0;
	background: var(--pcam-orange);
}

.pcam-summary-text {
	margin: 0;
	color: #aebbc0;
	font-size: 15px;
	line-height: 1.72;
}

.pcam-price {
	margin: 28px 0 0;
	padding: 20px 0;
	display: grid;
	border-top: 1px solid rgba(255,255,255,.13);
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.pcam-price span,
.pcam-price small {
	color: #95a3a9;
	font-size: 11px;
}

.pcam-price strong {
	margin: 5px 0;
	color: #fff;
	font-size: 27px;
	line-height: 1.2;
}

.pcam-actions {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.pcam-btn {
	min-height: 56px;
	padding: 0 20px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	visibility: visible !important;
	opacity: 1 !important;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pcam-btn svg,
.pcam-source svg,
.pcam-related-grid b svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pcam-btn-primary {
	color: #fff !important;
	background: var(--pcam-orange) !important;
	box-shadow: 0 14px 30px rgba(255,101,0,.24);
}

.pcam-btn-primary:hover {
	color: #fff !important;
	background: var(--pcam-orange-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(255,101,0,.3);
}

.pcam-btn-ghost {
	color: #fff !important;
	border-color: rgba(255,255,255,.34) !important;
	background: transparent !important;
}

.pcam-btn-ghost:hover {
	color: #fff !important;
	border-color: #fff !important;
	background: rgba(255,255,255,.07) !important;
}

.pcam-microtrust {
	margin-top: 17px;
	display: flex;
	flex-wrap: wrap;
	gap: 9px 15px;
	color: #aab7bc;
	font-size: 10px;
}

.pcam-microtrust span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.pcam-microtrust svg,
.pcam-feature-grid svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: var(--pcam-orange);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pcam-facts {
	position: relative;
	z-index: 3;
	margin-top: -26px;
}

.pcam-facts-grid {
	min-height: 110px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(12,30,37,.12);
}

.pcam-facts-grid > div {
	padding: 27px 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pcam-facts-grid > div:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 45px;
	position: absolute;
	right: 0;
	top: 50%;
	background: var(--pcam-line);
	transform: translateY(-50%);
}

.pcam-facts span {
	margin-bottom: 7px;
	color: var(--pcam-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.pcam-facts strong {
	font-size: clamp(16px, 1.5vw, 21px);
	line-height: 1.25;
}

.pcam-section {
	padding: 105px 0;
}

.pcam-two-col {
	display: grid;
	grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
	gap: clamp(60px, 9vw, 150px);
}

.pcam-sticky-heading {
	align-self: start;
	position: sticky;
	top: 32px;
}

.pcam-section-number {
	margin-bottom: 34px;
	display: block;
	color: #c2c8c8;
	font-family: "Unbounded", sans-serif;
	font-size: 13px;
}

.pcam-sticky-heading h2,
.pcam-section-head h2,
.pcam-buy h2 {
	margin: 0;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(30px, 3.6vw, 50px);
	font-weight: 700;
	letter-spacing: -.045em;
	line-height: 1.14;
	text-wrap: balance;
}

.pcam-copy {
	max-width: 820px;
}

.pcam-big-copy {
	margin: 0 0 44px;
	font-size: clamp(21px, 2.2vw, 31px);
	font-weight: 500;
	line-height: 1.45;
}

.pcam-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.pcam-feature-grid > div {
	min-height: 84px;
	padding: 19px;
	display: flex;
	align-items: center;
	gap: 13px;
	border: 1px solid var(--pcam-line);
	border-radius: 10px;
	background: rgba(255,255,255,.6);
}

.pcam-feature-grid svg {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

.pcam-feature-grid span {
	font-size: 14px;
	font-weight: 650;
}

.pcam-note {
	margin: 26px 0 0;
	padding-left: 17px;
	border-left: 2px solid var(--pcam-orange);
	color: var(--pcam-muted);
	font-size: 13px;
	line-height: 1.65;
}

.pcam-spec-section {
	color: #fff;
	background:
		radial-gradient(circle at 85% 20%, rgba(255,101,0,.11), transparent 28%),
		var(--pcam-ink);
}

.pcam-section-head {
	margin-bottom: 52px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px;
}

.pcam-section-head > p {
	max-width: 460px;
	margin: 0;
	color: #9ba9af;
	font-size: 14px;
	line-height: 1.65;
}

.pcam-spec-grid {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255,255,255,.13);
	border-left: 1px solid rgba(255,255,255,.13);
}

.pcam-spec-grid > div {
	min-height: 126px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid rgba(255,255,255,.13);
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.pcam-spec-grid dt {
	color: #89999f;
	font-size: 11px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.pcam-spec-grid dd {
	margin: 14px 0 0;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.35;
}

.pcam-equipment {
	background: #fff;
}

.pcam-packages {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.pcam-packages > span {
	width: 100%;
	margin-bottom: 3px;
	color: var(--pcam-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.pcam-packages b {
	padding: 8px 11px;
	border: 1px solid var(--pcam-line);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}

.pcam-equipment-list {
	border-top: 1px solid var(--pcam-line);
}

.pcam-equipment-list > div {
	min-height: 86px;
	padding: 19px 0;
	display: grid;
	grid-template-columns: 72px 1fr;
	align-items: center;
	border-bottom: 1px solid var(--pcam-line);
}

.pcam-equipment-list b {
	color: var(--pcam-orange);
	font-family: "Unbounded", sans-serif;
	font-size: 11px;
}

.pcam-equipment-list span {
	font-size: clamp(17px, 1.8vw, 23px);
	font-weight: 600;
}

.pcam-buy {
	padding: 70px 0;
	background: #fff;
}

.pcam-buy-card {
	padding: clamp(38px, 5vw, 74px);
	display: grid;
	grid-template-columns: 1.25fr .55fr;
	gap: 75px;
	align-items: center;
	border-radius: 5px 34px 5px 5px;
	color: #fff;
	background:
		linear-gradient(110deg, rgba(8,22,28,.97), rgba(11,32,40,.9)),
		radial-gradient(circle at 90% 10%, rgba(255,101,0,.5), transparent 40%);
}

.pcam-buy-card h2 {
	max-width: 850px;
	color: #fff;
}

.pcam-buy-card p:not(.pcam-overline) {
	max-width: 690px;
	margin: 20px 0 0;
	color: #aebac0;
	line-height: 1.65;
}

.pcam-buy-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pcam-buy-actions small {
	color: #94a3a9;
	font-size: 11px;
	line-height: 1.5;
	text-align: center;
}

.pcam-faq {
	background: var(--pcam-paper);
}

.pcam-accordion {
	border-top: 1px solid #cfd5d4;
}

.pcam-accordion details {
	border-bottom: 1px solid #cfd5d4;
}

.pcam-accordion summary {
	padding: 26px 54px 26px 0;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	list-style: none;
	cursor: pointer;
}

.pcam-accordion summary::-webkit-details-marker {
	display: none;
}

.pcam-accordion summary::before,
.pcam-accordion summary::after {
	content: "";
	position: absolute;
	right: 7px;
	top: 50%;
	width: 17px;
	height: 2px;
	background: var(--pcam-orange);
	transition: transform .2s ease;
}

.pcam-accordion summary::after {
	transform: rotate(90deg);
}

.pcam-accordion details[open] summary::after {
	transform: rotate(0);
}

.pcam-accordion details p {
	max-width: 790px;
	margin: -5px 0 27px;
	color: var(--pcam-muted);
	font-size: 15px;
	line-height: 1.7;
}

.pcam-related {
	padding-top: 0;
	background: var(--pcam-paper);
}

.pcam-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.pcam-related-grid > a {
	min-height: 260px;
	padding: 26px;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--pcam-line);
	border-radius: 12px;
	background: #fff;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pcam-related-grid > a:hover {
	transform: translateY(-5px);
	border-color: #ffc6a1;
	box-shadow: 0 18px 36px rgba(18,35,42,.11);
}

.pcam-related-grid span {
	color: var(--pcam-orange);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.pcam-related-grid strong {
	margin-top: 18px;
	font-family: "Unbounded", sans-serif;
	font-size: 18px;
	line-height: 1.3;
}

.pcam-related-grid small {
	margin-top: 14px;
	color: var(--pcam-muted);
	font-size: 12px;
	line-height: 1.55;
}

.pcam-related-grid b {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pcam-orange);
	font-size: 12px;
}

.pcam-source {
	padding: 25px 0;
	color: #829096;
	background: #061116;
}

.pcam-source .pcam-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.pcam-source p {
	max-width: 900px;
	margin: 0;
	font-size: 11px;
	line-height: 1.6;
}

.pcam-source a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.pcam-mobile-cta {
	display: none;
}

@media (max-width: 1120px) {
	.pcam-hero-grid { grid-template-columns: 1.2fr .8fr; gap: 38px; }
	.pcam-actions { grid-template-columns: 1fr; }
	.pcam-summary h1 { font-size: clamp(32px, 4.7vw, 54px); }
	.pcam-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.pcam-shell { width: min(100% - 36px, 720px); }
	.pcam-hero { padding-top: 20px; }
	.pcam-hero-grid { grid-template-columns: 1fr; }
	.pcam-summary { padding: 5px 0 0; }
	.pcam-gallery { order: 2; }
	.pcam-summary { order: 1; }
	.pcam-actions { grid-template-columns: 1fr 1fr; }
	.pcam-facts { margin-top: -20px; }
	.pcam-facts-grid { grid-template-columns: 1fr 1fr; }
	.pcam-facts-grid > div:nth-child(2)::after { display: none; }
	.pcam-facts-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--pcam-line); }
	.pcam-two-col { grid-template-columns: 1fr; gap: 42px; }
	.pcam-sticky-heading { position: static; }
	.pcam-section { padding: 76px 0; }
	.pcam-section-head { display: block; }
	.pcam-section-head > p { margin-top: 20px; }
	.pcam-spec-grid { grid-template-columns: 1fr 1fr; }
	.pcam-buy-card { grid-template-columns: 1fr; gap: 35px; }
	.pcam-source .pcam-shell { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
	.pcam-shell { width: calc(100% - 32px); }
	.pcam-hero { padding: 14px 0 46px; }
	.pcam-breadcrumbs { margin-bottom: 22px; font-size: 10px; }
	.pcam-hero-grid { gap: 32px; }
	.pcam-summary h1 { font-size: clamp(29px, 10vw, 42px); line-height: 1.07; }
	.pcam-lead { font-size: 17px; }
	.pcam-summary-text { font-size: 14px; }
	.pcam-actions { grid-template-columns: 1fr; }
	.pcam-btn { min-height: 54px; width: 100%; }
	.pcam-main-photo { border-radius: 4px 22px 4px 4px; }
	.pcam-photo-label { max-width: 72%; bottom: 12px; left: 12px; font-size: 8px; }
	.pcam-photo-count { right: 12px; bottom: 17px; font-size: 9px; }
	.pcam-thumbs { gap: 6px; }
	.pcam-facts-grid > div { min-height: 97px; padding: 20px; }
	.pcam-facts strong { font-size: 15px; }
	.pcam-facts span { font-size: 9px; }
	.pcam-section { padding: 65px 0; }
	.pcam-sticky-heading h2,
	.pcam-section-head h2,
	.pcam-buy h2 { font-size: clamp(27px, 8vw, 36px); }
	.pcam-big-copy { font-size: 20px; }
	.pcam-feature-grid { grid-template-columns: 1fr; }
	.pcam-spec-grid { grid-template-columns: 1fr; }
	.pcam-spec-grid > div { min-height: 103px; }
	.pcam-equipment-list > div { grid-template-columns: 48px 1fr; }
	.pcam-equipment-list span { font-size: 17px; }
	.pcam-buy { padding: 45px 0; }
	.pcam-buy-card { width: calc(100% - 24px); padding: 34px 24px; border-radius: 4px 24px 4px 4px; }
	.pcam-related-grid { grid-template-columns: 1fr; }
	.pcam-related-grid > a { min-height: 220px; }
	.pcam-source { padding-bottom: 94px; }
	.pcam-mobile-cta {
		position: fixed;
		z-index: 9999;
		left: 10px;
		right: 10px;
		bottom: calc(10px + env(safe-area-inset-bottom));
		min-height: 70px;
		padding: 10px;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		align-items: center;
		border: 1px solid rgba(255,255,255,.13);
		border-radius: 12px;
		color: #fff;
		background: rgba(6,17,22,.95);
		box-shadow: 0 16px 44px rgba(0,0,0,.38);
		backdrop-filter: blur(16px);
	}
	.pcam-mobile-cta div { min-width: 0; padding-left: 4px; }
	.pcam-mobile-cta small,
	.pcam-mobile-cta strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.pcam-mobile-cta small { color: #9ba9ae; font-size: 9px; }
	.pcam-mobile-cta strong { margin-top: 3px; font-size: 13px; }
	.pcam-mobile-cta a {
		min-height: 48px;
		padding: 0 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 7px;
		color: #fff !important;
		background: var(--pcam-orange) !important;
		font-size: 11px;
		font-weight: 800;
		white-space: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcam-model *,
	.pcam-model *::before,
	.pcam-model *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
