.footer-social.campir-social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
}

.campir-social-icon {
	align-items: center;
	background: #151b23;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 10px;
	color: #f5f7fa !important;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
	min-height: 42px;
	padding: 9px 12px;
	text-decoration: none !important;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.campir-social-icon:hover,
.campir-social-icon:focus-visible {
	border-color: #ef5a42;
	color: #fff !important;
	transform: translateY(-2px);
}

.campir-social-icon svg {
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 21px;
}

.campir-social-icon svg .solid {
	fill: currentColor;
	stroke: none;
}

/* Missing launch pages: clear, accessible customer-care and comparison layouts. */
.campir-launch-page {
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(48px, 7vw, 88px) 20px;
}

.campir-launch-page h1 {
	font-size: clamp(36px, 6vw, 64px);
	letter-spacing: -.04em;
	line-height: 1.05;
	margin: 8px 0 18px;
}

.campir-page-kicker {
	color: #ef5a42;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	margin: 0;
}

.campir-page-lead {
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.65;
	max-width: 780px;
}

.campir-contact-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 42px 0;
}

.campir-contact-card {
	background: #111820;
	border: 1px solid #303a45;
	border-radius: 16px;
	color: #fff !important;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 190px;
	padding: 28px;
	text-decoration: none !important;
}

.campir-contact-card span { color: #ff826c; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.campir-contact-card strong { font-size: clamp(19px, 2vw, 25px); overflow-wrap: anywhere; }
.campir-contact-card small { color: #cbd2da; font-size: 14px; line-height: 1.5; margin-top: auto; }
.campir-contact-card:hover, .campir-contact-card:focus-visible { border-color: #ef5a42; transform: translateY(-2px); }

.campir-contact-location {
	align-items: center;
	background: #f3f5f7;
	border-radius: 18px;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	padding: clamp(26px, 5vw, 48px);
	color: #17202a;
}

.campir-contact-location h2 { color: #111820; margin: 8px 0; }
.campir-contact-location p { color: #34414f; }
.campir-contact-location .campir-page-kicker { color: #c73f2c; }
.campir-contact-location p:last-child { margin-bottom: 0; max-width: 700px; }

.campir-compare-wrap { margin-top: 40px; overflow-x: auto; }
.campir-compare-table { border-collapse: collapse; min-width: 720px; width: 100%; }
.campir-compare-table th, .campir-compare-table td { border-bottom: 1px solid #dce1e6; line-height: 1.5; padding: 18px; text-align: left; vertical-align: top; }
.campir-compare-table thead th { background: #111820; color: #fff; font-size: 18px; }
.campir-compare-table thead th:first-child { border-radius: 12px 0 0; }
.campir-compare-table thead th:last-child { border-radius: 0 12px 0 0; }
.campir-compare-table tbody th { background: #eef1f4; color: #17202a; font-weight: 800; width: 22%; }
.campir-compare-table tbody td { background: #fff; color: #263442; }
.campir-compare-table tbody tr:nth-child(even) th { background: #e4e9ed; }
.campir-compare-table tbody tr:nth-child(even) td { background: #f7f8f9; }
.campir-compare-price td { color: #c73f2c !important; font-size: 22px; font-weight: 800; white-space: nowrap; }
.campir-compare-price .woocommerce-Price-amount { white-space: nowrap; }
.campir-compare-actions { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin: 26px 0; padding-left: 22%; }
.campir-compare-actions .button { justify-content: center; text-align: center; }
.campir-compare-help { text-align: center; }

@media (max-width: 760px) {
	.campir-contact-grid { grid-template-columns: 1fr; }
	.campir-contact-card { min-height: 150px; }
	.campir-contact-location { align-items: flex-start; flex-direction: column; }
	.campir-compare-wrap { margin-left: -20px; margin-right: -20px; padding: 0 20px; }
	.campir-compare-actions { grid-template-columns: 1fr; padding-left: 0; }
}

/* iPhone/mobile product-page safeguard. WooCommerce initially hides its
 * gallery while FlexSlider calculates dimensions; these rules ensure a slow
 * or interrupted initialization can never leave customers with no images. */
@media (max-width: 782px) {
	html,
	body { overflow-x: clip; }

	.single-product div.product {
		display: block !important;
		width: 100% !important;
	}

	.single-product .woocommerce-product-gallery,
	.single-product .woocommerce-product-gallery.images {
		display: block !important;
		float: none !important;
		max-width: 100% !important;
		opacity: 1 !important;
		position: relative !important;
		visibility: visible !important;
		width: 100% !important;
	}

	.single-product .woocommerce-product-gallery .flex-viewport {
		max-width: 100% !important;
		min-height: min(88vw, 520px);
		overflow: hidden !important;
		width: 100% !important;
	}

	.single-product .woocommerce-product-gallery__wrapper,
	.single-product .woocommerce-product-gallery__image {
		min-height: min(88vw, 520px);
	}

	.single-product .woocommerce-product-gallery__image img {
		display: block !important;
		height: auto !important;
		max-width: 100% !important;
		opacity: 1 !important;
		visibility: visible !important;
		width: 100% !important;
	}

	.single-product div.product .summary {
		clear: both;
		float: none !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.single-product button,
	.single-product .button,
	.campir-launch-page .button {
		min-height: 44px;
	}
}

.memory-pair.campir-memory-trio {
	align-items: flex-end;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	inset: auto !important;
	max-width: none !important;
	position: relative !important;
	width: 100% !important;
}

.memory-pair.campir-memory-trio img {
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 12px;
	height: auto !important;
	max-height: 185px;
	object-fit: contain;
	width: 100% !important;
}

.memory-pair.campir-memory-trio::after {
	content: none !important;
}

/* Keep the moving road footage visibly premium without reducing text clarity. */
.hero video {
	filter: brightness(1.2) saturate(1.12) contrast(1.04);
}

.hero::after {
	background:
		linear-gradient(90deg, rgba(5,7,9,.74), rgba(5,7,9,.34) 52%, rgba(5,7,9,.08)),
		linear-gradient(0deg, rgba(5,7,9,.15), transparent) !important;
}

/* Refined homepage brand statement: compact, balanced and easy to scan. */
.brand-grid {
	align-items: stretch;
}

.brand-grid .brand-card:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 4vw, 48px);
}

.brand-grid .brand-card:first-child .eyebrow {
	align-self: flex-start;
	color: #ff826c;
	font-size: 13px;
	line-height: 1.35;
}

.brand-grid .brand-card:first-child h2 {
	font-size: clamp(34px, 3.4vw, 48px);
	letter-spacing: -.035em;
	line-height: 1.08;
	margin: 20px 0 0;
	max-width: 650px;
}

.brand-grid .brand-card:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* A smaller, more polished product label leaves more room for the HS-12. */
.hero .product-badge {
	backdrop-filter: blur(10px);
	background: rgba(8,10,13,.78);
	border-left-width: 3px;
	max-width: 240px;
	padding: 10px 13px 11px;
}

.hero .product-badge small {
	font-size: 11px;
	letter-spacing: .08em;
}

.hero .product-badge strong {
	font-size: 30px;
	line-height: 1.05;
}

.hero .product-badge span {
	font-size: 12px;
	line-height: 1.35;
}

/* Seven concise proof points form one consistent brand strip site-wide. */
.campir-global-features {
	background: #0e1217;
	border-top: 1px solid #242c35;
	padding: 34px 0;
}

.benefits.campir-benefits-seven {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.benefits.campir-benefits-seven .benefit {
	min-width: 0;
	padding: 18px 14px;
}

.benefits.campir-benefits-seven .benefit strong {
	font-size: 16px;
	line-height: 1.25;
}

.benefits.campir-benefits-seven .benefit span {
	display: block;
	font-size: 13px;
	line-height: 1.45;
}

/* The S-17 catalogue artwork stays visually centred in its white stage. */
.category-grid > .category-card:not(.memory) > img {
	display: block;
	grid-column: 1 / -1 !important;
	inset: auto !important;
	justify-self: stretch;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: none !important;
	object-position: center center !important;
	position: relative !important;
	transform: none !important;
	width: 100% !important;
}

/* Prices remain concise; tax is calculated and itemized at checkout. */
.woocommerce-price-suffix {
	display: none !important;
}

.currency-code {
	display: none !important;
}

/* AJAX purchase feedback must not collide with the product button. */
.added_to_cart.wc-forward {
	display: inline-flex;
	margin-left: 14px !important;
	padding: 10px 0;
}

.campir-product-card .buy {
	column-gap: 14px;
	row-gap: 10px;
	flex-wrap: wrap;
}

/* Equal-height merchandising cards keep prices and purchase actions aligned. */
.campir-product-card {
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.campir-product-card .stock {
	margin-top: auto;
}

.campir-product-card .amazon {
	margin-top: 14px;
}

.campir-product-card .buy .added_to_cart.wc-forward {
	margin-left: 0 !important;
	width: 100%;
}

/* Give the quantity control and purchase button a deliberate visual gap. */
.single-product form.cart {
	align-items: center;
	display: flex !important;
	flex-wrap: wrap;
	gap: 14px;
}

.single-product form.cart .quantity,
.single-product form.cart .single_add_to_cart_button {
	float: none !important;
	margin: 0 !important;
}

.single-product form.cart .quantity .qty {
	min-height: 46px;
}

/* Related products use the full product-page width and equal-height cards. */
.single-product div.product .related.products {
	grid-column: 1 / -1 !important;
	width: 100% !important;
}

.single-product div.product .related.products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	width: 100% !important;
}

.single-product div.product .related.products li.product {
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.single-product div.product .related.products li.product .button {
	margin-top: auto !important;
}

/*
 * Give the S-17 artwork its own uninterrupted stage. The marketing copy and
 * product badge now sit in a dedicated information rail below the image.
 */
.category-grid > .category-card:not(.memory) {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
	grid-template-rows: minmax(0, 1fr) auto;
	background: #fff;
}

.category-grid > .category-card:not(.memory) > img {
	grid-column: 1 / -1;
	grid-row: 1;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: 12px 18px 4px;
}

.category-grid > .category-card:not(.memory) .category-copy {
	align-self: stretch;
	background: #0d1218;
	border-radius: 0;
	grid-column: 1;
	grid-row: 2;
	inset: auto !important;
	padding: 15px 20px 17px;
	position: relative !important;
	width: auto !important;
}

.category-grid > .category-card:not(.memory) .category-copy h3 {
	font-size: clamp(21px, 2vw, 28px);
	line-height: 1.05;
	margin: 6px 0;
}

.category-grid > .category-card:not(.memory) .category-copy u {
	color: #ff755d;
	font-size: 13px;
	font-weight: 800;
}

.category-grid > .category-card:not(.memory) .product-badge.s17 {
	align-self: stretch;
	background: #111820;
	border-left: 1px solid #303a45;
	border-radius: 0;
	box-shadow: none;
	grid-column: 2;
	grid-row: 2;
	inset: auto !important;
	max-width: none;
	padding: 16px 20px;
	position: relative !important;
	width: auto !important;
}

.category-grid > .category-card:not(.memory) .product-badge.s17 strong {
	font-size: 29px;
	line-height: 1;
	margin: 3px 0;
}

.category-grid > .category-card:not(.memory) .product-badge.s17 span {
	font-size: 13px;
	line-height: 1.35;
}

/* Product information must move naturally with the rest of the page. */
.single-product div.product .summary.entry-summary {
	inset: auto !important;
	position: static !important;
}

/* WooCommerce account: balanced two-column login/register on desktop. */
.woocommerce #customer_login.u-columns {
	align-items: start;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 48px);
}

.woocommerce #customer_login.u-columns::before,
.woocommerce #customer_login.u-columns::after {
	display: none;
}

.woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2 {
	float: none;
	margin: 0;
	width: auto;
}

.woocommerce #customer_login form.login,
.woocommerce #customer_login form.register {
	min-height: 100%;
	margin-top: 0;
}

/* Premium customer-account workspace: clear navigation and readable content. */
.woocommerce-account main,
.woocommerce-account .site-main {
	min-width: 0;
}

.woocommerce-account .woocommerce:not(:has(#customer_login)) {
	align-items: start;
	display: grid;
	gap: clamp(24px, 4vw, 46px);
	grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
}

/* WooCommerce clearfix pseudo-elements otherwise become unwanted grid items. */
.woocommerce-account .woocommerce:not(:has(#customer_login))::before,
.woocommerce-account .woocommerce:not(:has(#customer_login))::after {
	content: none !important;
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: linear-gradient(160deg, #151c24, #0d1218);
	border: 1px solid #2b3540;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
	float: none !important;
	overflow: hidden;
	padding: 10px;
	width: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	border: 0 !important;
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 10px;
	color: #c9d1da !important;
	display: flex;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.25;
	min-height: 46px;
	padding: 11px 14px;
	text-decoration: none !important;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
	background: #1b2530;
	border-color: #3a4652;
	color: #fff !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: linear-gradient(135deg, #ed593f, #c93c2b);
	border-color: #ff806a;
	color: #fff !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	background: linear-gradient(145deg, rgba(20, 28, 37, .97), rgba(10, 14, 20, .98));
	border: 1px solid #2d3742;
	border-radius: 20px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
	color: #d7dee6;
	float: none !important;
	line-height: 1.7;
	min-height: 390px;
	padding: clamp(26px, 4vw, 48px);
	width: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
	margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
	color: #ff806a;
	font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content table {
	background: rgba(255, 255, 255, .035);
	border-color: #35404b !important;
	border-radius: 12px;
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content th,
.woocommerce-account .woocommerce-MyAccount-content td {
	border-color: #35404b !important;
	color: #e4e9ee;
	padding: 14px !important;
}

.woocommerce-account .woocommerce-MyAccount-content input,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
	background: #fff;
	border: 1px solid #c9d2dc;
	border-radius: 8px;
	color: #15191e;
	min-height: 44px;
	padding: 10px 12px;
}

.woocommerce-account .woocommerce-MyAccount-content fieldset {
	border: 1px solid #35404b;
	border-radius: 12px;
	margin: 24px 0;
	padding: 20px;
}

/* Slightly larger, balanced desktop branding and navigation. */
@media (min-width: 1101px) {
	.site-header .campir-wrap {
		width: min(1320px, 96vw);
	}

	.site-header .header-row {
		grid-template-columns: 220px minmax(0, 1fr) auto;
		gap: 16px;
	}

	.site-header .brand,
	.site-header .brand a {
		min-width: 0;
		width: 220px;
	}

	.site-header .brand img {
		width: 215px;
		height: 72px;
		max-height: 72px;
		object-fit: contain;
	}

	.site-header .main-nav ul {
		gap: clamp(12px, 1.15vw, 20px);
	}

	.site-header .main-nav a {
		font-size: 16.5px;
		white-space: nowrap;
	}

	html[lang^="fr"] .header-tools,
	html[lang^="es"] .header-tools {
		gap: 6px;
	}

	html[lang^="fr"] .tool-link.account,
	html[lang^="es"] .tool-link.account {
		display: none;
	}
}

.campir-mobile-preferences {
	display: none;
}

/* Keep the full navigation on compact desktop screens without crowding the logo. */
@media (min-width: 1001px) and (max-width: 1279px) {
	.site-header .campir-wrap {
		width: min(1260px, 98vw);
	}

	.site-header .header-row {
		grid-template-columns: 180px minmax(0, 1fr) auto !important;
		gap: 9px !important;
	}

	.site-header .brand,
	.site-header .brand a {
		width: 180px;
		min-width: 0;
	}

	.site-header .brand img {
		width: 176px;
		height: 64px;
		max-height: 64px;
		object-fit: contain;
	}

	.site-header .menu-toggle {
		display: none !important;
	}

	.site-header .main-nav {
		display: block !important;
		grid-column: auto !important;
	}

	.site-header .main-nav ul {
		display: flex !important;
		gap: clamp(6px, .65vw, 9px) !important;
		padding: 0 !important;
	}

	.site-header .main-nav a {
		display: inline-flex;
		font-size: clamp(12.5px, 1.12vw, 14.5px) !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		white-space: nowrap !important;
	}

	.site-header .header-tools {
		grid-column: auto;
		grid-row: auto;
		gap: 4px !important;
	}

	.site-header .tool-link.account {
		display: none !important;
	}

	.site-header .header-select select {
		padding-left: 4px;
		padding-right: 4px;
	}
}

/* Tablet navigation remains a menu; desktop navigation begins at 1001px. */
@media (min-width: 861px) and (max-width: 1000px) {
	.site-header .header-row {
		grid-template-columns: minmax(190px, 1fr) auto !important;
	}

	.site-header .menu-toggle {
		display: grid !important;
	}

	.site-header .main-nav {
		display: none !important;
		grid-column: 1 / -1;
	}

	.site-header .main-nav.open {
		display: block !important;
	}
}

.campir-policy-copy {
	color: #d7dde5;
	line-height: 1.75;
}

.campir-policy-copy h2 {
	color: #fff;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	margin: 2rem 0 .7rem;
}

.campir-policy-copy a {
	color: #ff755d;
}

.campir-policy-copy ul {
	padding-left: 1.3rem;
}

/* Give cart notices breathing room above the product purchase controls. */
.woocommerce-notices-wrapper:not(:empty) {
	clear: both;
	margin: 0 0 30px;
}

.woocommerce-message {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	margin-bottom: 30px !important;
}

.woocommerce-message .button,
.woocommerce-message a.button {
	flex: 0 0 auto;
	margin: 0 !important;
}

/* Restore the Services photography as a large, full-width installation view. */
.service-layout {
	grid-template-columns: 1fr !important;
}

.service-image {
	aspect-ratio: 1600 / 757;
	align-self: start;
	height: auto !important;
	max-height: none !important;
	width: 100%;
}

.service-image img {
	display: block;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	width: 100% !important;
}

/* Premium, high-contrast payment panel with clean white secure card fields. */
.woocommerce-checkout #payment {
	background: #10161d !important;
	border: 1px solid #303b46;
	border-radius: 14px;
	color: #e8edf2 !important;
	overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom-color: #303b46 !important;
}

.woocommerce-checkout #payment div.payment_box {
	background: #18212a !important;
	border: 1px solid #394754;
	border-radius: 10px;
	color: #e8edf2 !important;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #394754 !important;
}

.woocommerce-checkout #payment .wc-stripe-elements-field,
.woocommerce-checkout #payment .wc-stripe-iban-element-field,
.woocommerce-checkout #payment input[type="text"] {
	background: #fff !important;
	border: 1px solid #c7d0d9 !important;
	border-radius: 8px !important;
	color: #111 !important;
	min-height: 46px;
	padding: 12px !important;
}

.woocommerce-checkout #payment label,
.woocommerce-checkout #payment p {
	color: #e8edf2;
}

.woocommerce-checkout #payment .payment_method_stripe > label {
	font-size: 16px;
	font-weight: 850;
}

@media (max-width: 860px) {
	.woocommerce-account .woocommerce:not(:has(#customer_login)) {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		min-height: 0;
	}

	.site-header .header-row {
		gap: 8px !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
	}

	.site-header .brand,
	.site-header .brand a {
		max-width: min(205px, 52vw);
		width: auto;
	}

	.site-header .brand img {
		height: 62px;
		max-height: 62px;
		max-width: 100%;
		width: 205px;
	}

	.site-header .header-tools {
		gap: 6px;
	}

	.site-header .tool-link {
		min-height: 40px;
		padding: 7px 9px;
	}

	.site-header .main-nav.open {
		background: #0d1218;
		border-top: 1px solid #29333d;
		padding: 4px 14px 16px;
	}

	.site-header .main-nav a {
		font-size: 16.5px;
		line-height: 1.25;
		padding: 13px 4px;
	}

	.campir-mobile-preferences {
		background: #0d1218;
		border-top: 1px solid #303a45;
		border-radius: 0 0 10px 10px;
		display: grid;
		gap: 10px;
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0;
		padding: 12px 14px 14px;
		width: 100%;
	}

	.campir-mobile-preferences label {
		color: #aeb7c1;
		display: grid;
		font-size: 11px;
		font-weight: 850;
		gap: 6px;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	.campir-mobile-preferences select {
		background: #151b23;
		border: 1px solid #3b4651;
		border-radius: 8px;
		color: #fff;
		font-size: 15px;
		font-weight: 800;
		min-height: 44px;
		padding: 0 10px;
		width: 100%;
	}
}

@media (max-width: 760px) {
	.footer-social.campir-social-icons {
		align-items: stretch;
		flex-direction: column;
	}

	.campir-social-icon {
		justify-content: flex-start;
		width: 100%;
	}

	.category-grid > .category-card.memory {
		align-items: stretch !important;
		background: #f5f6f7;
		display: flex !important;
		flex-direction: column;
		justify-content: flex-start;
		min-height: 0 !important;
		padding: 0 !important;
	}

	.category-grid > .category-card.memory .category-copy {
		background: #0d1218;
		border-radius: 0;
		inset: auto !important;
		order: 1;
		padding: 18px 18px 17px;
		position: relative !important;
		text-align: left;
		width: 100% !important;
	}

	.category-grid > .category-card.memory .category-copy h3 {
		font-size: clamp(28px, 8vw, 34px);
		line-height: 1.05;
		margin: 6px 0;
	}

	.category-grid > .category-card.memory .memory-pair.campir-memory-trio {
		align-items: center;
		background: #f5f6f7;
		gap: 4px;
		order: 2;
		padding: 15px 5px 18px;
		width: 100% !important;
	}

	.category-grid > .category-card.memory .memory-pair.campir-memory-trio img {
		border-radius: 8px;
		max-height: none !important;
		min-width: 0;
		width: 100% !important;
	}

	.woocommerce #customer_login.u-columns {
		grid-template-columns: 1fr;
	}

	.category-grid > .category-card:not(.memory) {
		display: flex !important;
		flex-direction: column;
		grid-template-columns: none;
		grid-template-rows: none;
		min-height: 0 !important;
	}

	.category-grid > .category-card:not(.memory) > img {
		aspect-ratio: 1 / 1;
		flex: 0 0 auto;
		grid-column: auto;
		grid-row: auto;
		height: auto !important;
		max-height: 390px;
		object-fit: contain !important;
		order: 1;
		padding: 8px 10px 2px;
		width: 100% !important;
	}

	.category-grid > .category-card:not(.memory) .category-copy {
		flex: 0 0 auto;
		grid-column: auto;
		grid-row: auto;
		order: 2;
	}

	.category-grid > .category-card:not(.memory) .product-badge.s17 {
		border-left: 0;
		border-top: 1px solid #303a45;
		flex: 0 0 auto;
		grid-column: auto;
		grid-row: auto;
		order: 3;
	}

	.woocommerce-message {
		align-items: stretch;
		display: grid;
	}

	.woocommerce-checkout #payment div.payment_box {
		margin-left: 0;
		margin-right: 0;
		padding: 14px;
		width: 100%;
	}

	.brand-grid .brand-card:first-child {
		padding: 28px 24px;
	}

	.brand-grid .brand-card:first-child h2 {
		font-size: 34px;
	}

	.benefits.campir-benefits-seven {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product div.product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 560px) {
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		border-radius: 14px;
		padding: 22px 18px;
	}
	.site-header .brand,
	.site-header .brand a {
		max-width: 46vw;
	}

	.site-header .brand img {
		height: 56px;
		max-height: 56px;
		width: 178px;
	}

	.site-header .tool-link.cart {
		font-size: 13px;
		padding-left: 8px;
		padding-right: 8px;
	}

	.category-grid > .category-card.memory .memory-pair.campir-memory-trio {
		gap: 3px;
		padding-left: 4px;
		padding-right: 4px;
	}

	.benefits.campir-benefits-seven,
	.single-product div.product .related.products ul.products {
		grid-template-columns: 1fr !important;
	}

	.added_to_cart.wc-forward {
		margin-left: 10px !important;
	}
}
.campir-support-actions {
	background: linear-gradient(145deg, rgba(19, 27, 39, .96), rgba(7, 11, 18, .98));
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 24px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
	margin: 48px 0 10px;
	padding: clamp(26px, 4vw, 44px);
}
.campir-support-actions h2 { margin: 6px 0 8px; }
.campir-support-actions > p:not(.campir-support-eyebrow) { color: #b9c2cf; margin: 0 0 24px; }
.campir-support-eyebrow { color: #ff6b35; font-size: .78rem; font-weight: 800; letter-spacing: .16em; margin: 0; }
.campir-support-action-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.campir-support-action {
	align-items: center;
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	color: #fff !important;
	display: grid;
	gap: 14px;
	grid-template-columns: 42px 1fr auto;
	padding: 20px;
	text-decoration: none !important;
	transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.campir-support-action:hover { background: rgba(255,255,255,.085); border-color: rgba(255,107,53,.65); transform: translateY(-2px); }
.campir-support-action-icon { align-items:center; background:#ff5a24; border-radius:50%; display:flex; font-weight:900; height:42px; justify-content:center; width:42px; }
.campir-support-action strong { display:block; font-size:1.05rem; margin-bottom:5px; }
.campir-support-action small { color:#b9c2cf; display:block; font-size:.88rem; line-height:1.45; }
.campir-support-action b { color:#ff6b35; font-size:1.35rem; }
.site-footer .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.campir-footer-care ul { list-style:none; margin:0; padding:0; }
.campir-footer-care li + li { margin-top:8px; }
.campir-footer-care a { color:inherit; text-decoration:none; }
.campir-footer-care a:hover { color:#ff6b35; }

@media (max-width: 900px) {
	.site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.campir-support-action-grid, .site-footer .footer-grid { grid-template-columns: 1fr; }
}

.page-id-70 .qr-box.campir-app-download-box {
	align-items: center;
	background: linear-gradient(145deg, rgba(24,34,48,.98), rgba(10,15,23,.98));
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 20px;
	box-shadow: 0 18px 46px rgba(0,0,0,.24);
	display: grid;
	gap: clamp(24px,4vw,44px);
	grid-template-columns: minmax(0,1fr) 190px;
	margin-top: 24px;
	padding: clamp(24px,4vw,38px);
}
.page-id-70 .campir-app-download-box h3 { color:#fff; font-size:clamp(1.35rem,2.5vw,1.8rem); margin:0 0 10px; }
.page-id-70 .campir-app-download-copy { color:#c3ccd8; line-height:1.65; margin:0 0 20px; max-width:650px; }
.page-id-70 .campir-store-download {
	background:#fff;
	border:1px solid rgba(255,255,255,.18);
	border-radius:12px;
	color:#101722 !important;
	display:inline-flex;
	flex-direction:column;
	margin:0 10px 10px 0;
	min-width:220px;
	padding:11px 16px;
	text-decoration:none !important;
	transition:transform .2s ease, box-shadow .2s ease;
}
.page-id-70 .campir-store-download:hover { box-shadow:0 8px 22px rgba(0,0,0,.22); transform:translateY(-2px); }
.page-id-70 .campir-store-download span { color:#626d7a; font-size:.72rem; font-weight:700; letter-spacing:.03em; }
.page-id-70 .campir-store-download strong { font-size:.96rem; margin-top:2px; }
.page-id-70 .campir-app-download-box > img { background:#fff; border-radius:14px; box-shadow:0 8px 24px rgba(0,0,0,.24); height:auto; padding:10px; width:190px; }
@media (max-width: 700px) {
	.page-id-70 .qr-box.campir-app-download-box { grid-template-columns:1fr; }
	.page-id-70 .campir-app-download-box > img { justify-self:center; width:180px; }
	.page-id-70 .campir-store-download { display:flex; margin-right:0; width:100%; }
}

.page-id-69 .price-options.campir-installation-options {
	align-items: stretch;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2,minmax(0,1fr));
	margin: 24px 0 28px;
}
.page-id-69 .campir-installation-card {
	background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: clamp(22px,3vw,30px);
}
.page-id-69 .campir-installation-card-featured { border-color: rgba(255,107,53,.58); box-shadow: inset 0 3px 0 #ff5a24; }
.page-id-69 .campir-installation-card > span { color:#ff8a61; font-size:.77rem; font-weight:800; letter-spacing:.11em; line-height:1.4; }
.page-id-69 .campir-installation-card > strong { color:#fff; display:block; font-size:clamp(2rem,4vw,2.8rem); line-height:1; margin:14px 0 18px; }
.page-id-69 .campir-installation-card > p { color:#c5ced9; font-size:.96rem; line-height:1.65; margin:auto 0 0; }
@media (max-width: 680px) {
	.page-id-69 .price-options.campir-installation-options { grid-template-columns:1fr; }
	.page-id-69 .campir-installation-card { min-height:0; }
}


/* Cross-browser mobile header controls: keep iOS and Android colours identical. */
.site-header .menu-toggle {
	-webkit-appearance: none;
	appearance: none;
	background-color: #151b23 !important;
	border: 1px solid #3b4651 !important;
	border-radius: 9px !important;
	box-shadow: none !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.site-header .menu-toggle:hover,
.site-header .menu-toggle:focus,
.site-header .menu-toggle[aria-expanded="true"] {
	background-color: #202a35 !important;
	border-color: #ff6b35 !important;
	color: #fff !important;
}

.header-select select,
.campir-mobile-preferences select {
	background-color: #151b23 !important;
	border-color: #3b4651 !important;
	color: #fff !important;
	color-scheme: dark;
	-webkit-text-fill-color: #fff;
}

.header-select select option,
.campir-mobile-preferences select option {
	background-color: #151b23;
	color: #fff;
}
/* Newsletter confirmation: stable below-form placement on all screens. */
.site-footer .campir-newsletter-notice{display:block;width:100%;box-sizing:border-box;margin:12px 0 0;padding:12px 14px;border:1px solid rgba(255,255,255,.18);border-radius:9px;background:#151b23;color:#fff;font-size:.9rem;line-height:1.45}
@media(max-width:600px){.site-footer .campir-newsletter-notice{margin-top:10px;padding:11px 12px;font-size:.875rem}}
/* Cart polish: coupon spacing and readable PayPal Pay Later messaging. */
.woocommerce-cart-form .coupon{display:flex;align-items:stretch;gap:12px;flex-wrap:wrap}
.woocommerce-cart-form .coupon #coupon_code{min-width:180px;margin:0}
.woocommerce-cart-form .coupon button[name="apply_coupon"]{margin:0}
.woocommerce-cart .ppcp-messages{box-sizing:border-box;width:100%;margin:14px 0;padding:12px 14px;border:1px solid #d9e1ea;border-radius:10px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,.08);color-scheme:light}
.woocommerce-cart .ppcp-messages iframe{display:block!important;max-width:100%;opacity:1!important;filter:none!important}
@media(max-width:600px){.woocommerce-cart-form .coupon{gap:10px}.woocommerce-cart-form .coupon #coupon_code,.woocommerce-cart-form .coupon button[name="apply_coupon"]{width:100%;min-width:0}.woocommerce-cart .ppcp-messages{margin:12px 0;padding:11px 12px}}
/* Mobile homepage polish: high-contrast video hero and collision-free header. */
@media(max-width:860px){
 .site-header .header-row{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;grid-template-areas:"brand tools" "nav nav" "prefs prefs";align-items:center!important;column-gap:10px!important;row-gap:0!important;padding:7px 0 0}
 .site-header .brand{grid-area:brand;min-width:0!important;max-width:min(190px,48vw)!important}
 .site-header .brand a{display:block;max-width:100%!important}
 .site-header .brand img{display:block;width:min(190px,48vw)!important;height:auto!important;max-height:58px!important;object-fit:contain}
 .site-header .header-tools{grid-area:tools!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:8px!important;min-width:0;white-space:nowrap}
 .site-header .header-tools .tool-link.search,.site-header .header-tools .tool-link.account,.site-header .header-tools .header-select{display:none!important}
 .site-header .header-tools .menu-toggle,.site-header .header-tools>a[href*="/cart/"]{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:42px!important;padding:8px 10px!important}
 .site-header .main-nav{grid-area:nav!important;width:100%!important;margin:0!important}
 .site-header .main-nav.open{display:block!important;margin-top:7px!important}
 .site-header .campir-mobile-preferences{grid-area:prefs!important;margin-top:7px!important}
 .hero:after{background:linear-gradient(180deg,rgba(3,6,10,.83),rgba(3,6,10,.68) 54%,rgba(3,6,10,.82)),linear-gradient(90deg,rgba(3,6,10,.88),rgba(3,6,10,.55))!important}
 .hero .hero-copy{position:relative;z-index:3;padding:24px 20px;border:1px solid rgba(255,255,255,.15);border-radius:16px;background:rgba(5,9,14,.72);box-shadow:0 18px 44px rgba(0,0,0,.38);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}
 .hero .hero-copy>p{max-width:36rem!important;color:#fff!important;font-weight:650!important;line-height:1.55!important;text-shadow:0 2px 8px rgba(0,0,0,.9)}
 .hero .hero-copy h1,.hero .hero-copy h1 span,.hero .hero-copy strong,.hero .hero-checks{color:#fff!important;text-shadow:0 2px 10px rgba(0,0,0,.92)}
}
@media(max-width:480px){
 .site-header .brand{max-width:min(154px,43vw)!important}.site-header .brand img{width:min(154px,43vw)!important;max-height:52px!important}
 .site-header .header-tools{gap:6px!important}.site-header .header-tools .menu-toggle,.site-header .header-tools>a[href*="/cart/"]{min-height:40px!important;padding:7px 9px!important;font-size:13px!important}
 .hero .hero-grid{padding:38px 0 46px!important}.hero .hero-copy{padding:21px 17px}.hero .hero-copy>p{font-size:17px!important;line-height:1.58!important}.hero h1{font-size:clamp(38px,12vw,46px)!important}
}




/* Compact CAMPIR.ca-only review cards; section exists only when approved site reviews exist. */
.campir-site-reviews{background:#0d131c!important}
.campir-site-reviews-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:20px}
.campir-site-reviews-head p{margin:0 0 6px;color:#ff7445;font-size:.72rem;font-weight:800;letter-spacing:.12em}
.campir-site-reviews-head h2{margin:0;color:#fff;font-size:clamp(1.65rem,3vw,2.35rem)}
.campir-site-reviews-head>a{color:#d8e0e8!important;font-size:.9rem;font-weight:700;text-decoration:none!important}
.campir-site-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.campir-site-review-grid article{padding:18px;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:#141c26}
.campir-site-review-stars{margin-bottom:10px;color:#ffb020;letter-spacing:.08em}
.campir-site-review-grid article>p{margin:0 0 12px;color:#eef2f6;font-size:.95rem;line-height:1.55}
.campir-site-review-grid small{color:#98a5b3;font-size:.78rem}
.campir-site-review-grid small a{color:#cdd6df!important}
@media(max-width:760px){.campir-site-reviews-head{align-items:start;flex-direction:column}.campir-site-review-grid{grid-template-columns:1fr}}

/* Samsung/iPhone hero legibility: preserve the daytime road and isolate copy on a solid premium surface. */
@media(max-width:860px){
 .hero video,.hero .hero-video,.hero video.hero-video{filter:brightness(.98) saturate(.96) contrast(1.03)!important}
 .hero:after{background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.10) 55%,rgba(0,0,0,.20))!important}
 .hero .hero-copy{max-width:calc(100% - 24px)!important;padding:18px 16px!important;border:1px solid rgba(255,255,255,.22)!important;border-radius:14px!important;background:linear-gradient(145deg,rgba(5,10,16,.98),rgba(10,18,28,.96))!important;box-shadow:0 12px 34px rgba(0,0,0,.42)!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important}
 .hero .hero-copy .eyebrow{color:#ff8a60!important;-webkit-text-fill-color:#ff8a60!important}
 .hero .hero-copy h1,.hero .hero-copy p,.hero .hero-copy>strong{color:#fff!important;-webkit-text-fill-color:#fff!important;text-shadow:none!important;opacity:1!important}
 .hero .hero-copy>p{font-size:clamp(17px,4.5vw,19px)!important;font-weight:700!important;line-height:1.52!important}
 .hero .hero-copy>strong{display:block!important;margin-top:10px!important;font-size:clamp(16px,4.2vw,18px)!important;font-weight:800!important;line-height:1.4!important}
}


/* CAMPIR header alignment, comparison heading and WhatsApp polish — 2026-08-24 */
#compare h2{max-width:none!important;white-space:nowrap!important;font-size:clamp(2rem,3.6vw,3.15rem)!important;letter-spacing:-.035em!important}
.campir-whatsapp{right:20px!important;bottom:20px!important;min-height:54px!important;padding:0 18px!important;border:1px solid rgba(255,255,255,.32)!important;border-radius:999px!important;background:#20b85a!important;color:#fff!important;font-size:.9rem!important;font-weight:800!important;letter-spacing:.01em!important;gap:9px!important;box-shadow:0 12px 30px rgba(0,0,0,.30)!important;transition:transform .2s ease,background .2s ease,box-shadow .2s ease!important}
.campir-whatsapp span{display:none!important}
.campir-whatsapp:before{content:"☎";display:grid;width:28px;height:28px;place-items:center;border-radius:50%;background:#fff;color:#159447;font-size:18px;line-height:1;transform:rotate(-12deg)}
.campir-whatsapp:hover,.campir-whatsapp:focus{background:#159d4b!important;color:#fff!important;transform:translateY(-2px)!important;box-shadow:0 16px 36px rgba(0,0,0,.36)!important}
@media(max-width:860px){
 .announcement{min-height:38px!important;padding:9px 14px!important;font-size:12px!important;line-height:1.4!important}
 .site-header{margin:0!important;padding:0!important}
 .site-header .header-row{box-sizing:border-box!important;width:100%!important;max-width:none!important;margin:0!important;padding:13px 14px 12px!important;grid-template-columns:minmax(104px,1fr) auto!important;grid-template-areas:"brand tools" "nav nav" "prefs prefs"!important;align-items:center!important;column-gap:10px!important;row-gap:10px!important}
 .site-header .brand{align-items:center!important;align-self:center!important;height:auto!important;min-height:46px!important;margin:0!important;padding:0!important}
 .site-header .brand a{display:flex!important;align-items:center!important;height:46px!important}
 .site-header .brand img{display:block!important;width:clamp(112px,33vw,146px)!important;height:auto!important;max-height:46px!important;margin:0!important;object-fit:contain!important;object-position:left center!important}
 .site-header .header-tools{align-items:center!important;align-self:center!important;justify-content:flex-end!important;width:auto!important;height:46px!important;margin:0!important;gap:7px!important}
 .site-header .menu-toggle,.site-header .header-tools .search,.site-header .header-tools>a[href*="/cart/"]{box-sizing:border-box!important;display:flex!important;align-items:center!important;justify-content:center!important;min-width:44px!important;height:42px!important;margin:0!important;padding:0 9px!important;border-radius:9px!important;line-height:1!important}
 .site-header .menu-toggle{min-width:58px!important}
 .site-header .header-tools>a[href*="/cart/"]{min-width:56px!important}
 .campir-mobile-preferences{width:100%!important;margin:0!important}
 #compare h2{width:100%!important;white-space:nowrap!important;font-size:clamp(1.25rem,5.35vw,1.72rem)!important;letter-spacing:-.045em!important;line-height:1.2!important}
 .campir-whatsapp{right:14px!important;bottom:14px!important;width:54px!important;min-width:54px!important;height:54px!important;min-height:54px!important;padding:0!important;font-size:0!important;gap:0!important}
 .campir-whatsapp:before{width:30px;height:30px;font-size:19px}
}
@media(max-width:360px){
 .site-header .header-row{padding-inline:10px!important;column-gap:6px!important}
 .site-header .brand img{width:108px!important}
 .site-header .header-tools{gap:5px!important}
 .site-header .menu-toggle{min-width:54px!important;padding-inline:7px!important}
 .site-header .header-tools>a[href*="/cart/"]{min-width:52px!important;padding-inline:7px!important}
 #compare h2{font-size:1.18rem!important}
}


/* Definitive CAMPIR mobile hero/header and circular WhatsApp correction */
.campir-whatsapp{
 box-sizing:border-box!important;
 display:flex!important;
 align-items:center!important;
 justify-content:center!important;
 width:58px!important;
 min-width:58px!important;
 max-width:58px!important;
 height:58px!important;
 min-height:58px!important;
 max-height:58px!important;
 padding:0!important;
 border-radius:50%!important;
 font-size:0!important;
 line-height:1!important;
 overflow:hidden!important;
}
.campir-whatsapp:before{flex:0 0 30px!important;width:30px!important;height:30px!important;margin:0!important}
@media(max-width:860px){
 .hero .hero-copy>p{
  display:block!important;
  box-sizing:border-box!important;
  width:100%!important;
  margin:14px 0 0!important;
  padding:12px 14px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  border-radius:10px!important;
  background:#05080d!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  font-size:18px!important;
  font-weight:800!important;
  line-height:1.5!important;
  opacity:1!important;
 }
 .hero .hero-copy>strong{
  display:block!important;
  box-sizing:border-box!important;
  width:100%!important;
  margin:8px 0 0!important;
  padding:10px 14px!important;
  border-radius:9px!important;
  background:#05080d!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  font-size:16px!important;
  font-weight:850!important;
  line-height:1.45!important;
  opacity:1!important;
 }
 .site-header .header-row{
  display:grid!important;
  box-sizing:border-box!important;
  width:100%!important;
  max-width:100%!important;
  min-height:70px!important;
  margin:0!important;
  padding:12px 14px!important;
  grid-template-columns:minmax(112px,1fr) auto!important;
  grid-template-areas:"brand tools" "nav nav" "prefs prefs"!important;
  align-items:center!important;
  column-gap:10px!important;
  row-gap:10px!important;
  overflow:visible!important;
 }
 .site-header .brand{
  grid-area:brand!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  visibility:visible!important;
  opacity:1!important;
  width:auto!important;
  min-width:112px!important;
  height:48px!important;
  min-height:48px!important;
  margin:0!important;
  padding:0!important;
  overflow:visible!important;
 }
 .site-header .brand a{
  display:flex!important;
  align-items:center!important;
  visibility:visible!important;
  opacity:1!important;
  width:136px!important;
  height:48px!important;
  margin:0!important;
  padding:0!important;
 }
 .site-header .brand img{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:136px!important;
  max-width:136px!important;
  height:46px!important;
  max-height:46px!important;
  margin:0!important;
  padding:0!important;
  object-fit:contain!important;
  object-position:left center!important;
 }
 .site-header .header-tools{
  grid-area:tools!important;
  display:grid!important;
  grid-template-columns:58px 64px!important;
  align-items:center!important;
  justify-content:end!important;
  justify-self:end!important;
  width:130px!important;
  min-width:130px!important;
  height:44px!important;
  margin:0!important;
  padding:0!important;
  gap:8px!important;
  overflow:visible!important;
 }
 .site-header .header-tools .search,
 .site-header .header-tools .header-select,
 .site-header .header-tools .account{display:none!important}
 .site-header .menu-toggle,
 .site-header .header-tools>a[href*="/cart/"]{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  box-sizing:border-box!important;
  height:44px!important;
  min-height:44px!important;
  margin:0!important;
  padding:0 8px!important;
  border-radius:9px!important;
  visibility:visible!important;
  opacity:1!important;
  white-space:nowrap!important;
  line-height:1!important;
 }
 .site-header .menu-toggle{width:58px!important;min-width:58px!important}
 .site-header .header-tools>a[href*="/cart/"]{width:64px!important;min-width:64px!important}
}
@media(max-width:350px){
 .site-header .header-row{padding-inline:9px!important;column-gap:6px!important;grid-template-columns:minmax(100px,1fr) auto!important}
 .site-header .brand,.site-header .brand a{min-width:100px!important;width:108px!important}
 .site-header .brand img{width:108px!important;max-width:108px!important}
 .site-header .header-tools{grid-template-columns:54px 58px!important;width:118px!important;min-width:118px!important;gap:6px!important}
 .site-header .menu-toggle{width:54px!important;min-width:54px!important}
 .site-header .header-tools>a[href*="/cart/"]{width:58px!important;min-width:58px!important;font-size:12px!important}
}


/* CAMPIR audit repairs: compact comparison, sticky purchase and actionable support */
.campir-product-compare{clear:both;box-sizing:border-box;width:min(1240px,calc(100% - 40px));margin:38px auto;padding:clamp(22px,4vw,38px);border:1px solid #293442;border-radius:16px;background:linear-gradient(145deg,#0d141d,#131d29);color:#fff}
.campir-compare-eyebrow{margin:0 0 8px;color:#ff7548;font-size:.74rem;font-weight:850;letter-spacing:.13em}
.campir-product-compare h2{margin:0 0 22px;color:#fff;font-size:clamp(1.65rem,3vw,2.4rem);line-height:1.15}
.campir-compare-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.campir-product-compare table{width:100%;min-width:620px;border-collapse:collapse;background:transparent;color:#eaf0f5}
.campir-product-compare th,.campir-product-compare td{padding:13px 14px;border-bottom:1px solid #2b3744;text-align:left;vertical-align:middle}
.campir-product-compare thead th{background:#172230;color:#fff;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
.campir-product-compare tbody th{width:25%;color:#fff;font-weight:750}
.campir-product-compare a{color:#ff8a61!important}
.campir-sticky-atc{position:fixed;left:0;right:0;bottom:0;z-index:9998;display:flex;align-items:center;justify-content:center;gap:clamp(18px,5vw,70px);box-sizing:border-box;min-height:68px;padding:10px 20px;border-top:1px solid #303a46;background:rgba(8,12,18,.97);box-shadow:0 -8px 30px rgba(0,0,0,.35);color:#fff}
.campir-sticky-atc[hidden]{display:none!important}
.campir-sticky-atc>div{display:flex;align-items:center;gap:16px;min-width:0}
.campir-sticky-atc strong{max-width:520px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.campir-sticky-atc .price{margin:0!important;color:#fff!important;font-weight:800}
.campir-sticky-atc button{min-height:44px;padding:0 22px;border:0;border-radius:9px;background:#f05a28;color:#fff;font-weight:850;cursor:pointer}
.single-product .campir-whatsapp{bottom:84px!important}
.campir-support-actions{display:grid;width:min(1160px,calc(100% - 40px));margin:10px auto 50px;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.campir-support-actions[hidden]{display:none!important}
.campir-support-actions a{display:flex;min-height:112px;flex-direction:column;justify-content:center;padding:20px;border:1px solid #2c3744;border-radius:13px;background:#121b26;color:#fff!important;text-decoration:none!important;transition:border-color .2s ease,transform .2s ease}
.campir-support-actions a:hover,.campir-support-actions a:focus{border-color:#ff6b35;transform:translateY(-2px)}
.campir-support-actions strong{font-size:1.05rem}
.campir-support-actions span{margin-top:7px;color:#aeb9c5;line-height:1.5}
@media(max-width:700px){
 .campir-product-compare{width:calc(100% - 24px);margin:26px auto;padding:18px 14px;border-radius:13px}
 .campir-product-compare h2{font-size:1.55rem}
 .campir-sticky-atc{justify-content:space-between;gap:10px;min-height:64px;padding:8px 12px}
 .campir-sticky-atc>div{display:block;max-width:58%}
 .campir-sticky-atc strong{display:block;font-size:.82rem}
 .campir-sticky-atc .price{display:block;font-size:.85rem}
 .campir-sticky-atc button{min-width:116px;padding:0 14px}
 .single-product .campir-whatsapp{bottom:78px!important}
 .campir-support-actions{width:calc(100% - 24px);grid-template-columns:1fr}
}


/* CAMPIR mobile hero refinement — premium visibility without hiding road */
@media (max-width:860px){
 .hero{min-height:auto!important}
 .hero video,.hero .hero-video,.hero video.hero-video{
  filter:brightness(.88) saturate(1.02) contrast(1.05)!important;
  object-position:62% center!important
 }
 .hero:after{
  background:
   linear-gradient(90deg,rgba(3,7,12,.76) 0%,rgba(3,7,12,.58) 58%,rgba(3,7,12,.16) 100%),
   linear-gradient(180deg,rgba(3,7,12,.08),rgba(3,7,12,.22))!important
 }
 .hero .hero-grid{
  display:block!important;
  min-height:auto!important;
  padding:30px 0 42px!important
 }
 .hero .hero-copy{
  box-sizing:border-box!important;
  width:calc(100% - 30px)!important;
  max-width:570px!important;
  margin:0 auto!important;
  padding:22px 18px 24px!important;
  border:1px solid rgba(255,255,255,.20)!important;
  border-radius:15px!important;
  background:linear-gradient(90deg,rgba(5,10,16,.76),rgba(5,10,16,.48))!important;
  box-shadow:0 14px 34px rgba(0,0,0,.28)!important;
  -webkit-backdrop-filter:blur(2px)!important;
  backdrop-filter:blur(2px)!important;
  text-align:left!important
 }
 .hero .hero-copy .eyebrow{
  display:inline-block!important;
  margin:0 0 18px!important;
  padding:8px 11px!important;
  border:1px solid rgba(255,104,67,.65)!important;
  border-radius:8px!important;
  background:rgba(5,10,16,.44)!important;
  font-size:12px!important;
  line-height:1.25!important;
  letter-spacing:.12em!important
 }
 .hero .hero-copy h1{
  max-width:520px!important;
  margin:0!important;
  font-size:clamp(36px,10.2vw,46px)!important;
  line-height:1.06!important;
  letter-spacing:-.045em!important;
  text-align:left!important
 }
 .hero .hero-copy h1 span{display:block!important}
 .hero .hero-copy h1 span+span{margin-top:7px!important}
 .hero .hero-copy>p{
  width:auto!important;
  max-width:510px!important;
  margin:20px 0 0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  font-size:clamp(16px,4.3vw,18px)!important;
  font-weight:650!important;
  line-height:1.52!important;
  text-align:left!important;
  text-shadow:0 2px 9px rgba(0,0,0,.9)!important
 }
 .hero .hero-copy>strong{
  width:auto!important;
  margin:12px 0 0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  font-size:clamp(15px,4vw,17px)!important;
  font-weight:800!important;
  line-height:1.4!important;
  text-align:left!important;
  text-shadow:0 2px 9px rgba(0,0,0,.9)!important
 }
 .hero .buttons{
  display:grid!important;
  grid-template-columns:1fr!important;
  width:min(100%,310px)!important;
  margin-top:22px!important;
  gap:10px!important
 }
 .hero .buttons .button{
  box-sizing:border-box!important;
  width:100%!important;
  min-height:50px!important;
  margin:0!important;
  padding:13px 18px!important;
  text-align:center!important
 }
 .hero .hero-checks{
  margin-top:16px!important;
  font-size:12px!important;
  line-height:1.55!important
 }
 .hero .hero-product{display:none!important}
 .site-header .header-row{
  min-height:64px!important;
  padding:9px 14px!important;
  row-gap:7px!important
 }
 .site-header .brand,.site-header .brand a{
  height:44px!important;
  min-height:44px!important
 }
 .site-header .brand img{
  width:130px!important;
  max-width:130px!important;
  height:42px!important;
  max-height:42px!important
 }
 .campir-mobile-preferences{margin-top:0!important}
}
@media (max-width:390px){
 .hero .hero-grid{padding:24px 0 36px!important}
 .hero .hero-copy{width:calc(100% - 24px)!important;padding:19px 16px 21px!important}
 .hero .hero-copy h1{font-size:clamp(33px,9.7vw,39px)!important}
 .hero .hero-copy .eyebrow{margin-bottom:15px!important;font-size:11px!important}
 .site-header .brand img{width:116px!important;max-width:116px!important}
}


/* Recognizable WhatsApp brand treatment on desktop and mobile */
.campir-whatsapp{
 background:#25D366 url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") center/42px 42px no-repeat!important;
 border:2px solid rgba(255,255,255,.88)!important;
 box-shadow:0 8px 24px rgba(0,0,0,.34)!important
}
.campir-whatsapp:before,.campir-whatsapp:after{display:none!important;content:none!important}
.campir-whatsapp:hover,.campir-whatsapp:focus{
 background-color:#20ba5a!important;
 transform:translateY(-2px)!important
}


/* CAMPIR desktop hero balance and prominent slogan */
@media (min-width:861px){
 .hero .hero-copy h1{
  max-width:620px!important;
  font-size:clamp(42px,3.55vw,48px)!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  text-align:left!important
 }
 .hero .hero-copy h1 span{display:block!important}
 .hero .hero-copy h1 span+span{margin-top:6px!important}
 .hero .hero-copy>p{
  max-width:590px!important;
  font-size:clamp(18px,1.45vw,21px)!important;
  line-height:1.52!important;
  text-align:left!important
 }
 .hero .hero-copy>strong{
  display:inline-flex!important;
  align-items:center!important;
  width:auto!important;
  margin-top:15px!important;
  padding:9px 13px!important;
  border-left:3px solid #ff6942!important;
  border-radius:0 8px 8px 0!important;
  background:rgba(5,10,16,.64)!important;
  color:#fff4ef!important;
  -webkit-text-fill-color:#fff4ef!important;
  font-size:17px!important;
  font-weight:850!important;
  line-height:1.35!important;
  letter-spacing:.005em!important;
  text-shadow:0 2px 8px rgba(0,0,0,.82)!important
 }
}
@media (max-width:860px){
 .hero .hero-copy>strong{
  width:auto!important;
  padding:8px 11px!important;
  border-left:3px solid #ff6942!important;
  border-radius:0 7px 7px 0!important;
  background:rgba(5,10,16,.48)!important;
  color:#fff4ef!important;
  -webkit-text-fill-color:#fff4ef!important
 }
}

/* Compact verified CAMPIR.ca customer reviews */
.campir-home-reviews{box-sizing:border-box;width:min(1160px,calc(100% - 40px));margin:42px auto;padding:26px;border:1px solid #293442;border-radius:15px;background:#0d151f;color:#fff}
.campir-home-reviews .campir-review-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:18px}
.campir-home-reviews h2{margin:0;color:#fff;font-size:clamp(1.55rem,2.6vw,2.15rem)}
.campir-home-reviews .campir-review-note{margin:0;color:#aeb9c5;font-size:.88rem}
.campir-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.campir-review-card{padding:17px;border:1px solid #2b3744;border-radius:11px;background:#121c27}
.campir-review-stars{color:#ffb23f;letter-spacing:.08em}
.campir-review-card blockquote{margin:11px 0;color:#edf2f6;line-height:1.55}
.campir-review-card footer{color:#aeb9c5;font-size:.86rem}
@media(max-width:760px){
 .campir-home-reviews{width:calc(100% - 24px);margin:28px auto;padding:19px 15px}
 .campir-home-reviews .campir-review-head{display:block}
 .campir-home-reviews .campir-review-note{margin-top:7px}
 .campir-review-grid{grid-template-columns:1fr}
}


/* CAMPIR cart coupon alignment and mobile logo balance */
.woocommerce-cart table.cart td.actions .coupon{
 display:grid!important;
 grid-template-columns:minmax(150px,1fr) auto!important;
 align-items:stretch!important;
 gap:10px!important;
 width:100%!important
}
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon input[name="coupon_code"]{
 box-sizing:border-box!important;
 width:100%!important;
 min-width:0!important;
 height:48px!important;
 margin:0!important;
 padding:0 13px!important
}
.woocommerce-cart table.cart td.actions .coupon button{
 box-sizing:border-box!important;
 min-width:142px!important;
 height:48px!important;
 margin:0!important;
 padding:0 17px!important;
 line-height:1.15!important;
 white-space:nowrap!important
}
@media(max-width:860px){
 .site-header .brand,.site-header .brand a{width:140px!important;min-width:140px!important}
 .site-header .brand img{width:136px!important;max-width:136px!important}
}
@media(max-width:390px){
 .site-header .header-row{padding-inline:10px!important}
 .site-header .brand,.site-header .brand a{width:130px!important;min-width:130px!important}
 .site-header .brand img{width:126px!important;max-width:126px!important}
 .woocommerce-cart table.cart td.actions .coupon{
  grid-template-columns:minmax(0,1fr) 132px!important;
  gap:9px!important
 }
 .woocommerce-cart table.cart td.actions .coupon button{
  min-width:132px!important;
  padding-inline:10px!important;
  font-size:14px!important
 }
 .woocommerce-cart table.cart td.actions>button[name="update_cart"]{
  width:100%!important;
  margin-top:10px!important
 }
}
.campir-open-box-shop-note{box-sizing:border-box;width:100%;margin:0 0 22px;padding:16px 18px;border:1px solid #364453;border-left:4px solid #ff6842;border-radius:10px;background:#111a24;color:#eaf0f5}
.campir-open-box-shop-note strong{display:block;margin-bottom:4px;color:#fff}
.campir-open-box-shop-note a{color:#ff8b65!important;font-weight:800}


/* v1.0.67 — professional stacked coupon controls */
.woocommerce-cart table.cart td.actions .coupon{
 grid-template-columns:minmax(0,1fr)!important;
 max-width:380px!important;
 gap:10px!important
}
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon input[name="coupon_code"],
.woocommerce-cart table.cart td.actions .coupon button{
 width:100%!important;
 min-width:0!important;
 height:48px!important;
 margin:0!important
}
@media(max-width:700px){
 .woocommerce-cart table.cart td.actions .coupon{max-width:100%!important}
}

/* CAMPIR quality commitment on About */
.campir-about-quality{
 box-sizing:border-box;
 margin:34px 0;
 padding:clamp(22px,4vw,38px);
 border:1px solid #2d3a47;
 border-left:4px solid #ff6842;
 border-radius:14px;
 background:linear-gradient(135deg,#0d151f,#111d29);
 color:#eaf0f5
}
.campir-about-quality h2{margin:0 0 12px;color:#fff;font-size:clamp(1.65rem,3vw,2.35rem);line-height:1.15}
.campir-about-quality p{margin:0;color:#c9d2db;font-size:clamp(1rem,1.35vw,1.08rem);line-height:1.7}


/* v1.0.68 — final mobile hero typography */
@media(max-width:860px){
 .hero .hero-copy h1{
  max-width:100%!important;
  margin-bottom:18px!important;
  font-size:clamp(25px,7.15vw,31px)!important;
  line-height:1.12!important;
  letter-spacing:-.04em!important;
  text-align:left!important
 }
 .hero .hero-copy h1 span{
  display:block!important;
  white-space:nowrap!important
 }
 .hero .hero-copy h1 span+span{margin-top:7px!important}
}
@media(max-width:340px){
 .hero .hero-copy h1{font-size:24px!important;letter-spacing:-.045em!important}
}


/* v1.0.69 — reliable product filters, Open Box condition and mobile spacing */
.product-filters{display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:center!important;gap:10px!important}
.product-filters button{
 display:inline-flex!important;align-items:center!important;justify-content:center!important;
 min-height:44px!important;padding:10px 17px!important;border:1px solid #40505f!important;
 border-radius:9px!important;background:#111a24!important;color:#eef3f7!important;
 font:inherit!important;font-weight:750!important;line-height:1!important;text-decoration:none!important;
 cursor:pointer!important
}
.product-filters button.active,.product-filters button:hover,.product-filters button:focus{
 border-color:#ff6842!important;background:#ff6842!important;color:#fff!important
}
.campir-product-card.campir-filter-hidden,.campir-product-card[hidden]{display:none!important}
.hero .hero-checks{display:flex!important;flex-wrap:wrap!important;align-items:center!important;gap:6px 15px!important}
.hero .hero-checks span{display:inline-flex!important;white-space:nowrap!important}
.campir-open-box-condition-badge{
 display:inline-flex;margin:0 0 10px;padding:6px 10px;border:1px solid #ff6842;border-radius:999px;
 background:#25140f;color:#ffac92;font-size:.76rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase
}
.campir-open-box-condition{
 display:grid;gap:4px;margin:0 0 16px;padding:13px 15px;border:1px solid #3b4652;border-left:4px solid #ff6842;
 border-radius:9px;background:#101923;color:#dbe4ec
}
.campir-open-box-condition strong{color:#fff;font-size:1rem}
.campir-open-box-condition span{color:#c1ccd5;font-size:.92rem;line-height:1.45}
.campir-open-box-intro{margin:0 0 24px;padding:18px 20px;border:1px solid #33404d;border-left:4px solid #ff6842;border-radius:10px;background:#101923;color:#dce5ed}
.campir-open-box-intro p{margin:0 0 8px}.campir-open-box-intro p:last-child{margin-bottom:0}
@media(max-width:860px){
 .hero .hero-copy{
  width:calc(100% - 28px)!important;
  padding:20px 20px 23px!important;
  overflow:hidden!important
 }
 .hero .hero-copy h1{
  max-width:100%!important;
  font-size:clamp(22.5px,6.15vw,28px)!important;
  line-height:1.15!important;
  letter-spacing:-.028em!important
 }
 .hero .hero-copy h1 span{
  display:block!important;
  max-width:100%!important;
  white-space:normal!important;
  overflow-wrap:normal!important;
  text-wrap:balance!important
 }
 .hero .hero-copy h1 span+span{margin-top:8px!important;padding-right:6px!important}
 .hero .hero-copy>strong{font-size:clamp(16px,4.2vw,18px)!important;line-height:1.4!important}
 .hero .hero-checks{justify-content:flex-start!important;margin-top:16px!important;gap:7px 14px!important;line-height:1.35!important}
}
@media(max-width:355px){
 .hero .hero-copy{width:calc(100% - 20px)!important;padding-right:17px!important;padding-left:17px!important}
 .hero .hero-copy h1{font-size:22px!important;letter-spacing:-.025em!important}
 .product-filters{gap:7px!important}
 .product-filters button{padding:9px 11px!important;font-size:13px!important}
}
/* v1.0.70 — unified mobile headings, hero rhythm, trust line and touch targets */
.product-filters{
 position:relative!important;
 z-index:3!important
}
.product-filters button{
 position:relative!important;
 z-index:4!important;
 pointer-events:auto!important;
 touch-action:manipulation!important;
 -webkit-tap-highlight-color:transparent;
 -webkit-user-select:none;
 user-select:none
}
@media(max-width:860px){
 body.page-id-55 .page-hero,
 body.page-id-69 .page-hero{
  padding:48px 0 40px!important
 }
 body.page-id-55 .page-hero .campir-wrap,
 body.page-id-69 .page-hero .campir-wrap{
  box-sizing:border-box!important;
  width:calc(100% - 28px)!important;
  max-width:100%!important;
  margin-inline:auto!important;
  padding-inline:0!important
 }
 body.page-id-55 .page-hero h1,
 body.page-id-69 .page-hero h1{
  max-width:100%!important;
  margin:8px 0 16px!important;
  font-size:clamp(30px,8.1vw,39px)!important;
  line-height:1.13!important;
  letter-spacing:-.028em!important;
  text-align:left!important;
  text-wrap:balance!important;
  overflow-wrap:normal!important;
  word-break:normal!important
 }
 body.page-id-55 .page-hero p,
 body.page-id-69 .page-hero p{
  max-width:100%!important;
  margin:0!important;
  font-size:16px!important;
  line-height:1.65!important;
  text-align:left!important;
  text-wrap:pretty!important
 }
 .hero .hero-copy{
  box-sizing:border-box!important;
  width:calc(100% - 24px)!important;
  padding:22px 16px 24px!important
 }
 .hero .hero-copy h1{
  max-width:100%!important;
  margin:0 0 16px!important;
  font-size:clamp(19.5px,5.4vw,24px)!important;
  line-height:1.18!important;
  letter-spacing:-.03em!important;
  text-align:left!important
 }
 .hero .hero-copy h1 span{
  display:block!important;
  max-width:100%!important;
  white-space:nowrap!important;
  text-wrap:nowrap!important
 }
 .hero .hero-copy h1 span+span{
  margin-top:6px!important;
  padding-right:0!important
 }
 .hero .hero-copy>p{
  max-width:100%!important;
  margin:0 0 14px!important;
  font-size:15.5px!important;
  line-height:1.58!important;
  text-align:left!important;
  text-wrap:pretty!important
 }
 .hero .hero-copy>strong{
  display:inline-flex!important;
  max-width:100%!important;
  margin-top:0!important;
  padding:8px 10px!important;
  font-size:clamp(15px,4vw,17px)!important;
  line-height:1.4!important;
  white-space:normal!important;
  text-wrap:balance!important
 }
 .hero .hero-checks{
  display:grid!important;
  grid-template-columns:repeat(2,max-content)!important;
  justify-content:start!important;
  align-items:center!important;
  margin-top:16px!important;
  gap:8px 14px!important;
  font-size:13px!important;
  line-height:1.35!important
 }
 .hero .hero-checks span{
  display:inline-flex!important;
  white-space:nowrap!important
 }
 .hero .hero-checks span:last-child{
  grid-column:1 / -1!important
 }
 .product-filters{
  width:100%!important;
  justify-content:center!important;
  gap:8px!important
 }
 .product-filters button{
  min-height:46px!important;
  padding:10px 14px!important
 }
}
@media(max-width:330px){
 .hero .hero-copy h1{
  font-size:18.5px!important;
  letter-spacing:-.035em!important
 }
 .hero .hero-checks{
  grid-template-columns:1fr!important
 }
 .hero .hero-checks span:last-child{
  grid-column:auto!important
 }
 body.page-id-55 .page-hero h1,
 body.page-id-69 .page-hero h1{
  font-size:28px!important
 }
}

/* CAMPIR complete primary navigation — 1.0.72 */
@media (min-width:1200px){
 .site-header .campir-wrap{width:min(1340px,98vw)!important}
 .site-header .header-row{grid-template-columns:180px minmax(0,1fr) auto!important;gap:10px!important}
 .site-header .brand,.site-header .brand a{width:180px!important;min-width:0!important}
 .site-header .brand img{width:176px!important;height:64px!important;max-height:64px!important;object-fit:contain!important}
 .site-header .main-nav ul{display:flex!important;justify-content:center!important;gap:clamp(5px,.55vw,8px)!important;padding:0!important}
 .site-header .main-nav a{display:inline-flex!important;font-size:clamp(12.5px,1vw,14px)!important;letter-spacing:-.01em!important;white-space:nowrap!important}
}
@media (min-width:861px) and (max-width:1199px){
 .site-header .header-row{grid-template-columns:minmax(190px,1fr) auto!important;grid-template-areas:"brand tools" "nav nav"!important}
 .site-header .menu-toggle{display:grid!important}
 .site-header .main-nav{display:none!important;grid-column:1/-1!important;grid-area:nav!important}
 .site-header .main-nav.open{display:block!important}
 .site-header .main-nav ul{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:6px 12px!important;padding:12px 0 4px!important}
 .site-header .main-nav a{display:flex!important;min-height:44px!important;align-items:center!important;padding:8px 10px!important;font-size:15px!important;white-space:normal!important}
}

/* v1.0.73.9 — balanced logo and navigation sizing */
@media (min-width:1200px){
 .site-header .header-row{grid-template-columns:194px minmax(0,1fr) auto!important}
 .site-header .brand,.site-header .brand a{width:194px!important}
 .site-header .brand img{width:190px!important;height:69px!important;max-height:69px!important}
 .site-header .main-nav a{font-size:clamp(14px,1.08vw,15px)!important;letter-spacing:-.012em!important}
}
@media (min-width:861px) and (max-width:1199px){
 .site-header .brand,.site-header .brand a{width:190px!important;min-width:190px!important}
 .site-header .brand img{width:186px!important;max-width:186px!important;height:auto!important;max-height:66px!important}
 .site-header .main-nav a{font-size:16px!important;line-height:1.35!important}
}
@media (max-width:860px){
 .site-header .brand,.site-header .brand a{width:148px!important;min-width:148px!important}
 .site-header .brand img{width:144px!important;max-width:144px!important;height:auto!important;max-height:44px!important}
 .site-header .main-nav a{font-size:16px!important;line-height:1.35!important}
}
@media (max-width:390px){
 .site-header .brand,.site-header .brand a{width:136px!important;min-width:136px!important}
 .site-header .brand img{width:132px!important;max-width:132px!important;height:auto!important;max-height:44px!important}
}
