:root {
	--pc-surface: #f6f9ff;
	--pc-surface-dim: #d4dbe3;
	--pc-surface-bright: #f6f9ff;
	--pc-surface-lowest: #ffffff;
	--pc-surface-low: #eef4fd;
	--pc-surface-container: #e8eef7;
	--pc-surface-high: #e2e9f1;
	--pc-surface-highest: #dce3ec;
	--pc-on-surface: #151c22;
	--pc-on-surface-variant: #424752;
	--pc-primary: #003f87;
	--pc-primary-container: #0056b3;
	--pc-on-primary: #ffffff;
	--pc-primary-fixed: #d7e2ff;
	--pc-outline: #727784;
	--pc-outline-variant: #c2c6d4;
	--pc-error: #ba1a1a;
	--pc-error-container: #ffdad6;
	--pc-success: #2d8a39;
	--pc-radius-sm: 2px;
	--pc-radius: 4px;
	--pc-radius-lg: 8px;
	--pc-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--pc-gutter: 24px;
	--pc-section-gap: 80px;
	--pc-header-height: 80px;
	--pc-container: 1200px;
}

* {
	box-sizing: border-box;
}

body.pc-site,
body {
	margin: 0;
	background: var(--pc-surface);
	color: var(--pc-on-surface);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--pc-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
select,
textarea,
button {
	font: inherit;
}

.material-symbols-outlined {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	line-height: 1;
	vertical-align: middle;
}

.pc-container {
	width: min(100% - 32px, var(--pc-container));
	margin-inline: auto;
}

.pc-main {
	min-height: 60vh;
}

.pc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--pc-surface);
	border-bottom: 1px solid var(--pc-outline-variant);
}

.pc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--pc-header-height);
	gap: var(--pc-gutter);
}

.pc-brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.pc-brand__text {
	color: var(--pc-primary);
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
}

.pc-nav {
	flex: 1 1 auto;
}

.pc-nav__menu,
.pc-footer__menu,
.pc-drawer__menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-nav__menu a,
.pc-footer__menu a,
.pc-drawer__menu a {
	color: var(--pc-on-surface-variant);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.pc-nav__menu .current-menu-item > a,
.pc-nav__menu a:hover,
.pc-footer__menu a:hover,
.pc-drawer__menu a:hover {
	color: var(--pc-primary);
}

.pc-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pc-search {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 250px;
	height: 44px;
	padding: 0 12px;
	background: var(--pc-surface-low);
	border: 1px solid var(--pc-outline-variant);
	border-radius: var(--pc-radius);
}

.pc-search input {
	width: 100%;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: 0;
	color: var(--pc-on-surface);
}

.pc-icon-link,
.pc-menu-toggle,
.pc-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--pc-on-surface-variant);
	background: transparent;
	border: 0;
	border-radius: var(--pc-radius);
	text-decoration: none;
	cursor: pointer;
}

.pc-icon-link:hover,
.pc-menu-toggle:hover,
.pc-drawer__close:hover {
	color: var(--pc-primary);
	background: var(--pc-surface-container);
}

.pc-menu-toggle {
	display: none;
}

.pc-button,
.button,
.wp-element-button,
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 10px 18px;
	border: 1px solid var(--pc-primary);
	border-radius: var(--pc-radius);
	background: transparent;
	color: var(--pc-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pc-button--primary,
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--pc-primary);
	color: var(--pc-on-primary);
}

.pc-button:hover,
.button:hover,
.wp-element-button:hover,
.elementor-button:hover {
	background: var(--pc-primary-container);
	border-color: var(--pc-primary-container);
	color: var(--pc-on-primary);
}

.pc-card,
.elementor-widget-container.pc-card {
	background: var(--pc-surface-lowest);
	border: 1px solid #f1f3f5;
	border-radius: var(--pc-radius);
}

.pc-card:hover {
	box-shadow: var(--pc-shadow);
}

.pc-content-shell {
	padding-block: 64px;
}

.pc-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pc-gutter);
}

.pc-content-card {
	overflow: hidden;
}

.pc-content-card__body {
	padding: 24px;
}

.pc-content-card__title {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.3;
}

.pc-content-card__title a {
	color: var(--pc-on-surface);
	text-decoration: none;
}

.pc-page > .elementor {
	margin-top: 0;
}

.pc-footer {
	background: var(--pc-surface-low);
	border-top: 1px solid var(--pc-outline-variant);
}

.pc-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: var(--pc-gutter);
	padding-block: 64px;
}

.pc-footer__title {
	margin: 0 0 16px;
	color: var(--pc-on-surface);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.pc-footer__menu {
	display: grid;
	gap: 10px;
}

.pc-footer p {
	margin: 0;
	color: var(--pc-on-surface-variant);
}

.pc-newsletter {
	display: flex;
	align-items: stretch;
}

.pc-newsletter input {
	min-width: 0;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--pc-outline-variant);
	border-right: 0;
	border-radius: var(--pc-radius) 0 0 var(--pc-radius);
	background: var(--pc-surface-lowest);
}

.pc-newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	border: 1px solid var(--pc-primary);
	border-radius: 0 var(--pc-radius) var(--pc-radius) 0;
	background: var(--pc-primary);
	color: var(--pc-on-primary);
	cursor: pointer;
}

.pc-footer__bottom {
	padding-block: 20px;
	border-top: 1px solid var(--pc-outline-variant);
	font-size: 14px;
}

.pc-empty-state {
	padding-block: 96px;
	text-align: center;
}

.pc-empty-state h1 {
	margin-top: 0;
	color: var(--pc-primary);
	font-size: 32px;
}

.pc-archive-header {
	margin-bottom: 40px;
}

.pc-archive-header h1 {
	margin: 0 0 8px;
	color: var(--pc-primary);
	font-size: 40px;
	line-height: 1.2;
}

.pc-skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	display: inline-flex;
	padding: 10px 14px;
	background: var(--pc-primary);
	color: var(--pc-on-primary);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pc-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(21, 28, 34, 0.28);
}

.pc-drawer__panel {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: min(340px, 86vw);
	height: 100%;
	margin-left: auto;
	padding: 24px;
	background: var(--pc-surface-lowest);
	border-left: 1px solid var(--pc-outline-variant);
	box-shadow: var(--pc-shadow);
}

.pc-drawer__close {
	align-self: flex-end;
}

.pc-drawer__menu {
	display: grid;
	gap: 16px;
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
	letter-spacing: 0;
}

.woocommerce ul.products li.product,
.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-tabs {
	background: var(--pc-surface-lowest);
	border: 1px solid #f1f3f5;
	border-radius: var(--pc-radius);
}

.woocommerce ul.products li.product {
	padding: 24px;
}

.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-tabs {
	padding: 32px;
}

@media (max-width: 1024px) {
	.pc-search,
	.pc-header__account {
		display: none;
	}
}

@media (max-width: 767px) {
	:root {
		--pc-section-gap: 56px;
		--pc-header-height: 64px;
	}

	.pc-container {
		width: min(100% - 32px, var(--pc-container));
	}

	.pc-nav {
		display: none;
	}

	.pc-menu-toggle {
		display: inline-flex;
	}

	.pc-post-grid,
	.pc-footer__grid {
		grid-template-columns: 1fr;
	}

	.pc-footer__grid {
		padding-block: 48px;
	}

	.pc-archive-header h1 {
		font-size: 32px;
	}
}

/* Native Elementor conversion layer. */
.pc-elementor-canvas .elementor-section-wrap,
.pc-elementor-canvas .elementor,
.pc-native-section,
.pc-native-header,
.pc-native-footer {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--pc-on-surface);
}

