:root {
	--camx-stitch-blue: #0058bc;
	--camx-stitch-bg: #f9f9ff;
	--camx-stitch-ink: #181c23;
	--camx-stitch-muted: #717786;
	--camx-stitch-line: #c1c6d7;
	--camx-stitch-header-height: 80px;
	--camx-page-top-gap: clamp(56px, 5vw, 80px);
	--camx-page-top-gap-mobile: 34px;
	--cx2-blue: #135fca;
	--cx2-ink: #101722;
	--cx2-muted: #626b7a;
	--cx2-soft: #f3f6ff;
	--cx2-line: rgba(16, 24, 40, 0.11);
	--cx2-radius-xl: 42px;
	--cx2-shadow: 0 28px 90px rgba(17, 29, 48, 0.10);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.camx-stitch-export-page *,
body.camx-stitch-export-page *::before,
body.camx-stitch-export-page *::after {
	box-sizing: border-box;
}

body.camx-stitch-export-page {
	margin: 0;
	background: var(--camx-stitch-bg);
	color: var(--camx-stitch-ink);
	font-family: Inter, sans-serif;
	overflow-x: hidden;
}

/* CamX V2 native renderer */
.cx2,
.cx2 *,
.cx2-header,
.cx2-header *,
.cx2-footer,
.cx2-footer * {
	box-sizing: border-box;
}

.cx2 {
	width: min(1440px, calc(100vw - clamp(32px, 7vw, 128px)));
	margin: 0 auto;
	color: var(--cx2-ink);
	font-family: Inter, sans-serif;
}

.cx2-header {
	position: sticky;
	top: 0;
	z-index: 80;
	width: min(1440px, calc(100vw - clamp(32px, 7vw, 128px)));
	margin: 18px auto 0;
	pointer-events: none;
}

body.admin-bar .cx2-header {
	top: 32px;
}

.cx2-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(20px, 3vw, 46px);
	align-items: center;
	min-height: 74px;
	padding: 0 clamp(18px, 2.8vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
	background: rgba(14, 22, 32, 0.82);
	box-shadow: 0 24px 70px rgba(8, 18, 28, 0.18);
	backdrop-filter: blur(22px);
	pointer-events: auto;
}

.cx2-logo {
	display: inline-flex;
	align-items: center;
	color: #fff !important;
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -0.08em;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.cx2-logo span {
	display: inline-block;
	transform: translateY(-1px);
}

.cx2-nav {
	display: flex;
	gap: clamp(10px, 1vw, 18px);
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.cx2-nav-link {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	padding: 0 13px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cx2-nav-link:hover,
.cx2-nav-link.is-active {
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
	transform: translateY(-1px);
}

.cx2-header-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.cx2-icon-link {
	position: relative;
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	text-decoration: none;
}

.cx2-icon-link svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

	.cx2-cart-link span {
		position: absolute;
		right: -4px;
	top: -5px;
	display: grid;
	min-width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	color: #101722;
	font-size: 11px;
	font-weight: 900;
		padding: 0 5px;
	}

	[data-camx-cart-count-badge][hidden] {
		display: none !important;
	}

.cx2-home,
.cx2-listing,
.cx2-page {
	padding-top: clamp(28px, 3.5vw, 56px);
}

.cx2-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(28px, 4vw, 72px);
	align-items: center;
	min-height: clamp(640px, 76vh, 860px);
	overflow: hidden;
	border: 1px solid rgba(193, 198, 215, 0.45);
	border-radius: clamp(34px, 4vw, 58px);
	background:
		radial-gradient(circle at 72% 18%, rgba(19, 95, 202, 0.18), transparent 34%),
		linear-gradient(145deg, #ffffff 0%, #edf3ff 100%);
	box-shadow: var(--cx2-shadow);
	padding: clamp(28px, 4.8vw, 76px);
}

.cx2-hero::before {
	position: absolute;
	inset: auto -8% -24% 32%;
	height: 50%;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(19, 95, 202, 0.14), transparent 65%);
	content: "";
	pointer-events: none;
}

.cx2-hero__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: clamp(18px, 2vw, 28px);
	max-width: 660px;
}

.cx2-pill,
.cx2-label {
	display: inline-flex;
	width: max-content;
	min-height: 34px;
	align-items: center;
	border: 1px solid rgba(19, 95, 202, 0.16);
	border-radius: 999px;
	background: rgba(216, 226, 255, 0.72);
	color: #1458b5;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.14em;
	line-height: 1;
	padding: 0 15px;
	text-transform: uppercase;
}

.cx2 h1,
.cx2 h2,
.cx2 h3 {
	margin: 0;
	color: var(--cx2-ink);
	font-weight: 900;
	letter-spacing: -0.075em;
	line-height: 0.98;
}

.cx2-hero h1 {
	font-size: clamp(48px, 6vw, 96px);
	max-width: 720px;
}

.cx2-hero p,
.cx2-page-hero p,
.cx2-section p {
	margin: 0;
	color: var(--cx2-muted);
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.65;
}

.cx2-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.cx2-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	padding: 0 22px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cx2-button:hover {
	transform: translateY(-2px);
}

.cx2-button--primary {
	background: #101722;
	box-shadow: 0 18px 36px rgba(16, 23, 34, 0.18);
	color: #fff !important;
}

.cx2-button--ghost {
	border: 1px solid var(--cx2-line);
	background: rgba(255, 255, 255, 0.8);
	color: #172033 !important;
}

.cx2-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cx2-proof span {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	border: 1px solid rgba(16, 24, 40, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: #475467;
	font-size: 13px;
	font-weight: 800;
	padding: 0 14px;
}

.cx2-proof--center {
	justify-content: center;
}

.cx2-hero__visual {
	position: relative;
	z-index: 1;
	min-height: clamp(420px, 46vw, 660px);
	overflow: hidden;
	border-radius: clamp(28px, 3.4vw, 48px);
	background: #dbe7ff;
	box-shadow: 0 34px 90px rgba(0, 43, 96, 0.18);
}

.cx2-hero__visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 12, 22, 0.06), rgba(5, 12, 22, 0.26));
	content: "";
	pointer-events: none;
}

.cx2-hero-product {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.cx2-hero-card {
	position: absolute;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 22px 54px rgba(8, 18, 28, 0.14);
	color: #172033;
	font-size: 14px;
	font-weight: 900;
	padding: 15px 18px;
	backdrop-filter: blur(16px);
}

.cx2-hero-card--top {
	top: 24px;
	right: 24px;
}

.cx2-hero-card--bottom {
	left: 24px;
	bottom: 24px;
}

.cx2-section {
	margin: clamp(68px, 8vw, 118px) 0 clamp(28px, 4vw, 56px);
}

.cx2-section--split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
}

.cx2-section h2,
.cx2-page-hero h1 {
	margin-top: 18px;
	font-size: clamp(38px, 5vw, 76px);
}

.cx2-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 2.5vw, 34px);
	margin: clamp(26px, 4vw, 58px) 0 clamp(76px, 8vw, 128px);
}

.cx2-product-card {
	display: grid;
	gap: 16px;
	align-content: start;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(193, 198, 215, 0.52);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 22px 64px rgba(8, 18, 28, 0.07);
	padding: clamp(20px, 2.4vw, 32px);
}

.cx2-product-card.is-featured {
	background:
		radial-gradient(circle at 70% 10%, rgba(19, 95, 202, 0.12), transparent 34%),
		rgba(255, 255, 255, 0.92);
}