body.pc-elementor-canvas {
	overflow-x: hidden;
}

.pc-native-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--pc-surface);
	border-bottom: 1px solid var(--pc-outline-variant);
}

.pc-native-header > .elementor-container {
	min-height: 80px;
	align-items: center;
}

@media (min-width: 1025px) {
	.pc-native-header > .elementor-container {
		display: grid;
		grid-template-columns: 190px minmax(320px, 1fr) minmax(260px, 340px) 110px;
		gap: 24px;
	}

	.pc-native-header > .elementor-container > .elementor-column {
		width: auto !important;
		min-width: 0;
	}

	.pc-native-nav .elementor-widget,
	.pc-native-actions .elementor-widget {
		flex: 0 0 auto;
		width: auto !important;
		margin-bottom: 0;
	}

	.pc-native-nav .elementor-widget-wrap,
	.pc-native-actions .elementor-widget-wrap {
		flex-wrap: nowrap;
	}

	.pc-native-search {
		width: 100%;
	}
}

.pc-native-brand .elementor-heading-title,
.pc-native-brand a,
.pc-native-brand {
	color: var(--pc-primary) !important;
	font-weight: 800;
	text-decoration: none;
}

.pc-native-nav .elementor-widget-wrap,
.pc-native-actions .elementor-widget-wrap,
.pc-native-pagination .elementor-widget-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.pc-native-nav .elementor-widget-wrap {
	justify-content: center;
}

.pc-native-actions .elementor-widget-wrap {
	justify-content: flex-end;
}

.pc-native-nav-link .elementor-button {
	min-height: 32px;
	padding: 4px 0;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	color: var(--pc-on-surface-variant) !important;
	font-weight: 500;
}

.pc-native-nav-link.is-active .elementor-button,
.pc-native-nav-link .elementor-button:hover {
	color: var(--pc-primary) !important;
	box-shadow: inset 0 -2px 0 var(--pc-primary);
}

.pc-native-search .elementor-widget-container,
.pc-search-large,
.pc-input-fake,
.pc-upload-fake,
.pc-textarea-fake {
	background: var(--pc-surface-low);
	border: 1px solid var(--pc-outline-variant);
	border-radius: var(--pc-radius);
	color: var(--pc-on-surface-variant);
}

.pc-native-search .elementor-widget-container {
	padding: 12px 18px;
}

.pc-search-large {
	max-width: 720px;
	margin: 18px auto;
	padding: 20px 24px;
	text-align: left;
}

.pc-native-section {
	padding: var(--pc-section-gap) 0;
	background: var(--pc-surface);
}

.pc-native-section > .elementor-container,
.pc-native-hero > .elementor-container,
.pc-native-header > .elementor-container,
.pc-native-footer > .elementor-container,
.pc-dashboard-shell > .elementor-container {
	width: min(100% - 32px, 1200px);
	margin-inline: auto;
}

.pc-native-hero {
	position: relative;
	min-height: 760px;
	padding: 160px 0 100px;
	background-color: var(--pc-surface-lowest);
	overflow: hidden;
}

.pc-native-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.78) 42%, rgba(255,255,255,0.18) 100%);
	pointer-events: none;
}

.pc-native-hero > .elementor-container {
	position: relative;
	z-index: 1;
}

.pc-native-hero-title .elementor-heading-title,
.pc-native-section h1,
.pc-native-section h2,
.pc-native-section h3,
.pc-native-hero h1 {
	letter-spacing: 0;
}

.pc-native-hero h1,
.pc-native-hero-title .elementor-heading-title {
	color: var(--pc-primary);
	font-size: 48px;
	line-height: 1.16;
	font-weight: 800;
}

.pc-native-lead {
	max-width: 620px;
	color: var(--pc-on-surface-variant);
	font-size: 18px;
	line-height: 1.65;
}

.pc-native-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 16px;
	padding: 5px 10px;
	border-radius: var(--pc-radius);
	background: var(--pc-surface-high);
	color: var(--pc-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.pc-native-primary .elementor-button,
.pc-native-secondary .elementor-button,
.pc-native-text-link .elementor-button {
	min-height: 44px;
	border-radius: var(--pc-radius);
	font-weight: 700;
}

.pc-native-primary .elementor-button {
	background: var(--pc-primary) !important;
	border: 1px solid var(--pc-primary);
	color: var(--pc-on-primary) !important;
}

.pc-native-secondary .elementor-button {
	background: transparent !important;
	border: 1px solid var(--pc-primary);
	color: var(--pc-primary) !important;
}

.pc-native-text-link .elementor-button {
	background: transparent !important;
	border: 0;
	color: var(--pc-primary) !important;
}

.pc-centered,
.pc-centered .elementor-heading-title,
.pc-centered .elementor-widget-container {
	text-align: center;
}

.pc-native-card,
.pc-native-product-card,
.pc-contact-form,
.pc-dashboard-sidebar {
	background: var(--pc-surface-lowest);
	border: 1px solid #f1f3f5;
	border-radius: var(--pc-radius-lg);
	box-shadow: none;
}

.pc-native-card > .elementor-widget-wrap,
.pc-native-product-card > .elementor-widget-wrap,
.pc-contact-form > .elementor-widget-wrap,
.pc-dashboard-sidebar > .elementor-widget-wrap {
	padding: 28px;
}

.pc-native-card:hover,
.pc-native-product-card:hover {
	box-shadow: var(--pc-shadow);
}

.pc-card-blue {
	background: var(--pc-primary-container);
	color: var(--pc-on-primary);
}

.pc-card-blue .elementor-heading-title,
.pc-card-blue .elementor-widget-container,
.pc-card-blue p,
.pc-card-blue a {
	color: var(--pc-on-primary) !important;
}

.pc-native-card img,
.pc-native-product-card img {
	border-radius: var(--pc-radius);
}

.pc-card-media img,
.pc-product-image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f6f7f9;
}

.pc-product-image img {
	padding: 16px;
}

.pc-card-title .elementor-heading-title,
.pc-price .elementor-heading-title {
	color: var(--pc-on-surface);
}

.pc-price .elementor-heading-title {
	font-weight: 800;
}

.pc-kicker,
.pc-rating {
	color: var(--pc-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.pc-native-trust,
.pc-native-cta-light {
	background: var(--pc-surface-low);
}

.pc-native-cta {
	margin: 40px auto;
	padding: 72px 0;
	background: var(--pc-primary);
	color: var(--pc-on-primary);
}

.pc-native-cta .elementor-heading-title,
.pc-native-cta .elementor-widget-container {
	color: var(--pc-on-primary);
}

.pc-native-sidebar,
.pc-products-shell {
	background: var(--pc-surface-low);
}

.pc-native-sidebar > .elementor-widget-wrap {
	padding: 40px 28px;
	border-right: 1px solid var(--pc-outline-variant);
}

.pc-products-heading > .elementor-widget-wrap {
	padding: 40px 28px;
}

.pc-native-product-grid {
	padding-top: 0;
	background: var(--pc-surface);
}

.pc-native-product-grid > .elementor-container {
	gap: 24px;
}

.pc-product-badge {
	position: relative;
	z-index: 1;
}

.pc-filter-list .elementor-icon-list-item {
	margin-bottom: 14px;
}

.pc-hero-side-image img,
.pc-product-detail-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--pc-radius-lg);
}

.pc-thumb img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	max-width: 96px;
	margin-right: 10px;
	display: inline-block;
}

.pc-input-fake,
.pc-upload-fake,
.pc-textarea-fake {
	margin: 8px 0 18px;
	padding: 14px 16px;
}

.pc-upload-fake {
	padding: 34px 16px;
	text-align: center;
	border-style: dashed;
}

.pc-textarea-fake {
	min-height: 110px;
}

.pc-alert {
	padding: 18px;
	border-left: 4px solid var(--pc-primary);
	background: var(--pc-surface-high);
	border-radius: var(--pc-radius);
}

.pc-error {
	color: var(--pc-error);
}

.pc-dashboard-shell {
	background: var(--pc-surface);
}

.pc-dashboard-shell > .elementor-container {
	align-items: stretch;
}

.pc-dashboard-sidebar {
	min-height: 100vh;
	border-radius: 0;
	border-top: 0;
	border-bottom: 0;
}

.pc-dashboard-inner {
	padding: 24px 0;
}

.pc-dashboard-inner > .elementor-container {
	gap: 24px;
}

.pc-native-mini-grid .elementor-widget-wrap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pc-native-footer {
	padding: 64px 0 32px;
	background: var(--pc-surface-low);
	border-top: 1px solid var(--pc-outline-variant);
}

.pc-native-footer a {
	color: var(--pc-on-surface-variant);
	text-decoration: none;
}

@media (max-width: 1024px) {
	.pc-native-header .elementor-column,
	.pc-native-section .elementor-column,
	.pc-native-product-grid .elementor-column {
		width: 100% !important;
	}

	.pc-native-header .elementor-container,
	.pc-native-nav .elementor-widget-wrap {
		flex-wrap: wrap;
	}

	.pc-native-hero {
		min-height: 620px;
		padding: 120px 0 72px;
	}
}

@media (max-width: 767px) {
	.pc-native-header > .elementor-container {
		min-height: 64px;
	}

	.pc-native-search-col,
	.pc-native-actions {
		display: none;
	}

	.pc-native-section {
		padding: 48px 0;
	}

	.pc-native-hero {
		min-height: 560px;
		padding: 96px 0 56px;
	}

	.pc-native-hero h1,
	.pc-native-hero-title .elementor-heading-title {
		font-size: 32px;
		line-height: 1.18;
	}

	.pc-native-card > .elementor-widget-wrap,
	.pc-native-product-card > .elementor-widget-wrap,
	.pc-contact-form > .elementor-widget-wrap {
		padding: 20px;
	}
}