.cx2-product-media {
	position: relative;
	display: grid;
	min-height: clamp(220px, 23vw, 320px);
	place-items: center;
	overflow: hidden;
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 246, 255, 0.9)),
		var(--cx2-product-bg) center / cover;
}

.cx2-product-media::before {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(12px);
	content: "";
}

.cx2-product-img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(82%, 340px);
	max-height: 285px;
	object-fit: contain;
	filter: drop-shadow(0 24px 30px rgba(8, 18, 28, 0.16));
}

.cx2-product-card h3 {
	font-size: clamp(26px, 2.2vw, 36px);
	letter-spacing: -0.055em;
}

.cx2-product-card p,
.cx2-product-card li {
	color: var(--cx2-muted);
	font-size: 14px;
	line-height: 1.6;
}

.cx2-product-card p {
	margin: 0;
}

.cx2-product-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cx2-product-card li {
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: 999px;
	background: rgba(247, 249, 255, 0.8);
	padding: 7px 10px;
}

.cx2-price {
	color: var(--cx2-ink);
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.cx2-price del {
	margin-right: 8px;
	color: #8a92a3;
	font-size: 15px;
	font-weight: 700;
	text-decoration-thickness: 2px;
}

.cx2-price ins {
	color: var(--cx2-ink);
	text-decoration: none;
}

.cx2-stockout {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(186, 26, 26, 0.08);
	color: #9d1b1b;
	font-size: 13px;
	font-weight: 900;
	padding: 0 18px;
}

.cx2-compare {
	display: grid;
	gap: 26px;
	margin-bottom: clamp(82px, 8vw, 130px);
}

.cx2-compare__head {
	display: grid;
	gap: 16px;
	max-width: 820px;
}

.cx2-compare__head h2 {
	font-size: clamp(36px, 4.4vw, 68px);
}

.cx2-table-wrap {
	overflow: hidden;
	border: 1px solid rgba(193, 198, 215, 0.56);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 22px 64px rgba(8, 18, 28, 0.07);
}

.cx2-table-wrap table {
	width: 100%;
	border-collapse: collapse;
}

.cx2-table-wrap th,
.cx2-table-wrap td {
	border-bottom: 1px solid rgba(193, 198, 215, 0.45);
	color: #414755;
	font-size: 15px;
	line-height: 1.5;
	padding: 20px 22px;
	text-align: left;
}

.cx2-table-wrap th {
	color: #101722;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.cx2-table-wrap tr:last-child td {
	border-bottom: 0;
}

.cx2-page-hero {
	display: grid;
	gap: 20px;
	justify-items: center;
	max-width: 980px;
	margin: 0 auto clamp(56px, 7vw, 104px);
	padding-top: clamp(36px, 4vw, 64px);
	text-align: center;
}

.cx2-page-hero--visual {
	grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
	max-width: none;
	justify-items: start;
	align-items: center;
	text-align: left;
}

.cx2-page-visual {
	width: 100%;
	min-height: clamp(340px, 34vw, 520px);
	overflow: hidden;
	border-radius: 38px;
	box-shadow: var(--cx2-shadow);
}

.cx2-page-visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.cx2-filterbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 auto 34px;
}

.cx2-filterbar span {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #414755;
	font-size: 14px;
	font-weight: 850;
	padding: 0 18px;
}

.cx2-filterbar span.is-active {
	background: #101722;
	color: #fff;
}

.cx2-card-grid,
.cx2-contact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.6vw, 32px);
	margin-bottom: clamp(76px, 8vw, 128px);
}

.cx2-card-grid article,
.cx2-contact-info article,
.cx2-contact-form,
.cx2-faq details {
	border: 1px solid rgba(193, 198, 215, 0.5);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 20px 58px rgba(8, 18, 28, 0.06);
	padding: clamp(22px, 2.5vw, 34px);
}

.cx2-card-dot {
	display: block;
	width: 12px;
	height: 12px;
	margin-bottom: 22px;
	border-radius: 999px;
	background: var(--cx2-blue);
}

.cx2-card-grid h2,
.cx2-contact h2 {
	font-size: clamp(24px, 2vw, 32px);
	letter-spacing: -0.05em;
}

.cx2-card-grid p,
.cx2-contact p,
.cx2-faq p {
	margin: 12px 0 0;
	color: var(--cx2-muted);
	line-height: 1.65;
}

.cx2-faq {
	display: grid;
	gap: 14px;
	max-width: 980px;
	margin: 0 auto clamp(76px, 8vw, 128px);
}

.cx2-faq summary {
	cursor: pointer;
	color: var(--cx2-ink);
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 900;
	letter-spacing: -0.035em;
}

.cx2-contact {
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	align-items: start;
}

.cx2-contact-info {
	display: grid;
	gap: 14px;
}

.cx2-contact-info article span {
	color: var(--cx2-blue);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.14em;
}

.cx2-contact-info a {
	display: inline-flex;
	margin-top: 10px;
	color: var(--cx2-ink) !important;
	font-size: clamp(16px, 1.25vw, 20px);
	font-weight: 900;
	text-decoration: none;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.cx2-contact-form form,
.cx2-contact-form .camx-contact-form {
	display: grid;
	gap: 14px;
}

.cx2-contact-form input,
.cx2-contact-form textarea,
.cx2-contact-form select {
	width: 100%;
	min-height: 54px;
	border: 1px solid rgba(16, 24, 40, 0.12);
	border-radius: 17px;
	background: rgba(247, 249, 255, 0.9);
	color: var(--cx2-ink);
	font: inherit;
	padding: 0 16px;
}

.cx2-contact-form textarea {
	min-height: 150px;
	padding-top: 14px;
}

.cx2-contact-form button,
.cx2-contact-form [type="submit"] {
	min-height: 56px;
	border: 0;
	border-radius: 999px;
	background: #101722;
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.cx2-map {
	overflow: hidden;
	border-radius: 34px;
	box-shadow: var(--cx2-shadow);
	margin-bottom: clamp(76px, 8vw, 128px);
}

.cx2-map iframe {
	display: block;
	width: 100%;
	height: min(520px, 56vw);
	min-height: 340px;
	border: 0;
}

.cx2-footer {
	width: 100%;
	margin-top: clamp(64px, 8vw, 120px);
	border-top: 1px solid rgba(193, 198, 215, 0.45);
	background:
		radial-gradient(circle at 12% 0%, rgba(19, 95, 202, 0.12), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
}

.cx2-footer__grid,
.cx2-footer-bottom {
	width: min(1440px, calc(100vw - clamp(32px, 7vw, 128px)));
	margin: 0 auto;
}

.cx2-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.5fr) minmax(260px, 0.58fr);
	gap: clamp(28px, 5vw, 72px);
	padding: clamp(56px, 7vw, 96px) 0;
}

.cx2-footer-brand h2 {
	max-width: 780px;
	margin: 18px 0;
	color: var(--cx2-ink);
	font-size: clamp(36px, 5vw, 72px);
	font-weight: 900;
	letter-spacing: -0.075em;
	line-height: 0.98;
}

.cx2-footer-brand p,
.cx2-footer-card p {
	color: var(--cx2-muted);
	line-height: 1.65;
}

.cx2-footer-card {
	display: grid;
	gap: 12px;
	align-content: start;
}

.cx2-footer-card h3 {
	color: #1458b5;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.cx2-footer-card a {
	color: var(--cx2-ink) !important;
	font-size: 16px;
	font-weight: 850;
	text-decoration: none;
}

.cx2-footer-mail,
.cx2-footer-phone {
	font-size: clamp(15px, 1.35vw, 20px) !important;
	letter-spacing: -0.04em;
	overflow-wrap: anywhere;
}

.cx2-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 18px clamp(20px, 4vw, 56px);
	align-items: center;
	border-top: 1px solid rgba(193, 198, 215, 0.45);
	color: #717786;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.13em;
	padding: 24px 0 34px;
	text-transform: uppercase;
}

.cx2-footer-bottom a {
	color: #596171 !important;
	text-decoration: none;
}

@media (max-width: 1120px) {
	.cx2-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.cx2-nav {
		display: none;
	}

	.cx2-hero,
	.cx2-section--split,
	.cx2-page-hero--visual,
	.cx2-contact,
	.cx2-footer__grid {
		grid-template-columns: 1fr;
	}

	.cx2-products,
	.cx2-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.cx2,
	.cx2-header,
	.cx2-footer__grid,
	.cx2-footer-bottom {
		width: calc(100vw - 36px);
	}

	.cx2-header {
		margin-top: 12px;
	}

	.cx2-header__inner {
		min-height: 64px;
		padding: 0 14px 0 18px;
	}

	.cx2-header-actions .cx2-icon-link:not(.cx2-cart-link) {
		display: none;
	}

	.cx2-home,
	.cx2-listing,
	.cx2-page {
		padding-top: 20px;
	}

	.cx2-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		border-radius: 30px;
		padding: 24px;
	}

	.cx2-hero h1 {
		font-size: clamp(42px, 12vw, 58px);
	}

	.cx2-hero__visual {
		min-height: 330px;
		border-radius: 24px;
	}

	.cx2-hero-card {
		display: none;
	}

	.cx2-products,
	.cx2-card-grid {
		grid-template-columns: 1fr;
	}

	.cx2-product-media {
		min-height: 250px;
	}

	.cx2-page-hero {
		text-align: left;
		justify-items: start;
	}

	.cx2-page-hero h1,
	.cx2-section h2,
	.cx2-footer-brand h2 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.cx2-table-wrap {
		overflow-x: auto;
	}

	.cx2-table-wrap table {
		min-width: 720px;
	}

	.cx2-footer__grid {
		padding: 52px 0;
	}
}

body.camx-stitch-export-page #scroll_to_top,
body.camx-stitch-export-page .side-panel,
body.camx-stitch-export-page #mobile-menu,
body.camx-stitch-export-page #side-cart,
body.camx-stitch-export-page #side-filters {
	display: none !important;
}

.camx-stitch-wrapper,
.camx-stitch-content,
.camx-stitch-export-root {
	min-height: 100vh;
	width: 100%;
}

.camx-stitch-content {
	padding: 0 !important;
}

.camx-stitch-export-root a {
	text-decoration: none;
}

.camx-stitch-image {
	display: block;
	object-fit: cover;
}

.camx-stitch-image.absolute.inset-0.object-cover,
.camx-stitch-image.camx-stitch-placeholder--cover {
	width: 100%;
	height: 100%;
}