/* Stitch visual repair layer. */
.pc-stitch-elementor-shell,
.pc-stitch-elementor-shell > .elementor-container,
.pc-stitch-elementor-shell > .elementor-container > .elementor-column,
.pc-stitch-elementor-shell .elementor-widget-wrap,
.pc-stitch-elementor-shell .elementor-widget,
.pc-stitch-elementor-shell .elementor-widget-container {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.pc-stitch-elementor-shell .elementor-widget-wrap {
	display: block !important;
}

.pc-stitch-elementor-shell .elementor-widget-text-editor,
.pc-stitch-elementor-shell .elementor-widget-text-editor * {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pc-stitch-elementor-shell .elementor-widget-text-editor {
	color: inherit;
}

.pc-stitch-page {
	min-width: 0;
}

.pc-stitch-page .font-body-lg,
.pc-stitch-page .font-body-md,
.pc-stitch-page .font-body-sm,
.pc-stitch-page .font-headline-xl,
.pc-stitch-page .font-headline-lg,
.pc-stitch-page .font-headline-md,
.pc-stitch-page .font-headline-sm,
.pc-stitch-page .font-label-md,
.pc-stitch-page .font-label-sm {
	font-family: Inter, Arial, sans-serif;
}

.pc-stitch-page .text-headline-xl {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 56px;
}

.pc-stitch-page .text-headline-lg {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 40px;
}

.pc-stitch-page .text-headline-md {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 32px;
}

.pc-stitch-page .text-headline-sm {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 28px;
}

.pc-stitch-page .text-body-lg {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 28px;
}

.pc-stitch-page .text-body-md {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 24px;
}

.pc-stitch-page .text-label-md {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 20px;
}

.pc-stitch-page .text-label-sm {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 16px;
}

.pc-stitch-page .text-primary { color: #003f87; }
.pc-stitch-page .text-primary-container { color: #0056b3; }
.pc-stitch-page .text-primary-fixed { color: #d7e2ff; }
.pc-stitch-page .text-primary-fixed-dim { color: #acc7ff; }
.pc-stitch-page .text-secondary { color: #5c5f60; }
.pc-stitch-page .text-tertiary { color: #722b00; }
.pc-stitch-page .text-error { color: #ba1a1a; }
.pc-stitch-page .text-outline { color: #727784; }
.pc-stitch-page .text-on-background,
.pc-stitch-page .text-on-surface { color: #151c22; }
.pc-stitch-page .text-on-surface-variant { color: #424752; }
.pc-stitch-page .text-on-primary { color: #ffffff; }
.pc-stitch-page .text-on-primary-container { color: #bbd0ff; }
.pc-stitch-page .text-on-primary-fixed { color: #001a40; }
.pc-stitch-page .text-on-secondary-container { color: #626566; }
.pc-stitch-page .text-on-error-container { color: #93000a; }

.pc-stitch-page .bg-background,
.pc-stitch-page .bg-surface { background-color: #f6f9ff; }
.pc-stitch-page .bg-surface-bright { background-color: #f6f9ff; }
.pc-stitch-page .bg-surface-container-lowest { background-color: #ffffff; }
.pc-stitch-page .bg-surface-container-low { background-color: #eef4fd; }
.pc-stitch-page .bg-surface-container { background-color: #e8eef7; }
.pc-stitch-page .bg-surface-container-high { background-color: #e2e9f1; }
.pc-stitch-page .bg-surface-container-highest { background-color: #dce3ec; }
.pc-stitch-page .bg-primary { background-color: #003f87; }
.pc-stitch-page .bg-primary-container { background-color: #0056b3; }
.pc-stitch-page .bg-primary-fixed { background-color: #d7e2ff; }
.pc-stitch-page .bg-secondary-container { background-color: #e1e3e4; }
.pc-stitch-page .bg-inverse-surface { background-color: #2a3138; }
.pc-stitch-page .bg-error { background-color: #ba1a1a; }
.pc-stitch-page .bg-error-container { background-color: #ffdad6; }
.pc-stitch-page .bg-primary\/5 { background-color: rgba(0, 63, 135, 0.05); }
.pc-stitch-page .bg-primary\/10,
.pc-stitch-page .bg-primary-container\/10 { background-color: rgba(0, 63, 135, 0.1); }
.pc-stitch-page .bg-error\/10 { background-color: rgba(186, 26, 26, 0.1); }
.pc-stitch-page .bg-tertiary-container\/10 { background-color: rgba(152, 60, 0, 0.1); }

.pc-stitch-page .border-primary { border-color: #003f87; }
.pc-stitch-page .border-primary-container { border-color: #0056b3; }
.pc-stitch-page .border-outline { border-color: #727784; }
.pc-stitch-page .border-outline-variant { border-color: #c2c6d4; }
.pc-stitch-page .border-on-primary { border-color: #ffffff; }
.pc-stitch-page .border-primary\/20 { border-color: rgba(0, 63, 135, 0.2); }
.pc-stitch-page .border-error\/20 { border-color: rgba(186, 26, 26, 0.2); }
.pc-stitch-page .border-outline-variant\/30 { border-color: rgba(194, 198, 212, 0.3); }

.pc-stitch-page .gap-gutter { gap: 24px; }
.pc-stitch-page .p-margin-mobile { padding: 16px; }
.pc-stitch-page .px-margin-mobile {
	padding-left: 16px;
	padding-right: 16px;
}
.pc-stitch-page .px-margin-desktop {
	padding-left: 64px;
	padding-right: 64px;
}
.pc-stitch-page .py-section-gap {
	padding-bottom: 80px;
	padding-top: 80px;
}
.pc-stitch-page .pb-section-gap { padding-bottom: 80px; }
.pc-stitch-page .mt-section-gap { margin-top: 80px; }
.pc-stitch-page .mb-section-gap { margin-bottom: 80px; }

@media (max-width: 767px) {
	.pc-stitch-page .text-headline-xl {
		font-size: 32px;
		line-height: 40px;
	}

	.pc-stitch-page .text-headline-lg {
		font-size: 26px;
		line-height: 34px;
	}

	.pc-stitch-page .px-margin-desktop {
		padding-left: 16px;
		padding-right: 16px;
	}

	.pc-stitch-page .py-section-gap {
		padding-bottom: 56px;
		padding-top: 56px;
	}

	.pc-stitch-page .pb-section-gap { padding-bottom: 56px; }
}

.pc-stitch-content-widget .pc-stitch-page:has(> nav.fixed),
.pc-stitch-content-widget .pc-stitch-page:has(> header.fixed),
.pc-stitch-content-widget .pc-stitch-page:has(> footer) {
	min-height: 0 !important;
}

.pc-stitch-page a {
	text-decoration: none;
}

.pc-stitch-page button,
.pc-stitch-page input,
.pc-stitch-page select,
.pc-stitch-page textarea {
	font: inherit;
}

.pc-stitch-page .material-symbols-outlined {
	font-family: "Material Symbols Outlined" !important;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	vertical-align: middle;
}

.pc-stitch-page .glass-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid #f1f3f5;
}

.pc-stitch-page .glass-panel {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.pc-stitch-page .clinical-shadow {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pc-stitch-page .product-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-stitch-page .product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pc-stitch-page .accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.pc-stitch-page .accordion-active .accordion-content {
	max-height: 1000px;
	transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.pc-stitch-page .scan-line {
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 86, 179, 0.1) 50%, transparent 100%);
	animation: pc-scan 4s linear infinite;
}

@keyframes pc-scan {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(100%);
	}
}

.pc-stitch-page .grid-bg {
	background-image: radial-gradient(#dee2e6 1px, transparent 1px);
	background-size: 24px 24px;
}

.pc-stitch-page .no-scrollbar::-webkit-scrollbar {
	display: none;
}

.pc-stitch-page .custom-scrollbar::-webkit-scrollbar {
	width: 4px;
}

.pc-stitch-page .custom-scrollbar::-webkit-scrollbar-track {
	background: transparent;
}

.pc-stitch-page .custom-scrollbar::-webkit-scrollbar-thumb {
	background: #dee2e6;
	border-radius: 10px;
}

.pc-stitch-page .wpcf7 form,
.pc-stitch-page .wpcf7 form p {
	margin: 0;
}

.pc-stitch-page .wpcf7-spinner,
.pc-stitch-page .wpcf7-response-output {
	margin: 12px 0 0;
}

.pc-stitch-page .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: var(--pc-error);
	font-size: 12px;
	line-height: 16px;
}

.pc-stitch-page .wpcf7-form-control-wrap {
	display: block;
	max-width: 100%;
}

.pc-stitch-page .wpcf7 input:not([type="submit"]),
.pc-stitch-page .wpcf7 select,
.pc-stitch-page .wpcf7 textarea {
	box-sizing: border-box;
	max-width: 100%;
}

.pc-stitch-page .pc-cf7-file {
	width: 100%;
}

@media (max-width: 767px) {
	.pc-stitch-page nav.fixed,
	.pc-stitch-page header.fixed {
		height: 64px;
		padding-left: 16px !important;
		padding-right: 16px !important;
		overflow: hidden;
	}

	.pc-stitch-page nav.fixed > div,
	.pc-stitch-page header.fixed > div {
		min-width: 0;
	}

	.pc-stitch-page nav.fixed input,
	.pc-stitch-page header.fixed input,
	.pc-stitch-page nav.fixed .relative,
	.pc-stitch-page header.fixed .relative {
		display: none !important;
	}

	.pc-stitch-page nav.fixed button:not(.material-symbols-outlined):not([data-icon]),
	.pc-stitch-page header.fixed button:not(.material-symbols-outlined):not([data-icon]) {
		display: none !important;
	}
}

/* Dynamic Elementor/plugin widget layer. */
.pc-dynamic-header {
	background: var(--pc-surface);
	border-bottom: 1px solid var(--pc-outline-variant);
	box-shadow: none;
	left: 0;
	position: fixed !important;
	top: 0;
	width: 100%;
	z-index: 50;
}

.admin-bar .pc-dynamic-header {
	top: 32px;
}

.pc-dynamic-header > .elementor-container {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	max-width: none !important;
	min-height: 80px;
	padding-left: 64px;
	padding-right: 64px;
	width: 100%;
}

.pc-dynamic-header > .elementor-container > .elementor-column {
	flex: 0 0 auto;
	min-height: 80px;
	width: auto !important;
}

.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(1) {
	margin-right: 48px;
}

.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(2) {
	flex: 1 1 auto;
	min-width: 0;
}

.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(3) {
	margin-left: auto;
}

.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(4),
.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(5) {
	margin-left: 16px;
}

.pc-dynamic-header .elementor-widget-wrap {
	align-content: center;
	align-items: center;
	display: flex;
	gap: 0;
	min-height: 80px;
	padding: 0 !important;
}

.pc-dynamic-header .elementor-widget {
	margin-bottom: 0 !important;
	max-width: none;
	width: auto;
}

.pc-dynamic-logo .elementor-heading-title {
	color: var(--pc-primary);
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	white-space: nowrap;
}

.pc-dynamic-footer-logo .elementor-heading-title {
	color: var(--pc-on-surface);
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
}

.pc-dynamic-logo a,
.pc-dynamic-footer-logo a {
	color: inherit;
	text-decoration: none;
}

.pc-dynamic-nav .menu,
.pc-dynamic-footer-menu .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-dynamic-nav .menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 32px;
}

.pc-dynamic-nav .menu a {
	align-items: center;
	border-bottom: 2px solid transparent;
	color: var(--pc-on-surface-variant);
	display: inline-flex;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	min-height: 80px;
	line-height: 20px;
	padding: 0 0 1px;
	text-decoration: none;
	white-space: nowrap;
}

.pc-dynamic-nav .current-menu-item > a,
.pc-dynamic-nav .menu a:hover {
	border-bottom-color: var(--pc-primary);
	color: var(--pc-primary);
}

.pc-dynamic-search-placeholder .elementor-widget-container {
	width: 260px;
}

.pc-dynamic-search-placeholder .hfe-search-form__container,
.pc-dynamic-search-placeholder form {
	max-width: none;
	width: 100%;
}

.pc-dynamic-search-placeholder form {
	margin: 0;
}

.pc-dynamic-search-placeholder .hfe-search-form__container {
	align-items: center;
	background: var(--pc-surface-low);
	border: 1px solid var(--pc-outline-variant) !important;
	border-radius: 8px !important;
	display: flex;
	height: 40px !important;
	min-height: 40px !important;
	position: relative;
}

.pc-dynamic-search-placeholder .hfe-search-form__container::before {
	color: var(--pc-outline);
	content: "search";
	font-family: "Material Symbols Outlined";
	font-size: 20px;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	left: 14px;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.pc-dynamic-search-placeholder input[type="search"] {
	background: transparent;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	color: var(--pc-on-surface);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	height: 40px;
	line-height: 24px;
	min-height: 40px;
	padding: 8px 36px 8px 44px;
	width: 100%;
}

.pc-dynamic-search-placeholder input[type="search"]:focus {
	box-shadow: 0 0 0 2px rgba(0, 63, 135, 0.12);
	outline: none;
}

.pc-dynamic-search-placeholder #clear {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--pc-outline);
	display: inline-flex;
	height: 24px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.pc-dynamic-menu-cart .elementor-menu-cart__toggle_button,
.pc-dynamic-menu-cart a,
.pc-dynamic-menu-cart button {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--pc-on-surface-variant);
	padding: 0 !important;
}

.pc-dynamic-menu-cart,
.pc-dynamic-menu-cart .elementor-widget-container {
	align-items: center;
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.pc-dynamic-menu-cart .elementor-widget-container:empty::before,
.pc-dynamic-menu-cart .elementor-widget-container:not(:has(*))::before {
	color: var(--pc-on-surface-variant);
	content: "shopping_cart";
	font-family: "Material Symbols Outlined";
	font-size: 24px;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

.pc-dynamic-menu-cart:hover .elementor-widget-container:empty::before,
.pc-dynamic-menu-cart:hover .elementor-widget-container:not(:has(*))::before,
.pc-dynamic-menu-cart .elementor-menu-cart__toggle_button:hover,
.pc-dynamic-menu-cart a:hover,
.pc-dynamic-menu-cart button:hover {
	color: var(--pc-primary);
}

.pc-dynamic-account .elementor-button {
	align-items: center;
	background: var(--pc-primary);
	border-radius: 8px;
	box-shadow: none;
	color: var(--pc-on-primary);
	display: inline-flex;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	justify-content: center;
	line-height: 20px;
	min-height: 40px;
	padding: 10px 24px;
	white-space: nowrap;
}

.pc-dynamic-account .elementor-button:hover {
	background: var(--pc-primary-container);
	color: var(--pc-on-primary);
}

.pc-static-content-shell,
.pc-rd-content-shell,
.pc-dynamic-contact-hero,
.pc-dynamic-products,
.pc-dynamic-product-detail,
.pc-dynamic-faq-hero {
	padding-top: 80px;
}

.pc-dynamic-footer {
	background: var(--pc-surface-low);
	border-top: 1px solid var(--pc-outline-variant);
	padding: 80px 64px;
}

.pc-dynamic-footer > .elementor-container {
	display: grid !important;
	gap: 24px;
	grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 1fr));
	max-width: none !important;
	width: 100%;
}

.pc-dynamic-footer .elementor-column {
	width: auto !important;
}

.pc-dynamic-footer .elementor-widget-wrap {
	align-content: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 !important;
}

.pc-dynamic-footer .elementor-widget {
	margin-bottom: 0 !important;
	width: 100%;
}

.pc-dynamic-footer-copy,
.pc-dynamic-footer-copy p {
	color: var(--pc-on-surface-variant);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	max-width: 320px;
}

.pc-dynamic-footer-copy .pc-footer-small {
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	margin-top: 16px;
}

.pc-dynamic-footer-menu .menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pc-dynamic-footer-menu a {
	color: var(--pc-on-surface-variant);
	font-family: Inter, Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	text-decoration: none;
}

.pc-dynamic-footer-menu a:hover {
	color: var(--pc-primary);
}

.pc-dynamic-footer-menu li + li {
	margin-top: 0;
}

.pc-dynamic-footer-heading .elementor-heading-title {
	color: var(--pc-on-surface-variant);
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
}

.pc-dynamic-newsletter .pc-cf7-newsletter p {
	align-items: center;
	display: flex;
	gap: 8px;
	margin: 0;
}

.pc-dynamic-newsletter .wpcf7-form-control-wrap {
	flex: 1 1 auto;
	min-width: 0;
}

.pc-dynamic-newsletter input[type="email"] {
	background: var(--pc-surface-lowest) !important;
	border: 1px solid var(--pc-outline-variant) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: var(--pc-on-surface);
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	height: 40px;
	line-height: 20px;
	padding: 9px 14px !important;
	width: 100%;
}

.pc-dynamic-newsletter input[type="submit"] {
	background: var(--pc-primary) !important;
	border: 0 !important;
	border-radius: 8px !important;
	color: var(--pc-on-primary) !important;
	cursor: pointer;
	flex: 0 0 auto;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	height: 40px;
	line-height: 20px;
	padding: 10px 20px !important;
}

.pc-dynamic-newsletter input[type="submit"]:hover {
	background: var(--pc-primary-container) !important;
}

.pc-dynamic-products {
	background: #f6f9ff;
	padding-bottom: 80px;
}

.pc-dynamic-products > .elementor-container {
	align-items: stretch;
	max-width: 1440px;
}

.pc-products-sidebar {
	background: #eef4fd;
	border-right: 1px solid #c2c6d4;
	padding: 40px 32px;
}

.pc-products-sidebar .elementor-widget + .elementor-widget {
	margin-top: 28px;
}

.pc-products-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-products-sidebar li {
	margin-bottom: 12px;
}

.pc-products-sidebar a,
.pc-products-sidebar .woocommerce-widget-layered-nav-list__item,
.pc-products-sidebar .wc-layered-nav-rating {
	color: #424752;
	font-family: Inter, Arial, sans-serif;
	font-size: 15px;
	line-height: 22px;
	text-decoration: none;
}

.pc-products-main {
	padding: 40px 48px;
}

.pc-dynamic-product-grid .hfe-woo-products {
	gap: 24px;
}

.pc-dynamic-product-grid ul.products {
	display: grid !important;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 32px 0 0;
	padding: 0;
}

.pc-dynamic-product-grid ul.products li.product {
	background: #ffffff;
	border: 1px solid #f1f3f5;
	border-radius: 4px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	margin: 0 !important;
	padding: 20px !important;
	width: auto !important;
}

.pc-dynamic-product-grid ul.products li.product img {
	aspect-ratio: 1 / 1;
	background: #f8f9fa;
	border-radius: 8px;
	height: auto;
	object-fit: contain;
	padding: 16px;
	width: 100%;
}

.pc-dynamic-product-grid .woocommerce-loop-product__title {
	color: #151c22;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px !important;
	font-weight: 600;
	line-height: 32px;
}

.pc-dynamic-product-grid .price {
	color: #151c22 !important;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 32px;
}

.pc-dynamic-product-grid .button {
	background: transparent !important;
	border: 1px solid #0056b3 !important;
	border-radius: 4px !important;
	color: #0056b3 !important;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 20px !important;
	padding: 8px 16px !important;
}

.pc-dynamic-contact-hero,
.pc-dynamic-contact-grid,
.pc-dynamic-faq-hero,
.pc-dynamic-faq-content,
.pc-rd-newsletter,
.pc-dynamic-product-detail,
.pc-product-clinical-section {
	background: #f6f9ff;
	padding-left: 64px;
	padding-right: 64px;
}

.pc-stitch-page,
.pc-stitch-page .elementor-container,
.pc-stitch-page .elementor-column,
.pc-stitch-page .elementor-widget-wrap,
.pc-stitch-page .elementor-widget,
.pc-stitch-page .elementor-widget-container {
	min-width: 0;
}

.pc-stitch-page p,
.pc-stitch-page h1,
.pc-stitch-page h2,
.pc-stitch-page h3,
.pc-stitch-page h4,
.pc-stitch-page h5,
.pc-stitch-page h6,
.pc-page-lead,
.pc-page-title {
	max-width: 100%;
	overflow-wrap: anywhere;
	white-space: normal;
}

.pc-stitch-page img,
.pc-stitch-page video,
.pc-stitch-page iframe,
.pc-stitch-page [class*="w-["],
.pc-stitch-page [class*="max-w-["] {
	max-width: 100%;
}

.pc-dynamic-contact-hero,
.pc-dynamic-faq-hero {
	padding-bottom: 40px;
	padding-top: 120px;
	text-align: center;
}

.pc-dynamic-contact-hero > .elementor-container,
.pc-dynamic-faq-hero > .elementor-container {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	width: 100%;
}

.pc-page-lead {
	margin-left: auto;
	margin-right: auto;
	max-width: 680px;
	width: 100%;
}

.pc-page-lead p {
	margin-left: auto;
	margin-right: auto;
}

.pc-dynamic-contact-grid,
.pc-dynamic-faq-content,
.pc-rd-newsletter,
.pc-dynamic-product-detail,
.pc-product-clinical-section {
	padding-bottom: 80px;
}

.pc-dynamic-card .elementor-widget-wrap {
	background: #ffffff;
	border: 1px solid #f1f3f5;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 40px;
}

.pc-cf7-shortcode-widget,
.pc-dynamic-newsletter {
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.pc-woo-product-page .product {
	background: #ffffff;
	border: 1px solid #f1f3f5;
	border-radius: 12px;
	margin: 40px auto 0;
	max-width: 1180px;
	padding: 40px;
}

.pc-woo-product-page .product *,
.pc-cf7-shortcode-widget *,
.pc-dynamic-newsletter * {
	box-sizing: border-box;
	max-width: 100%;
	overflow-wrap: break-word;
}

.pc-woo-product-page .single_add_to_cart_button {
	background: #003f87 !important;
	border-radius: 6px !important;
	color: #ffffff !important;
}

.pc-native-accordion .elementor-accordion-item {
	background: #ffffff;
	border: 1px solid #c2c6d4 !important;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.pc-faq-card {
	background: #ffffff;
	border: 1px solid #f1f3f5;
	border-radius: 8px;
	margin-bottom: 16px;
	padding: 28px;
}

.pc-faq-search {
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	color: #5c5f60;
	display: inline-block;
	margin-top: 24px;
	min-width: min(620px, 100%);
	padding: 20px 28px;
	text-align: left;
}

.pc-faq-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 24px;
}

.pc-faq-chips span {
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 999px;
	color: #003f87;
	padding: 8px 16px;
}

@media (max-width: 1024px) {
	.pc-dynamic-footer {
		padding: 64px 32px;
	}

	.pc-dynamic-footer > .elementor-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pc-dynamic-product-grid ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1180px) {
	.pc-dynamic-header > .elementor-container {
		padding-left: 32px;
		padding-right: 32px;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(1) {
		margin-right: 32px;
	}

	.pc-dynamic-nav .menu {
		gap: 20px;
	}

	.pc-dynamic-search-placeholder .elementor-widget-container {
		width: 210px;
	}

	.pc-dynamic-account .elementor-button {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (min-width: 768px) and (max-width: 960px) {
	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(3) {
		display: none;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(4) {
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.admin-bar .pc-dynamic-header,
	.pc-dynamic-header {
		top: 0;
	}

	.pc-dynamic-header > .elementor-container {
		display: flex;
		justify-content: space-between;
		min-height: 64px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column {
		min-height: 64px;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(1) {
		margin-right: 0;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(2),
	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(3),
	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(5),
	.pc-dynamic-header .pc-dynamic-nav,
	.pc-dynamic-header .pc-dynamic-search-placeholder,
	.pc-dynamic-header .pc-dynamic-account {
		display: none !important;
	}

	.pc-dynamic-header > .elementor-container > .elementor-column:nth-child(4) {
		margin-left: auto;
	}

	.pc-dynamic-header .elementor-widget-wrap {
		min-height: 64px;
	}

	.pc-static-content-shell,
	.pc-rd-content-shell,
	.pc-dynamic-products,
	.pc-dynamic-product-detail,
	.pc-dynamic-faq-hero {
		padding-top: 64px;
	}

	.pc-dynamic-products > .elementor-container,
	.pc-dynamic-contact-grid > .elementor-container,
	.pc-dynamic-faq-content > .elementor-container {
		flex-direction: column;
	}

	.pc-dynamic-contact-grid .elementor-column,
	.pc-dynamic-faq-content .elementor-column,
	.pc-dynamic-product-detail .elementor-column,
	.pc-product-clinical-section .elementor-column {
		width: 100% !important;
	}

	.pc-products-sidebar,
	.pc-products-main,
	.pc-dynamic-contact-hero,
	.pc-dynamic-contact-grid,
	.pc-dynamic-faq-hero,
	.pc-dynamic-faq-content,
	.pc-rd-newsletter,
	.pc-dynamic-product-detail,
	.pc-product-clinical-section,
	.pc-dynamic-footer {
		padding-left: 16px;
		padding-right: 16px;
	}

	.pc-dynamic-footer {
		padding-bottom: 48px;
		padding-top: 48px;
	}

	.pc-dynamic-footer > .elementor-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pc-dynamic-newsletter .pc-cf7-newsletter p {
		align-items: stretch;
		flex-direction: column;
	}

	.pc-dynamic-newsletter input[type="submit"] {
		width: 100%;
	}

	.pc-products-sidebar,
	.pc-products-main {
		width: 100% !important;
	}

	.pc-products-sidebar {
		border-right: 0;
	}

	.pc-dynamic-product-grid ul.products {
		grid-template-columns: 1fr;
	}

	.pc-dynamic-card .elementor-widget-wrap,
	.pc-woo-product-page .product {
		padding: 24px;
	}

	.pc-dynamic-card .elementor-widget-wrap {
		width: 100%;
	}

	.pc-woo-product-page .woocommerce-product-gallery,
	.pc-woo-product-page .summary,
	.pc-woo-product-page .woocommerce-tabs {
		float: none !important;
		width: 100% !important;
	}

	.pc-woo-product-page input.qty {
		max-width: 56px;
	}
}

/* Dynamic patient portal widget */
.pc-patient-dashboard-section,
.pc-patient-dashboard-section > .elementor-container,
.pc-patient-dashboard-section .elementor-column,
.pc-patient-dashboard-section .elementor-widget-wrap,
.pc-patient-dashboard-section .elementor-widget-container {
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	width: 100% !important;
}

.pc-portal {
	background: #f6f9ff;
	color: #151c22;
	display: grid;
	font-family: Inter, Arial, sans-serif;
	grid-template-columns: 256px minmax(0, 1fr);
	min-height: 100vh;
	width: 100%;
}

.pc-portal__sidebar {
	background: #ffffff;
	border-right: 1px solid #c2c6d4;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: sticky;
	top: 0;
}

.pc-portal__logo {
	align-items: center;
	border-bottom: 1px solid #c2c6d4;
	color: #003f87;
	display: flex;
	font-size: 24px;
	font-weight: 700;
	min-height: 80px;
	padding: 0 24px;
	text-decoration: none;
}

.pc-portal__nav {
	flex: 1;
	padding: 24px 12px;
}

.pc-portal__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-portal__menu li + li {
	margin-top: 8px;
}

.pc-portal__menu a {
	align-items: center;
	border-radius: 8px;
	color: #5c5f60;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 12px;
	line-height: 20px;
	padding: 12px;
	text-decoration: none;
}

.pc-portal__menu li:first-child a,
.pc-portal__menu a:hover {
	background: #0056b3;
	color: #acc7ff;
}

.pc-portal__menu a::before {
	content: attr(title);
	font-family: "Material Symbols Outlined";
	font-size: 24px;
	font-weight: normal;
	line-height: 1;
}

.pc-portal__support {
	border-top: 1px solid #c2c6d4;
	padding: 24px;
}

.pc-portal__support > p {
	color: #5c5f60;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.pc-portal__support a {
	align-items: center;
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	color: #003f87;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	padding: 12px;
	text-decoration: none;
}

.pc-portal__main {
	min-width: 0;
	overflow: hidden;
}

.pc-portal__topbar {
	align-items: center;
	background: #f6f9ff;
	border-bottom: 1px solid #c2c6d4;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) 40px;
	min-height: 80px;
	padding: 16px 64px;
	position: sticky;
	top: 0;
	z-index: 20;
}

.pc-portal__eyebrow {
	color: #5c5f60;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0 0 2px;
	text-transform: uppercase;
}

.pc-portal__topbar h1 {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin: 0;
}

.pc-portal__search {
	align-items: center;
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 999px;
	display: flex;
	gap: 8px;
	padding: 8px 14px;
}

.pc-portal__search input {
	background: transparent;
	border: 0;
	min-width: 0;
	outline: 0;
	width: 100%;
}

.pc-portal__avatar {
	border: 1px solid #c2c6d4;
	border-radius: 999px;
	height: 40px;
	object-fit: cover;
	width: 40px;
}

.pc-portal__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1440px;
	padding: 64px;
}

.pc-portal-card,
.pc-portal-section {
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 12px;
}

.pc-portal-card--delivery {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-column: span 8;
	grid-template-columns: minmax(0, 1fr) 256px;
	overflow: hidden;
	padding: 32px;
}

.pc-portal-card--delivery img {
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.pc-portal-kicker {
	align-items: center;
	color: #003f87;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.pc-portal-card h2,
.pc-portal-section h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin: 0 0 16px;
}

.pc-portal-card--delivery h2 {
	font-size: 32px;
	line-height: 40px;
	max-width: 620px;
}

.pc-portal-card--delivery h2 span {
	color: #003f87;
}

.pc-portal-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.pc-portal-pills span {
	align-items: center;
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 999px;
	color: #151c22;
	display: inline-flex;
	font-size: 14px;
	gap: 8px;
	padding: 8px 14px;
}

.pc-button {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 20px;
	padding: 12px 18px;
	text-decoration: none;
}

.pc-button--primary {
	background: #003f87;
	border: 1px solid #003f87;
	color: #ffffff;
}

.pc-button--outline {
	background: transparent;
	border: 1px solid #0056b3;
	color: #0056b3;
}

.pc-portal-card--profile {
	display: flex;
	flex-direction: column;
	grid-column: span 4;
	padding: 32px;
}

.pc-portal-muted {
	color: #5c5f60;
	margin: 0 0 24px;
}

.pc-portal-card--profile dl {
	display: grid;
	gap: 16px;
	margin: 0 0 24px;
}

.pc-portal-card--profile dl div {
	display: flex;
	justify-content: space-between;
}

.pc-portal-card--profile dt {
	color: #5c5f60;
	font-weight: 600;
}

.pc-portal-card--profile dd {
	font-weight: 700;
	margin: 0;
}

.pc-text-error {
	color: #ba1a1a;
}

.pc-portal-section--rx {
	grid-column: span 7;
	padding: 0;
}

.pc-portal-section--labs {
	background: transparent;
	border: 0;
	display: grid;
	gap: 24px;
	grid-column: span 5;
}

.pc-portal-section__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0 0 20px;
}

.pc-portal-section--rx .pc-portal-section__head {
	padding: 0 0 16px;
}

.pc-portal-section--rx {
	background: transparent;
	border: 0;
}

.pc-portal-section__head a {
	align-items: center;
	color: #003f87;
	display: flex;
	font-weight: 700;
	gap: 4px;
	text-decoration: none;
}

.pc-prescription-card,
.pc-lab-card,
.pc-health-tip {
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 12px;
	overflow: hidden;
}

.pc-prescription-card {
	padding: 24px;
}

.pc-prescription-card + .pc-prescription-card {
	margin-top: 16px;
}

.pc-prescription-card__top {
	align-items: flex-start;
	display: grid;
	gap: 16px;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	margin-bottom: 20px;
}

.pc-prescription-card__icon {
	align-items: center;
	background: rgba(0, 63, 135, 0.1);
	border-radius: 10px;
	color: #003f87;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.pc-prescription-card--error .pc-prescription-card__icon {
	background: rgba(186, 26, 26, 0.1);
	color: #722b00;
}

.pc-prescription-card h3 {
	color: #003f87;
	font-size: 22px;
	line-height: 30px;
	margin: 0;
}

.pc-prescription-card p {
	color: #5c5f60;
	margin: 4px 0 0;
}

.pc-prescription-card strong {
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 999px;
	color: #151c22;
	font-size: 12px;
	padding: 6px 10px;
	text-transform: uppercase;
	white-space: nowrap;
}

.pc-prescription-card--error strong {
	background: #ffdad6;
	border-color: rgba(186, 26, 26, 0.2);
	color: #ba1a1a;
}

.pc-progress-label {
	color: #5c5f60;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	justify-content: space-between;
	margin-bottom: 8px;
}

.pc-progress {
	background: #e8eef7;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
}

.pc-progress span {
	background: #003f87;
	display: block;
	height: 100%;
}

.pc-prescription-card--error .pc-progress span {
	background: #ba1a1a;
}

.pc-lab-card header {
	align-items: center;
	background: #eef4fd;
	border-bottom: 1px solid #c2c6d4;
	display: flex;
	gap: 12px;
	padding: 24px;
}

.pc-lab-card h3,
.pc-lab-card h4,
.pc-lab-card p {
	margin: 0;
}

.pc-lab-card header span {
	color: #003f87;
}

.pc-lab-card header p,
.pc-lab-row p {
	color: #5c5f60;
	font-size: 12px;
}

.pc-lab-row {
	align-items: center;
	border-bottom: 1px solid #c2c6d4;
	display: flex;
	justify-content: space-between;
	padding: 16px 20px;
}

.pc-lab-row > div:last-child {
	text-align: right;
}

.pc-lab-row strong {
	color: #003f87;
	display: block;
}

.pc-lab-row--error strong {
	color: #ba1a1a;
}

.pc-lab-row span {
	background: #e1e3e4;
	border-radius: 999px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 4px;
	padding: 2px 8px;
}

.pc-lab-row--error span {
	background: #ffdad6;
	color: #ba1a1a;
}

.pc-lab-card > a {
	color: #003f87;
	display: block;
	font-weight: 700;
	padding: 16px;
	text-align: center;
	text-decoration: none;
}

.pc-health-tip {
	background: #003f87;
	color: #ffffff;
	padding: 24px;
	position: relative;
}

.pc-health-tip p {
	align-items: center;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.pc-health-tip h3 {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 16px;
}

.pc-health-tip a {
	color: #ffffff;
	font-weight: 700;
}

/* Dynamic Woo product detail widget */
.pc-product-detail-widget-section {
	background: #f6f9ff;
	padding: 120px 64px 0;
}

.pc-product-showcase {
	font-family: Inter, Arial, sans-serif;
}

.pc-product-showcase__hero {
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin: 0 auto 80px;
	max-width: 1200px;
}

.pc-product-gallery__main {
	aspect-ratio: 1 / 1;
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: grid;
	place-items: center;
}

.pc-product-gallery__main img {
	height: 100%;
	object-fit: contain;
	padding: 48px;
	width: 100%;
}

.pc-product-gallery__thumbs {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	overflow-x: auto;
}

.pc-product-gallery__thumbs button {
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	cursor: pointer;
	flex: 0 0 96px;
	height: 96px;
	padding: 8px;
}

.pc-product-gallery__thumbs button:first-child,
.pc-product-gallery__thumbs button:hover {
	border-color: #003f87;
}

.pc-product-gallery__thumbs img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.pc-product-summary {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pc-product-summary__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pc-product-summary__meta span {
	background: #e8eef7;
	border-radius: 4px;
	color: #003f87;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 8px;
	text-transform: uppercase;
}

.pc-product-summary__meta small {
	color: #5c5f60;
	font-size: 12px;
	font-weight: 700;
}

.pc-product-summary h1 {
	color: #151c22;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 56px;
	margin: 0;
}

.pc-product-summary__excerpt,
.pc-product-summary__excerpt p {
	color: #424752;
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}

.pc-product-summary__price {
	align-items: baseline;
	color: #003f87;
	display: flex;
	font-size: 32px;
	font-weight: 700;
	gap: 12px;
	line-height: 40px;
}

.pc-product-summary__price del {
	color: #5c5f60;
	font-size: 16px;
	font-weight: 400;
	opacity: 1;
}

.pc-product-summary__price ins {
	text-decoration: none;
}

.pc-product-purchase {
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	padding: 24px;
}

.pc-product-form > label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
}

.pc-product-form__row {
	display: grid;
	gap: 12px;
	grid-template-columns: 96px minmax(150px, 1fr) minmax(160px, 1fr);
}

.pc-product-form .quantity input {
	background: #ffffff;
	border: 1px solid #727784;
	border-radius: 6px;
	height: 48px;
	text-align: center;
	width: 100%;
}

.pc-product-form .pc-button {
	min-height: 48px;
	padding: 12px 16px;
}

.pc-product-form button.pc-button {
	cursor: pointer;
}

.pc-product-delivery {
	align-items: center;
	color: #5c5f60;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 6px;
	justify-content: center;
	margin: 16px 0 0;
}

.pc-product-features {
	border-top: 1px solid #c2c6d4;
	display: grid;
	gap: 18px;
	padding-top: 24px;
}

.pc-product-features div {
	align-items: flex-start;
	display: grid;
	gap: 14px;
	grid-template-columns: 40px minmax(0, 1fr);
}

.pc-product-features span {
	align-items: center;
	background: #d7e2ff;
	border-radius: 999px;
	color: #003f87;
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.pc-product-features p {
	color: #5c5f60;
	margin: 0;
}

.pc-product-features strong {
	color: #151c22;
	display: block;
	margin-bottom: 2px;
}

.pc-product-clinical {
	background: #ffffff;
	border-top: 1px solid #c2c6d4;
	display: grid;
	gap: 80px 48px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-left: -64px;
	margin-right: -64px;
	padding: 80px max(64px, calc((100vw - 1200px) / 2 + 64px));
}

.pc-product-clinical__intro {
	align-self: center;
}

.pc-product-clinical h2,
.pc-product-clinical h3 {
	color: #151c22;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 0 16px;
}

.pc-product-clinical p,
.pc-product-clinical li {
	color: #424752;
	font-size: 16px;
	line-height: 24px;
}

.pc-product-clinical ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.pc-product-clinical li {
	align-items: flex-start;
	display: flex;
	gap: 10px;
}

.pc-product-clinical li span {
	color: #003f87;
}

.pc-product-clinical__chart {
	aspect-ratio: 16 / 9;
	background: #eef4fd;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	grid-column: span 2;
	overflow: hidden;
	position: relative;
}

.pc-product-clinical__chart img {
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	width: 100%;
}

.pc-product-clinical__chart div {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #c2c6d4;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	left: 50%;
	padding: 16px 24px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
}

.pc-product-clinical__chart strong {
	color: #003f87;
	display: block;
	font-size: 24px;
	line-height: 32px;
}

.pc-product-clinical__chart span {
	color: #5c5f60;
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.pc-product-dosage {
	background: #e8eef7;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	padding: 32px;
}

.pc-product-dosage > span {
	color: #003f87;
	font-size: 40px;
	margin-bottom: 16px;
}

.pc-product-dosage small {
	border-top: 1px solid #727784;
	color: #5c5f60;
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 32px;
	padding-top: 20px;
}

.pc-product-ingredients {
	background: #ffffff;
	border: 1px solid #c2c6d4;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	grid-column: span 2;
	padding: 32px;
}

.pc-product-ingredients > div {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pc-product-ingredients h4 {
	color: #003f87;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.pc-product-ingredients p {
	margin: 0;
}

.pc-product-warning {
	align-items: center;
	background: rgba(255, 218, 214, 0.3);
	border: 1px solid rgba(186, 26, 26, 0.2);
	border-radius: 8px;
	display: grid;
	gap: 24px;
	grid-column: 1 / -1;
	grid-template-columns: 64px minmax(0, 1fr);
	padding: 32px;
}

.pc-product-warning > span {
	align-items: center;
	background: rgba(186, 26, 26, 0.1);
	border-radius: 999px;
	color: #ba1a1a;
	display: flex;
	font-size: 40px;
	height: 64px;
	justify-content: center;
	width: 64px;
}

.pc-product-warning h3 {
	color: #93000a;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 8px;
}

.pc-product-warning p {
	margin: 0;
}

@media (max-width: 1024px) {
	.pc-portal {
		grid-template-columns: 1fr;
	}

	.pc-portal__sidebar {
		display: none;
	}

	.pc-portal__topbar {
		grid-template-columns: minmax(0, 1fr) 40px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.pc-portal__search {
		display: none;
	}

	.pc-portal__grid {
		padding: 32px 24px;
	}

	.pc-portal-card--delivery,
	.pc-portal-card--profile,
	.pc-portal-section--rx,
	.pc-portal-section--labs {
		grid-column: 1 / -1;
	}

	.pc-product-showcase__hero {
		grid-template-columns: 1fr;
	}

	.pc-product-clinical {
		grid-template-columns: 1fr;
		padding-left: 32px;
		padding-right: 32px;
	}

	.pc-product-clinical__chart,
	.pc-product-ingredients,
	.pc-product-warning {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	.pc-product-detail-widget-section {
		padding: 88px 16px 0;
	}

	.pc-portal__topbar {
		padding: 12px 16px;
		position: relative;
	}

	.pc-portal__topbar h1 {
		font-size: 22px;
		line-height: 30px;
	}

	.pc-portal__grid {
		padding: 24px 16px;
	}

	.pc-portal-card--delivery {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.pc-portal-card--delivery h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.pc-prescription-card__top {
		grid-template-columns: 40px minmax(0, 1fr);
	}

	.pc-prescription-card strong {
		grid-column: 1 / -1;
		width: fit-content;
	}

	.pc-lab-row {
		align-items: flex-start;
		gap: 12px;
	}

	.pc-product-showcase__hero {
		gap: 32px;
		margin-bottom: 56px;
	}

	.pc-product-gallery__main img {
		padding: 24px;
	}

	.pc-product-gallery__thumbs button {
		flex-basis: 72px;
		height: 72px;
	}

	.pc-product-summary h1 {
		font-size: 34px;
		line-height: 42px;
	}

	.pc-product-form__row {
		grid-template-columns: 1fr;
	}

	.pc-product-clinical {
		gap: 40px;
		margin-left: -16px;
		margin-right: -16px;
		padding: 56px 16px;
	}

	.pc-product-ingredients > div {
		grid-template-columns: 1fr;
	}

	.pc-product-warning {
		align-items: flex-start;
		grid-template-columns: 1fr;
	}
}