.camx-stitch-export-root a[class*=" py-"],
.camx-stitch-export-root a[class^="py-"],
.camx-stitch-export-root a[class*=" rounded"],
.camx-stitch-export-root a[class^="rounded"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.camx-stitch-export-root a.w-full {
	width: 100%;
}

.camx-stitch-export-root a.bg-primary {
	background-color: var(--camx-stitch-blue) !important;
	color: #ffffff !important;
}

.camx-stitch-export-root a.bg-on-surface {
	background-color: #181c23 !important;
	color: #ffffff !important;
}

.camx-stitch-export-root a.bg-surface-container-lowest,
.camx-stitch-export-root a.bg-surface {
	background-color: #ffffff !important;
}

.camx-stitch-export-root a.border-primary {
	border-color: var(--camx-stitch-blue) !important;
	color: var(--camx-stitch-blue) !important;
}

.camx-stitch-export-root button,
.camx-stitch-export-root a {
	-webkit-tap-highlight-color: transparent;
}

.camx-stitch-export-root .max-w-container-max,
.max-w-container-max {
	width: 100%;
	max-width: 1440px;
}

.camx-stitch-export-root .px-edge-margin {
	padding-left: clamp(24px, 5.555vw, 80px);
	padding-right: clamp(24px, 5.555vw, 80px);
}

.camx-stitch-export-root .py-section-padding-y {
	padding-top: clamp(72px, 8.333vw, 120px);
	padding-bottom: clamp(72px, 8.333vw, 120px);
}

.camx-stitch-export-root .pt-section-padding-y {
	padding-top: clamp(72px, 8.333vw, 120px);
}

.camx-stitch-export-root .pb-section-padding-y {
	padding-bottom: clamp(72px, 8.333vw, 120px);
}

.camx-stitch-export-root .mt-section-padding-y {
	margin-top: clamp(72px, 8.333vw, 120px);
}

.camx-stitch-export-root .mb-section-padding-y {
	margin-bottom: clamp(72px, 8.333vw, 120px);
}

.camx-stitch-export-root .text-display-hero {
	font-size: clamp(40px, 3.888vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.camx-stitch-export-root > main {
	padding-top: var(--camx-page-top-gap) !important;
}

.camx-stitch-export-root > .camx-export-nav + :is(header, section).pt-section-padding-y,
.camx-stitch-export-root > .camx-export-nav + :is(header, section)[class*="pt-section-padding-y"],
.camx-stitch-export-root > .camx-export-nav + :is(header, section).py-section-padding-y,
.camx-stitch-export-root > .camx-export-nav + :is(header, section)[class*="py-section-padding-y"] {
	padding-top: var(--camx-page-top-gap) !important;
}

.camx-stitch-export-root > main > section:first-child {
	margin-top: 0 !important;
}

.camx-stitch-export-root > main > section:first-child.py-section-padding-y,
.camx-stitch-export-root > main > section:first-child[class*="py-section-padding-y"] {
	padding-top: 0 !important;
}

.camx-stitch-placeholder {
	position: relative;
	display: flex;
	min-height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px dashed rgba(0, 88, 188, 0.34);
	background:
		linear-gradient(135deg, rgba(0, 88, 188, 0.08) 25%, transparent 25%) 0 0 / 22px 22px,
		linear-gradient(135deg, transparent 75%, rgba(0, 88, 188, 0.08) 75%) 0 0 / 22px 22px,
		linear-gradient(180deg, #ffffff 0%, #eef3fe 100%);
	color: #004493;
	text-align: center;
}

.camx-stitch-placeholder::after {
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(0, 88, 188, 0.12);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.camx-stitch-placeholder__content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 6px;
	max-width: min(82%, 360px);
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 50px rgba(0, 88, 188, 0.1);
	backdrop-filter: blur(14px);
}

.camx-stitch-placeholder__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
}

.camx-stitch-placeholder__size {
	color: var(--camx-stitch-ink);
	font-size: clamp(15px, 1.2vw, 22px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.camx-stitch-placeholder__note {
	color: var(--camx-stitch-muted);
	font-size: 12px;
	line-height: 1.35;
}

.camx-stitch-placeholder--cover {
	background:
		linear-gradient(180deg, rgba(249, 249, 255, 0.24), rgba(249, 249, 255, 0.74)),
		linear-gradient(135deg, rgba(0, 88, 188, 0.08) 25%, transparent 25%) 0 0 / 22px 22px,
		linear-gradient(135deg, transparent 75%, rgba(0, 88, 188, 0.08) 75%) 0 0 / 22px 22px,
		linear-gradient(180deg, #ffffff 0%, #eef3fe 100%);
}

.camx-stitch-placeholder--cover .camx-stitch-placeholder__content {
	display: none;
}

.camx-stitch-placeholder.w-32,
.camx-stitch-placeholder.w-24,
.camx-stitch-placeholder.w-20,
.camx-stitch-placeholder.w-16 {
	min-height: auto;
}

.camx-stitch-placeholder.w-32 .camx-stitch-placeholder__content,
.camx-stitch-placeholder.w-24 .camx-stitch-placeholder__content,
.camx-stitch-placeholder.w-20 .camx-stitch-placeholder__content,
.camx-stitch-placeholder.w-16 .camx-stitch-placeholder__content {
	gap: 2px;
	padding: 6px;
	border-radius: 10px;
}

.camx-stitch-placeholder.w-32 .camx-stitch-placeholder__label,
.camx-stitch-placeholder.w-24 .camx-stitch-placeholder__label,
.camx-stitch-placeholder.w-20 .camx-stitch-placeholder__label,
.camx-stitch-placeholder.w-16 .camx-stitch-placeholder__label {
	font-size: 7px;
}

.camx-stitch-placeholder.w-32 .camx-stitch-placeholder__size,
.camx-stitch-placeholder.w-24 .camx-stitch-placeholder__size,
.camx-stitch-placeholder.w-20 .camx-stitch-placeholder__size,
.camx-stitch-placeholder.w-16 .camx-stitch-placeholder__size {
	font-size: 10px;
}

.camx-stitch-placeholder.w-32 .camx-stitch-placeholder__note,
.camx-stitch-placeholder.w-24 .camx-stitch-placeholder__note,
.camx-stitch-placeholder.w-20 .camx-stitch-placeholder__note,
.camx-stitch-placeholder.w-16 .camx-stitch-placeholder__note {
	display: none;
}

.camx-export-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	color: #1e293b;
}

.camx-export-nav__inner {
	position: relative;
	gap: 24px;
	min-height: var(--camx-stitch-header-height);
}

.camx-export-nav__brand {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	white-space: nowrap;
}

.camx-export-nav__brand-mark {
	display: block;
	width: 84px;
	height: auto;
	object-fit: contain;
}

.camx-export-nav__links {
	align-items: center;
	gap: clamp(12px, 1.25vw, 24px) !important;
	font-size: clamp(12px, 0.92vw, 14px) !important;
	white-space: nowrap;
}

.camx-export-nav__actions {
	align-items: center;
	white-space: nowrap;
}

.camx-export-nav__icon {
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
}

.camx-export-nav__mobile-menu {
	display: none;
}

.camx-export-nav__mobile-cart {
	display: none !important;
}

.camx-export-nav__mobile-cart span {
	position: absolute;
	right: -8px;
	top: -8px;
	display: grid;
	min-width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 999px;
	background: var(--camx-stitch-blue);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

body.camx-stitch-export-page.admin-bar .camx-export-nav {
	top: 32px;
}

.camx-stitch-export-root [class*="top-[64px]"] {
	top: var(--camx-stitch-header-height) !important;
}

body.camx-stitch-export-page.woocommerce-cart .site-content,
body.camx-stitch-export-page.woocommerce-checkout .site-content,
body.camx-stitch-export-page.woocommerce-cart .main-content,
body.camx-stitch-export-page.woocommerce-checkout .main-content {
	padding-top: 0 !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] section > div.grid,
.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] section > div.grid {
	gap: clamp(32px, 3.4vw, 56px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] article,
.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] section > div.grid > div {
	box-shadow: 0 16px 44px rgba(8, 18, 28, 0.06) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] article {
	padding: clamp(32px, 3vw, 44px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] article > div[class*="h-[300px]"] {
	margin-bottom: clamp(24px, 2.4vw, 34px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] article ul {
	margin-bottom: clamp(28px, 2.8vw, 40px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] [data-camx-filter] {
	cursor: pointer;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] [data-camx-filter][aria-pressed="true"] {
	background: #151922 !important;
	color: #ffffff !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] [data-camx-filter][aria-pressed="false"] {
	background: rgba(240, 243, 248, 0.92) !important;
	color: #20242c !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] [data-camx-product-card][hidden] {
	display: none !important;
}

.camx-stitch-export-root[data-stitch-template="camx_yw810_desktop_detail_page_1"] [data-camx-gallery-thumb] {
	cursor: pointer;
	transition: transform 180ms ease, opacity 180ms ease;
}

.camx-stitch-export-root[data-stitch-template="camx_yw810_desktop_detail_page_1"] [data-camx-gallery-thumb]:hover,
.camx-stitch-export-root[data-stitch-template="camx_yw810_desktop_detail_page_1"] [data-camx-gallery-thumb]:focus-visible {
	opacity: 0.9;
	outline: none;
	transform: scale(1.03);
}

.camx-stitch-export-root[data-stitch-template="camx_yw810_desktop_detail_page_1"] [data-camx-gallery-main] {
	background: radial-gradient(circle at 50% 35%, rgba(37, 99, 235, 0.07), transparent 46%), #ffffff;
	object-fit: contain !important;
	padding: clamp(16px, 2vw, 28px);
	transition: opacity 180ms ease;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d {
	isolation: isolate;
	overflow: hidden;
	perspective: 1100px;
	box-shadow: 0 34px 90px rgba(0, 45, 98, 0.12);
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::before,
.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::after {
	position: absolute;
	z-index: 2;
	display: block;
	border-radius: 999px;
	content: "";
	pointer-events: none;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::before {
	inset: 9% auto auto 9%;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(0, 88, 188, 0.18);
	background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.88), rgba(173, 198, 255, 0.26) 58%, rgba(0, 88, 188, 0.08));
	box-shadow: 0 26px 60px rgba(0, 88, 188, 0.14);
	animation: camx-orbit-float 8s ease-in-out infinite;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::after {
	right: 10%;
	bottom: 12%;
	width: 230px;
	height: 74px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(216, 226, 255, 0.22));
	box-shadow: 0 24px 70px rgba(24, 28, 35, 0.12);
	transform: rotateX(58deg) rotateZ(-12deg);
	animation: camx-panel-float 9s ease-in-out infinite;
	backdrop-filter: blur(16px);
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d .camx-stitch-placeholder {
	z-index: 1;
	transform: rotateY(-12deg) rotateX(5deg) translateZ(18px);
	transform-style: preserve-3d;
	animation: camx-device-float 7s ease-in-out infinite;
}

.camx-stitch-form-notice {
	border-radius: 14px;
	padding: 14px 16px;
	font-weight: 600;
	line-height: 1.45;
}

.camx-stitch-form-notice--success {
	border: 1px solid rgba(0, 120, 80, 0.18);
	background: rgba(226, 247, 238, 0.9);
	color: #075a3f;
}

.camx-stitch-form-notice--error {
	border: 1px solid rgba(186, 26, 26, 0.18);
	background: rgba(255, 218, 214, 0.7);
	color: #7a1515;
}

.camx-stitch-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

@keyframes camx-device-float {
	0%,
	100% {
		transform: rotateY(-12deg) rotateX(5deg) translate3d(0, 0, 18px);
	}
	50% {
		transform: rotateY(-7deg) rotateX(8deg) translate3d(0, -16px, 34px);
	}
}

@keyframes camx-orbit-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(22px, -18px, 0) scale(1.06);
	}
}

@keyframes camx-panel-float {
	0%,
	100% {
		transform: rotateX(58deg) rotateZ(-12deg) translate3d(0, 0, 0);
	}
	50% {
		transform: rotateX(58deg) rotateZ(-8deg) translate3d(-12px, -16px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::before,
	.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::after,
	.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d .camx-stitch-placeholder {
		animation: none !important;
	}
}

.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] main > section:first-child {
	padding-top: 0 !important;
	padding-bottom: clamp(48px, 5vw, 76px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] main > section:first-child .mb-section-padding-y {
	margin-bottom: clamp(36px, 4vw, 56px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] main > section:nth-of-type(2),
.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(3) {
	margin-bottom: clamp(76px, 7vw, 112px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_hakk_m_zda_masa_st_1440px_1"] main > section:first-child {
	height: clamp(560px, 52vw, 720px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_hakk_m_zda_masa_st_1440px_1"] main > section:last-child {
	margin-top: clamp(64px, 6vw, 96px) !important;
	margin-bottom: clamp(64px, 6vw, 96px) !important;
	padding-top: clamp(64px, 6vw, 88px) !important;
	padding-bottom: clamp(64px, 6vw, 88px) !important;
}

.camx-stitch-export-root[data-stitch-template="camx_contact_page_wide_desktop_1440px_1"] main > section:nth-of-type(3) {
	padding-top: clamp(64px, 6vw, 92px) !important;
}

.camx-export-footer {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(193, 198, 215, 0.42);
	background:
		radial-gradient(circle at 12% 4%, rgba(0, 88, 188, 0.12), transparent 28%),
		radial-gradient(circle at 88% 12%, rgba(173, 198, 255, 0.22), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, #eef3fe 100%) !important;
}

.camx-export-footer__inner {
	width: min(1440px, calc(100vw - clamp(40px, 8vw, 160px)));
	padding-top: clamp(64px, 7vw, 96px) !important;
	padding-bottom: clamp(34px, 4vw, 52px) !important;
}

.camx-export-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(28px, 5vw, 76px);
	align-items: end;
	border-bottom: 1px solid rgba(193, 198, 215, 0.52);
	padding-bottom: clamp(34px, 5vw, 64px);
}

.camx-export-footer__brand,
.camx-export-footer__links,
.camx-export-footer__contact {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.camx-export-footer__brand {
	position: relative;
	max-width: 760px;
	padding: 0;
}

.camx-export-footer__logo {
	display: inline-flex !important;
	align-items: center;
	margin-bottom: 18px !important;
	color: #181c23 !important;
	font-size: clamp(34px, 4.6vw, 72px) !important;
	font-weight: 900;
	letter-spacing: -0.075em;
	line-height: 0.95;
}

.camx-export-footer__logo img {
	display: block;
	width: min(180px, 48vw);
	height: auto;
	object-fit: contain;
}

.camx-export-footer__brand p {
	max-width: 720px !important;
	color: #414755 !important;
	font-size: clamp(18px, 1.55vw, 24px) !important;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.45 !important;
	text-transform: none;
}

.camx-export-footer__cta {
	display: grid;
	gap: 14px;
	justify-items: end;
	min-width: 240px;
}

.camx-export-footer__cta span {
	color: #717786;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.camx-export-footer__cta a {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #0058bc;
	box-shadow: 0 18px 38px rgba(0, 88, 188, 0.18);
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 600;
	padding: 0 24px;
}

.camx-export-footer__body {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 72px);
	padding-top: clamp(34px, 5vw, 64px);
}

.camx-export-footer__links {
	display: grid !important;
	align-content: start;
	justify-content: start !important;
	gap: 14px !important;
	padding: 0;
	text-transform: none;
}

.camx-export-footer__links span,
.camx-export-footer__contact span {
	display: block;
	margin-bottom: 8px;
	color: #0058bc;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.camx-export-footer__links a {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	color: #414755 !important;
	font-size: 15px;
	font-weight: 450;
	letter-spacing: -0.01em;
}

.camx-export-footer__links a:hover {
	color: #0058bc !important;
}

.camx-export-footer__contact {
	display: grid;
	gap: 12px;
	align-content: start;
	color: #414755;
}

.camx-export-footer__contact a {
	color: #181c23 !important;
	font-size: clamp(15px, 1.35vw, 20px);
	font-weight: 600;
	letter-spacing: -0.03em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.camx-export-footer__contact p {
	margin: 0;
	color: #717786;
	font-size: 14px;
	line-height: 1.7;
}

.camx-payment-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.camx-payment-badge {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	border: 1px solid rgba(0, 88, 188, 0.14);
	border-radius: 999px;
	background: rgba(216, 226, 255, 0.62);
	color: #1f2937;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 0 12px;
	white-space: nowrap;
}

.camx-payment-badge strong {
	color: #0058bc;
	font-size: 14px;
	font-weight: 950;
	letter-spacing: -0.04em;
	margin-right: 4px;
}

.camx-export-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(34px, 5vw, 64px);
	border-top: 1px solid rgba(193, 198, 215, 0.52);
	color: #717786;
	font-size: 12px;
	font-weight: 450;
	letter-spacing: 0.08em;
	padding-top: 24px;
	text-transform: uppercase;
}

.camx-video-page {
	padding-top: var(--camx-page-top-gap);
}

.camx-video-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
	gap: clamp(34px, 5vw, 76px);
	align-items: center;
	padding-bottom: clamp(56px, 7vw, 96px);
}

.camx-video-hero__copy {
	display: grid;
	gap: 24px;
	max-width: 760px;
}

.camx-video-hero__copy h1 {
	margin: 0;
	color: #181c23;
	font-size: clamp(48px, 6vw, 88px);
	font-weight: 850;
	letter-spacing: -0.08em;
	line-height: 0.95;
}

.camx-video-hero__copy p {
	max-width: 620px;
	margin: 0;
	color: #596171;
	font-size: clamp(17px, 1.4vw, 21px);
	line-height: 1.65;
}

.camx-video-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.camx-video-hero__stats span {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(193, 198, 215, 0.58);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #596171;
	font-size: 13px;
	font-weight: 750;
	padding: 0 16px;
}

.camx-video-hero__stats strong {
	color: #0058bc;
}

.camx-video-feature,
.camx-video-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(193, 198, 215, 0.52);
	background:
		radial-gradient(circle at 72% 0%, rgba(173, 198, 255, 0.24), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
	box-shadow: 0 30px 80px rgba(8, 18, 28, 0.08);
}

.camx-video-feature {
	border-radius: 38px;
	padding: clamp(16px, 2vw, 24px);
}

.camx-video-feature video {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 14;
	border-radius: 28px;
	background: #111827;
	object-fit: cover;
}

.camx-video-feature > div {
	display: grid;
	gap: 8px;
	padding: 22px 8px 4px;
}

.camx-video-feature span,
.camx-video-card__body span {
	color: #0058bc;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.camx-video-feature h2,
.camx-video-card__body h2 {
	margin: 0;
	color: #181c23;
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.camx-video-feature h2 {
	font-size: clamp(24px, 2.6vw, 36px);
}

.camx-video-feature p,
.camx-video-card__body p {
	margin: 0;
	color: #717786;
	line-height: 1.55;
}

.camx-video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 36px);
}

.camx-video-card {
	display: grid;
	border-radius: 30px;
}

.camx-video-card__media {
	padding: 14px 14px 0;
}

.camx-video-card video {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 13.5;
	border-radius: 22px;
	background: #111827;
	object-fit: cover;
}

.camx-video-card__body {
	display: grid;
	gap: 8px;
	padding: 22px;
}

.camx-video-card__body h2 {
	font-size: clamp(20px, 1.9vw, 26px);
}

.camx-export-kicker {
	display: inline-flex;
	align-items: center;
	width: max-content;
	min-height: 32px;
	border-radius: 999px;
	background: #d8e2ff;
	color: #004493;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	padding: 0 14px;
	text-transform: uppercase;
}

.camx-export-showcase,
.camx-about-proof {
	width: min(1440px, 100%);
	margin: 0 auto clamp(84px, 8vw, 128px);
}

.camx-export-showcase__panel,
.camx-about-proof {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	border: 1px solid rgba(193, 198, 215, 0.48);
	border-radius: clamp(34px, 4vw, 54px);
	background:
		radial-gradient(circle at 80% 12%, rgba(173, 198, 255, 0.34), transparent 34%),
		linear-gradient(135deg, #ffffff 0%, #eef3fe 100%);
	box-shadow: 0 36px 100px rgba(8, 18, 28, 0.08);
	padding: clamp(32px, 5vw, 72px);
	overflow: hidden;
}

.camx-export-showcase__copy h2,
.camx-about-proof__copy h2 {
	max-width: 640px;
	margin: 22px 0 18px;
	color: #181c23;
	font-size: clamp(34px, 4.4vw, 64px);
	font-weight: 900;
	letter-spacing: -0.07em;
	line-height: 0.98;
}

.camx-export-showcase__copy h2 {
	max-width: 560px;
	font-size: clamp(28px, 3.1vw, 46px);
	line-height: 1.04;
}

.camx-export-showcase__copy p,
.camx-about-proof__copy p {
	max-width: 620px;
	color: #414755;
	font-size: clamp(16px, 1.35vw, 19px);
	line-height: 1.75;
}

.camx-export-showcase__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: clamp(28px, 4vw, 48px);
}

.camx-export-showcase__stats span,
.camx-about-proof__cards article {
	border: 1px solid rgba(193, 198, 215, 0.48);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.7);
	color: #717786;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
	padding: 18px;
}

.camx-export-showcase__stats strong,
.camx-about-proof__cards strong {
	display: block;
	color: #0058bc;
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.camx-export-showcase__visual,
.camx-about-proof__visual {
	position: relative;
	min-height: clamp(360px, 34vw, 520px);
	border-radius: clamp(28px, 3vw, 44px);
	background: #d8e2ff;
	box-shadow: 0 30px 78px rgba(0, 45, 98, 0.14);
	overflow: hidden;
}

.camx-export-showcase__visual img,
.camx-about-proof__visual img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transform: scale(1.02);
}

.camx-export-showcase__visual::after,
.camx-about-proof__visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 18, 28, 0.05), rgba(8, 18, 28, 0.34));
	content: "";
}

.camx-export-showcase__mini {
	position: absolute;
	z-index: 2;
	display: grid;
	gap: 4px;
	min-width: 190px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 22px 54px rgba(8, 18, 28, 0.14);
	backdrop-filter: blur(16px);
	padding: 16px 18px;
}

.camx-export-showcase__mini--top {
	top: 24px;
	right: 24px;
}

.camx-export-showcase__mini--bottom {
	left: 24px;
	bottom: 24px;
}

.camx-export-showcase__mini span {
	color: #717786;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.camx-export-showcase__mini strong {
	color: #181c23;
	font-size: 16px;
	font-weight: 900;
}

.camx-about-proof {
	grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
	margin-top: clamp(48px, 6vw, 92px);
}

.camx-about-proof__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.camx-about-proof__cards span {
	display: block;
	margin-top: 8px;
	color: #414755;
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 1023px) {
	.camx-export-nav__links,
	.camx-export-nav__actions {
		display: none !important;
	}

	.camx-export-nav__mobile-menu {
		position: absolute;
		right: 66px;
		top: calc(50% - 20px);
		z-index: 70;
		display: block;
	}

		.camx-export-nav__mobile-menu summary {
			display: inline-flex;
			width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(30, 41, 59, 0.12);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.82);
		box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
		color: #1e293b;
		cursor: pointer;
		list-style: none;
			-webkit-tap-highlight-color: transparent;
		}

		.camx-export-nav__mobile-menu summary::-webkit-details-marker {
			display: none;
	}

	.camx-export-nav__mobile-menu[open] summary {
		border-color: rgba(0, 88, 188, 0.2);
		background: #0058bc;
		color: #ffffff;
	}

	.camx-export-nav__mobile-menu nav {
		position: fixed;
		right: 20px;
		left: 20px;
		top: calc(var(--camx-stitch-header-height) + 12px);
		display: grid;
		gap: 6px;
		max-height: calc(100vh - var(--camx-stitch-header-height) - 32px);
		overflow-y: auto;
		border: 1px solid rgba(193, 198, 215, 0.58);
		border-radius: 26px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
		padding: 12px;
		backdrop-filter: blur(18px);
	}

	body.admin-bar .camx-export-nav__mobile-menu nav {
		top: calc(var(--camx-stitch-header-height) + 58px);
	}

	.camx-export-nav__mobile-menu nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-radius: 18px;
		color: #1f2937 !important;
		font-size: 15px;
		font-weight: 600;
		padding: 13px 14px;
	}

	.camx-export-nav__mobile-menu nav a.is-active {
		background: rgba(0, 88, 188, 0.1);
		color: #0058bc !important;
	}

	.camx-export-nav__mobile-menu nav a:not(.is-active):hover {
		background: rgba(241, 245, 249, 0.96);
	}

	.camx-export-nav__mobile-cart {
		display: inline-flex !important;
	}

	.camx-export-showcase__panel,
	.camx-about-proof,
	.camx-video-hero {
		grid-template-columns: 1fr;
	}

	.camx-export-footer__top,
	.camx-export-footer__body {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.camx-export-footer__brand {
		grid-column: 1 / -1;
	}

	.camx-export-footer__cta {
		justify-items: start;
	}

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

	.camx-about-proof__visual {
		order: 2;
	}
}

@media (max-width: 767px) {
	html,
	body.camx-stitch-export-page,
	body.camx-stitch-export-page #wrapper,
	body.camx-stitch-export-page .camx-stitch-wrapper,
	body.camx-stitch-export-page .camx-stitch-content {
		width: 100vw !important;
		max-width: 100vw !important;
		overflow-x: hidden !important;
	}

	.camx-stitch-export-root,
	.camx-stitch-export-root * {
		min-width: 0;
	}

	.camx-stitch-export-root {
		width: 100vw;
		max-width: 100vw;
		overflow-x: hidden;
	}

	.camx-stitch-export-root > main {
		padding-top: var(--camx-page-top-gap-mobile) !important;
	}

	.camx-stitch-export-root > .camx-export-nav + :is(header, section).pt-section-padding-y,
	.camx-stitch-export-root > .camx-export-nav + :is(header, section)[class*="pt-section-padding-y"],
	.camx-stitch-export-root > .camx-export-nav + :is(header, section).py-section-padding-y,
	.camx-stitch-export-root > .camx-export-nav + :is(header, section)[class*="py-section-padding-y"] {
		padding-top: var(--camx-page-top-gap-mobile) !important;
	}

	.camx-stitch-export-root .max-w-\[1440px\],
	.camx-stitch-export-root .max-w-container-max,
	.camx-stitch-export-root .max-w-4xl,
	.camx-stitch-export-root .max-w-3xl,
	.camx-stitch-export-root .max-w-2xl,
	.camx-stitch-export-root .max-w-xl {
		max-width: 100vw !important;
	}

	.camx-stitch-export-root .max-w-4xl,
	.camx-stitch-export-root .max-w-3xl,
	.camx-stitch-export-root .max-w-2xl,
	.camx-stitch-export-root .max-w-xl {
		max-width: calc(100vw - 40px) !important;
	}

	.camx-stitch-export-root section,
	.camx-stitch-export-root article,
	.camx-stitch-export-root p,
	.camx-stitch-export-root h1,
	.camx-stitch-export-root h2,
	.camx-stitch-export-root h3 {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	body.camx-stitch-export-page.admin-bar .camx-export-nav {
		top: 46px;
	}

	.camx-stitch-export-root .px-edge-margin {
		padding-left: 20px;
		padding-right: 20px;
	}

	.camx-stitch-export-root .text-display-hero {
		max-width: 100%;
		font-size: clamp(28px, 8vw, 32px);
		line-height: 1.06;
		overflow-wrap: break-word;
	}

	.camx-stitch-export-root .text-headline-xl {
		font-size: clamp(28px, 8vw, 34px);
		line-height: 1.14;
		overflow-wrap: break-word;
	}

	.camx-stitch-export-root .text-headline-md {
		font-size: clamp(21px, 6vw, 26px);
	}

	.camx-stitch-export-root .grid-cols-12 {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.camx-stitch-export-root [class*="col-span-"] {
		grid-column: auto !important;
	}

	.camx-export-nav__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.camx-stitch-export-root table {
		min-width: 720px;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_comparison_dashboard_1"] section > div.grid,
	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] section > div.grid {
		gap: 22px !important;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(2) {
		position: relative !important;
		top: auto !important;
		z-index: 10 !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(2) > div {
		display: grid !important;
		gap: 14px !important;
		align-items: stretch !important;
		border-bottom-color: rgba(193, 198, 215, 0.54) !important;
		padding-bottom: 16px !important;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(2) > div > div:first-child {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px !important;
		overflow: visible !important;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(2) [data-camx-filter] {
		width: 100%;
		min-height: 42px;
		justify-content: center;
		border: 1px solid rgba(193, 198, 215, 0.48);
		box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
		font-size: 13px !important;
		line-height: 1.15 !important;
		padding: 10px 12px !important;
		text-align: center;
		white-space: normal !important;
	}

	.camx-stitch-export-root[data-stitch-template="camx_product_listing_1"] main > section:nth-of-type(2) [data-camx-filter][aria-pressed="true"] {
		box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
	}

	.camx-export-footer__inner {
		width: 100%;
		max-width: 100vw;
		padding-right: max(20px, env(safe-area-inset-right)) !important;
		padding-left: max(20px, env(safe-area-inset-left)) !important;
		box-sizing: border-box;
	}

	.camx-export-footer__top,
	.camx-export-footer__body {
		grid-template-columns: 1fr;
	}

	.camx-export-footer__cta {
		justify-items: start;
		min-width: 0;
	}

	.camx-export-footer__links {
		gap: 14px !important;
	}

	.camx-export-footer__bottom {
		display: grid;
		gap: 10px;
	}

	.camx-video-page {
		padding-top: var(--camx-page-top-gap-mobile);
	}

	.camx-video-hero {
		gap: 28px;
		padding-bottom: 52px;
	}

	.camx-video-hero__copy h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.camx-video-feature {
		border-radius: 28px;
		padding: 12px;
	}

	.camx-video-feature video,
	.camx-video-card video {
		border-radius: 20px;
	}

	.camx-video-grid {
		grid-template-columns: 1fr;
	}

	.camx-export-showcase,
	.camx-about-proof {
		margin-bottom: 72px;
	}

	.camx-export-showcase__panel,
	.camx-about-proof {
		border-radius: 30px;
		padding: 24px;
	}

	.camx-export-showcase__stats,
	.camx-about-proof__cards {
		grid-template-columns: 1fr;
	}

	.camx-export-showcase__visual,
	.camx-about-proof__visual {
		min-height: 320px;
	}

	.camx-stitch-export-root[data-stitch-template="camx_hakk_m_zda_masa_st_1440px_1"] main > section:first-child {
		height: auto !important;
		min-height: 520px;
	}

}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d {
	position: relative;
	border: 1px solid rgba(193, 198, 215, 0.46);
	background:
		radial-gradient(circle at 70% 24%, rgba(0, 88, 188, 0.16), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, #eef3fe 100%) !important;
	transform-style: preserve-3d;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::before {
	z-index: 4;
	width: clamp(132px, 15vw, 220px);
	height: clamp(132px, 15vw, 220px);
	opacity: 0.94;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d::after {
	z-index: 5;
	width: clamp(180px, 20vw, 290px);
	height: clamp(64px, 7vw, 92px);
	opacity: 0.94;
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d .camx-stitch-placeholder {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] .camx-home-3d .camx-stitch-placeholder__content {
	transform: translateZ(58px);
}

.camx-stitch-export-root[data-stitch-template="camx_premium_homepage_1"] > main {
	padding-top: 0 !important;
}

.camx-legacy-home-nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	color: #151922;
	font-family: Inter, sans-serif;
}

body.admin-bar .camx-legacy-home-nav {
	top: 32px;
}

.camx-legacy-home-nav__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(18px, 2.4vw, 36px);
	width: min(1440px, calc(100vw - clamp(36px, 7vw, 132px)));
	min-height: var(--camx-stitch-header-height);
	margin: 0 auto;
	padding: 0 clamp(16px, 1.9vw, 32px);
}

.camx-legacy-home-nav__left,
.camx-legacy-home-nav__actions,
.camx-legacy-home-nav__links {
	display: flex;
	align-items: center;
}

.camx-legacy-home-nav__left {
	gap: 22px;
	min-width: 0;
}

.camx-legacy-home-nav__menu summary,
.camx-legacy-home-nav__icon {
	display: inline-grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	color: #111827;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.camx-legacy-home-nav__menu {
	position: relative;
	display: none;
	place-items: center;
}

.camx-legacy-home-nav__menu summary {
	list-style: none;
}

.camx-legacy-home-nav__menu summary::-webkit-details-marker {
	display: none;
}

.camx-legacy-home-nav__menu:hover summary,
.camx-legacy-home-nav__icon:hover {
	background: rgba(255, 255, 255, 0.58);
	transform: translateY(-1px);
}

.camx-legacy-home-nav__menu nav {
	position: absolute;
	top: 48px;
	left: 0;
	display: grid;
	gap: 4px;
	min-width: 220px;
	border: 1px solid rgba(24, 28, 35, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
	padding: 8px;
	backdrop-filter: blur(18px);
}

.camx-legacy-home-nav__menu:not([open]) nav {
	display: none;
}

.camx-legacy-home-nav__menu nav a {
	border-radius: 12px;
	color: #181c23 !important;
	font-size: 13px;
	font-weight: 600;
	padding: 11px 12px;
	text-decoration: none;
}

.camx-legacy-home-nav__menu nav a:hover {
	background: rgba(0, 88, 188, 0.08);
	color: #0058bc !important;
}

.camx-legacy-home-nav__brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: 84px;
	min-height: 44px;
	overflow: hidden;
}

.camx-legacy-home-nav__brand img {
	display: block;
	width: 84px;
	height: auto;
	filter: brightness(0) contrast(1.3);
}

.camx-legacy-home-nav__links {
	justify-content: center;
	gap: clamp(18px, 1.55vw, 30px);
	min-width: 0;
}

.camx-legacy-home-nav__links a,
.camx-legacy-home-nav__account {
	position: relative;
	color: #181c23 !important;
	font-size: clamp(12px, 0.82vw, 14px);
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.camx-legacy-home-nav__links a::after {
	position: absolute;
	right: 0;
	bottom: -14px;
	left: 0;
	height: 2px;
	background: currentColor;
	content: "";
	opacity: 0;
	transform: scaleX(0.7);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.camx-legacy-home-nav__links a.is-active::after,
.camx-legacy-home-nav__links a:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.camx-legacy-home-nav__actions {
	justify-content: flex-end;
	gap: 14px;
	flex: 0 0 auto;
}

.camx-legacy-home-nav__cart {
	position: relative;
}

.camx-legacy-home-nav__badge {
	position: absolute;
	right: -3px;
	top: -3px;
	display: grid;
	min-width: 17px;
	height: 17px;
	place-items: center;
	border-radius: 999px;
	background: #c9a455;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	padding: 0 5px;
}

.camx-legacy-hero {
	position: relative;
	left: 50%;
	width: 100vw;
	height: 100svh;
	min-height: 720px;
	margin-left: -50vw;
	overflow: hidden;
	background: #edf3f8;
	isolation: isolate;
}

.camx-legacy-hero__track,
.camx-legacy-hero__slide {
	position: absolute;
	inset: 0;
}

.camx-legacy-hero__slide {
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.34) 100%),
		var(--camx-legacy-hero-image);
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.65s ease, transform 2.2s ease;
}

.camx-legacy-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.camx-legacy-hero__slide::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.12) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 52%, rgba(255, 255, 255, 0.3) 100%);
	content: "";
	pointer-events: none;
}

.camx-legacy-hero__content {
	position: relative;
	z-index: 2;
	width: min(620px, calc(100vw - 48px));
	margin-left: clamp(42px, 10vw, 160px);
	padding-top: clamp(220px, 31vh, 292px);
	color: #171b20;
}

.camx-legacy-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	margin-bottom: 24px;
	padding: 5px 11px;
	background: rgba(0, 0, 0, 0.86);
	color: #ffffff;
	font-size: clamp(10px, 0.75vw, 12px);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.camx-legacy-hero__content h1 {
	max-width: 610px;
	margin: 0;
	color: #1b1d22;
	font-size: clamp(44px, 4.7vw, 76px);
	font-weight: 300;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.camx-legacy-hero__content p {
	margin: 28px 0 0;
	color: rgba(24, 28, 35, 0.62);
	font-size: clamp(15px, 1.05vw, 18px);
	font-weight: 400;
	line-height: 1.5;
}

.camx-legacy-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.38);
	color: rgba(24, 28, 35, 0.58);
	font-size: 42px;
	font-weight: 200;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(14px);
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.camx-legacy-hero__arrow:hover {
	background: rgba(255, 255, 255, 0.72);
	color: #181c23;
	transform: translateY(calc(-50% - 1px));
}

.camx-legacy-hero__arrow--prev {
	left: clamp(24px, 3.8vw, 72px);
}

.camx-legacy-hero__arrow--next {
	right: clamp(24px, 3.8vw, 72px);
}

.camx-legacy-hero__dots {
	position: absolute;
	bottom: 18px;
	left: clamp(30px, 3vw, 54px);
	z-index: 4;
	display: flex;
	gap: 9px;
	align-items: center;
}

.camx-legacy-hero__dots button {
	width: 7px;
	height: 7px;
	border: 0;
	border-radius: 999px;
	background: rgba(25, 28, 34, 0.25);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.camx-legacy-hero__dots button.is-active {
	background: #c9a455;
	transform: scale(1.2);
}

@media (max-width: 1180px) {
	.camx-legacy-home-nav__links {
		gap: 16px;
	}

	.camx-legacy-home-nav__account {
		display: none;
	}
}

@media (max-width: 900px) {
	body.admin-bar .camx-legacy-home-nav {
		top: 46px;
	}

	.camx-legacy-home-nav__inner {
		grid-template-columns: auto 1fr auto;
		width: 100%;
		min-height: 72px;
		padding: 0 22px;
	}

	.camx-legacy-home-nav__links,
	.camx-legacy-home-nav__actions .camx-legacy-home-nav__icon:not(.camx-legacy-home-nav__cart) {
		display: none;
	}

	.camx-legacy-home-nav__menu {
		display: inline-grid;
	}

	.camx-legacy-home-nav__menu nav {
		right: 0;
		left: auto;
		min-width: min(300px, calc(100vw - 44px));
	}

	.camx-legacy-home-nav__brand,
	.camx-legacy-home-nav__brand img {
		width: 82px;
	}

	.camx-legacy-home-nav__actions {
		margin-left: auto;
	}

	.camx-legacy-hero {
		height: 100svh;
		min-height: 660px;
	}

	.camx-legacy-hero__slide {
		background-image:
			linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.34) 100%),
			var(--camx-legacy-hero-mobile-image);
		background-position: 62% center;
	}

	.camx-legacy-hero__slide::after {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.76) 100%),
			linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.1) 100%);
	}

	.camx-legacy-hero__content {
		width: calc(100vw - 44px);
		margin-left: 22px;
		padding-top: 132px;
	}

	.camx-legacy-hero__eyebrow {
		margin-bottom: 16px;
		max-width: calc(100vw - 44px);
		white-space: normal;
	}

	.camx-legacy-hero__content h1 {
		max-width: 430px;
		font-size: clamp(42px, 13vw, 58px);
		line-height: 1;
	}

	.camx-legacy-hero__content p {
		margin-top: 18px;
		font-size: 15px;
	}

	.camx-legacy-hero__arrow {
		top: auto;
		bottom: 36px;
		width: 42px;
		height: 42px;
		font-size: 34px;
		transform: none;
	}

	.camx-legacy-hero__arrow:hover {
		transform: translateY(-1px);
	}

	.camx-legacy-hero__arrow--prev {
		left: auto;
		right: 78px;
	}

	.camx-legacy-hero__arrow--next {
		right: 22px;
	}

	.camx-legacy-hero__dots {
		bottom: 52px;
		left: 22px;
	}
}

/* Final typography pass: keep the Stitch visual language, but reduce the heavy
   black weights that made content feel loud across public pages. */
body.camx-stitch-export-page .camx-stitch-export-root :where(h1, h2, h3) {
	font-weight: 650 !important;
}

body.camx-stitch-export-page .camx-stitch-export-root :where(
	.cx2-nav-link,
	.cx2-pill,
	.cx2-label,
	.cx2-button,
	.cx2-proof span,
	.cx2-product-card li,
	.cx2-stockout,
	.cx2-filterbar span,
	.cx2-contact-info article span,
	.cx2-contact-info a,
	.cx2-footer-card h3,
	.cx2-footer-card a,
	.cx2-footer-bottom,
	.camx-export-kicker,
	.camx-export-footer__links span,
	.camx-export-footer__contact span,
	.camx-export-footer__cta a,
	.camx-export-showcase__stats span,
	.camx-about-proof__cards article,
	.camx-legacy-home-nav__links a,
	.camx-legacy-hero__eyebrow
) {
	font-weight: 560 !important;
}

body.camx-stitch-export-page .camx-stitch-export-root :where(
	.cx2-price,
	.cx2-price ins,
	.camx-export-showcase__stats strong,
	.camx-about-proof__cards strong,
	.camx-export-showcase__mini strong,
	.camx-payment-badge strong
) {
	font-weight: 680 !important;
}

.camx-payment-badges {
	justify-content: center;
	align-items: center;
	width: 100%;
}

.camx-payment-badge {
	justify-content: center;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.cx2-footer-card .camx-payment-badges,
.camx-export-footer__contact .camx-payment-badges {
	justify-self: center;
}
