/*
 * Product card styles.
 *
 * Self-contained: nothing here depends on the source theme's compiled CSS, so
 * the card renders correctly on consalt without porting main.min.css. Colours
 * reuse the palette already established in the child theme's style.css.
 *
 * Table behaviour follows the spec: the key-value table collapses into a
 * vertical list on mobile, while the parametric DN table scrolls horizontally
 * and offers a size picker instead.
 */

.pc,
.pc-tile {
	--pc-red: #e20613;
	--pc-navy: #143960;
	--pc-text: #5f666d;
	--pc-dark: #020f1d;
	--pc-gray: #aeb9c5;
	--pc-border: #ebedef;
	--pc-muted: #c8d6e4;
	--pc-bg: #f7f9fb;
	--pc-gap: 24px;

	color: var(--pc-text);
}

.pc :where(ul, ol) {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc a {
	text-decoration: none;
}

/* ---------------------------------------------------------------- sections */

.pc-section {
	padding: 64px 0;
	border-top: 1px solid var(--pc-border);
}

.pc-section--description {
	border-top: 0;
}

.pc-section__head {
	margin-bottom: 32px;
}

.pc-section__eyebrow {
	margin-bottom: 12px;
	color: var(--pc-red);
	font-weight: 700;
}

.pc-section__title {
	margin: 0;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-prose p {
	margin-bottom: 16px;
}

.pc-prose img {
	max-width: 100%;
	height: auto;
}

.pc-prose table {
	width: 100%;
	border-collapse: collapse;
}

.pc-prose td,
.pc-prose th {
	padding: 12px 8px;
	border-bottom: 1px solid var(--pc-border);
	text-align: left;
}

/* -------------------------------------------------------------------- hero */

.pc__hero {
	padding: 64px 0;
}

.pc__hero > .container {
	max-width: 1280px;
}

.breadcumb-inner.witr_breadcumb_shop ul * {
	color: #5f666d;
}

.breadcumb-inner.witr_breadcumb_shop ul i:before {
	display: block;
}

.breadcumb-inner.witr_breadcumb_shop ul li {
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.breadcumb-inner.witr_breadcumb_shop ul a:hover {
	color: #ff9800;
}

.pc__top {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	align-items: flex-start;
	margin-top: 24px;
}

.pc__media {
	flex: 0 1 38%;
	max-width: 38%;
	min-width: 0;
}

.pc__summary {
	flex: 1 1 420px;
	min-width: 0;
}

@media (max-width: 991px) {
	.pc__media {
		flex: 1 1 100%;
		max-width: 100%;
	}
}


.pc__title {
	margin: 0 0 8px;
	font-size: 38px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--pc-red);
}

.pc__subtitle {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 600;
	color: var(--pc-navy);
}

.pc__subtitle--sw {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pc__subtitle-icon svg {
	width: 20px;
	height: 20px;
}

.pc__excerpt {
	margin-bottom: 24px;
	font-weight: 600;
}

/* ------------------------------------------------------------------ badges */

.pc-badges {
	margin-bottom: 28px;
}

.pc-badges__heading {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.pc-badges__group + .pc-badges__group {
	margin-top: 16px;
}

.pc-badges__group-label {
	display: block;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 600;
	color: var(--pc-dark);
	opacity: .75;
}

.pc-badges__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pc-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: var(--pc-navy);
	cursor: default;
	transition: border-color .2s ease, color .2s ease;
}

.pc-badge:hover,
.pc-badge:focus-visible,
.pc-badge:focus-within {
	border-color: var(--pc-navy);
	outline: none;
}

/*
 * A badge whose value exists as a facet links into the filtered catalogue. The
 * link fills the badge so the whole pill is the hit area, and colour is
 * inherited so the national/international styling above still applies.
 */
.pc-badge--linked {
	cursor: pointer;
	padding: 0;
}

.pc-badge__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	color: inherit;
}

.pc-badge--linked:hover {
	border-color: var(--pc-navy);
}

.pc-badge--linked.pc-badge--international:hover {
	border-color: var(--pc-red);
	background: var(--pc-red);
}

.pc-badge__tip-cta {
	display: block;
	margin-top: 6px;
	padding-top: 6px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: 12px;
	opacity: .85;
}

.pc-badge__icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.pc-badge__note {
	font-weight: 400;
	font-size: 13px;
	opacity: .7;
}

/* National vs international is a required visual distinction, not decoration. */
.pc-badge--international {
	border-color: var(--pc-red);
	color: var(--pc-red);
}

.pc-badge--international:hover,
.pc-badge--international:focus-visible {
	border-color: var(--pc-red);
	background: var(--pc-red);
	color: #fff;
}

.pc-badge--company {
	border-style: dashed;
	color: var(--pc-text);
}

/* Tooltip with the registry explanation. */
.pc-badge__tip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	z-index: 5;
	width: max-content;
	max-width: 260px;
	padding: 8px 12px;
	transform: translateX(-50%);
	border-radius: 0px;
	background: var(--pc-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.pc-badge:hover .pc-badge__tip,
.pc-badge:focus-visible .pc-badge__tip,
.pc-badge:focus-within .pc-badge__tip {
	opacity: 1;
	visibility: visible;
}

/* ---------------------------------------------------------------- features */

.pc-features {
	margin-bottom: 32px;
}

.pc-features__heading {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.pc-features__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px var(--pc-gap);
}

.pc-features__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pc-features__icon {
	flex: 0 0 48px;
}

.pc-features__icon img {
	display: block;
	width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------- cta */

.pc-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
}

.pc-cta__button {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	border-radius: 0;
	border: none;
	background: var(--pc-red);
	color: #fff;
	font-weight: 700;
	letter-spacing: .3px;
	transition: background-color .3s ease;
}

.pc-cta__button:hover,
.pc-cta__button:focus-visible {
	background: var(--pc-navy);
	color: #fff;
}

.pc-cta__button svg {
	width: 18px;
	height: 18px;
}

.pc-cta__button--secondary {
	background: var(--pc-navy);
}

.pc-cta__button--secondary:hover,
.pc-cta__button--secondary:focus-visible {
	background: var(--pc-red);
}

.pc-cta__link {
	color: var(--pc-navy);
	font-weight: 600;
	text-decoration: underline;
}

.pc-cta__link:hover {
	color: var(--pc-red);
}

/* ----------------------------------------------------------------- gallery */

.pc-gallery__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.pc-gallery__tab {
	padding: 9px 16px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: transparent;
	color: var(--pc-text);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
}

.pc-gallery__tab.is-active {
	border-color: var(--pc-navy);
	background: var(--pc-navy);
	color: #fff;
}

.pc-gallery__group {
	display: none;
}

.pc-gallery__group.is-active {
	display: block;
}

.pc-gallery__stage {
	position: relative;
	padding-top: 75%;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
	overflow: hidden;
}

.pc-gallery__slide {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	cursor: zoom-in;
}

.pc-gallery__slide.is-active {
	display: flex;
}

/* Nothing to enlarge, so no zoom affordance either. */
.pc-gallery--placeholder .pc-gallery__slide {
	cursor: default;
}

.pc-gallery--placeholder .pc-gallery__img {
	opacity: .45;
}

.pc-gallery__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pc-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.pc-gallery__thumbs li {
	width: calc(100% / 6 - 50px / 6);
}

@media (max-width: 767px) {
	.pc-gallery__thumbs li {
		width: calc(20% - 40px / 5);
	}
}

.pc-gallery__thumb {
	display: block;
	width: 100%;
	height: 100%;
	padding: 4px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease;
}

.pc-gallery__thumb.is-active,
.pc-gallery__thumb:hover {
	outline: none;
	border-color: var(--pc-red);
}

.pc-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* -------------------------------------------------------------------- zoom */

.pc-zoom {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: rgba(2, 15, 29, .92);
	cursor: zoom-out;
}

.pc-zoom[hidden] {
	display: none;
}

body.pc-zoom-open {
	overflow: hidden;
}

.pc-zoom__figure {
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	text-align: center;
}

.pc-zoom__img {
	max-width: 100%;
	max-height: calc(100vh - 140px);
	cursor: default;
}

.pc-zoom__caption {
	margin-top: 12px;
	color: #fff;
	font-size: 15px;
	cursor: default;
}

.pc-zoom__close {
	position: absolute;
	top: 16px;
	right: 24px;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

/* ------------------------------------------------------------------- specs */

.pc-specs__group + .pc-specs__group {
	margin-top: 40px;
}

.pc-specs__group-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--pc-navy);
}

.pc-specs__table {
	width: 100%;
	border-collapse: collapse;
}

.pc-specs__table th,
.pc-specs__table td {
	padding: 16px 8px;
	border-bottom: 1px solid var(--pc-border);
	vertical-align: top;
}

.pc-specs__table tr:last-child th,
.pc-specs__table tr:last-child td {
	border-bottom: none;
}

.pc-specs__table th {
	color: var(--pc-dark);
	font-size: 16px;
	font-weight: 600;
	width: 55%;
	text-align: left;
}

.pc-specs__table td {
	color: var(--pc-dark);
	font-size: 16px;
	font-weight: 600;
	text-align: right;
}

/* ---------------------------------------------------------------- DN table */

.pc-dn__picker {
	display: none;
	margin-bottom: 16px;
}

.pc-dn__picker-label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pc-text);
}

.pc-dn__select {
	width: 100%;
	max-width: 320px;
	height: 48px;
	padding: 0 12px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
	font-weight: 700;
}

.pc-dn__scroll {
	overflow-x: auto;
}

.pc-dn__table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
}

.pc-dn__table th,
.pc-dn__table td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--pc-border);
	text-align: center;
	white-space: nowrap;
}

.pc-dn__table thead th {
	background: var(--pc-bg);
	color: var(--pc-navy);
	font-weight: 700;
}

.pc-dn__table tbody th {
	text-align: left;
	font-weight: 400;
	white-space: normal;
}

.pc-dn__table [hidden] {
	display: none;
}

/* ---------------------------------------------------------------- variants */

.pc-variants__code {
	margin-bottom: 24px;
}

.pc-variants__code-label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pc-gray);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.pc-variants__code code,
.pc-variants__table code {
	padding: 4px 10px;
	border-radius: 0px;
	background: var(--pc-bg);
	color: var(--pc-navy);
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-weight: 700;
	display: inline-flex;
}

.pc-variants__scroll {
	overflow-x: auto;
}

.pc-variants__table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}

.pc-variants__table th,
.pc-variants__table td {
	padding: 14px 0;
	border-bottom: 1px solid var(--pc-border);
	text-align: left;
	vertical-align: top;
}

.pc-variants__table tr:last-child th,
.pc-variants__table tr:last-child td {
	border-bottom: none;
}

.pc-variants__table thead th {
	background: var(--pc-bg);
	color: var(--pc-navy);
	font-weight: 700;
	padding: 14px 12px;
}

.pc-variants__table tbody td {
	font-size: 16px;
	padding: 14px 12px;
}

.pc-variants__table tbody th {
	width: 35%;
	font-weight: 400;
}

/* The spec requires this to read as a warning, not a footnote. */
.pc-variants__warning {
	display: block;
	margin: 24px 0 0;
	padding: 16px 20px;
	border-left: 4px solid var(--pc-red);
	background: rgba(226, 6, 19, .06);
	color: var(--pc-dark);
	font-weight: 600;
}

/* ------------------------------------------------- compatibility / related */

.pc-compat {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--pc-gap);
}

.pc-compat__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
	text-align: center;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.pc-compat__link:hover {
	border-color: var(--pc-red);
	box-shadow: 0 4px 18px rgba(2, 15, 29, .08);
}

.pc-compat__media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	margin-bottom: 12px;
}

.pc-compat__media img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pc-thumb--placeholder {
	opacity: .35;
}

.pc-compat__title {
	display: block;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-compat__subtitle {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: var(--pc-text);
}

/* ------------------------------------------------------------------ slider */

/*
 * Built on scroll-snap rather than a carousel library: touch and trackpad
 * swiping come from the browser, the arrows only nudge scrollLeft, and the
 * whole list stays reachable by keyboard and readable with scripting off.
 */
.pc-slider {
	position: relative;
}

.pc-compat--related {
	display: flex;
	grid-template-columns: none;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.pc-compat--related::-webkit-scrollbar {
	display: none;
}

.pc-compat--related > .pc-compat__item {
	flex: 0 0 calc(25% - var(--pc-gap) * 3 / 4);
	scroll-snap-align: start;
}

.pc-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 1px solid var(--pc-border);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}


.pc-slider__nav:focus {
	border: 1px solid var(--pc-border) !important;
	outline: none !important;
}

.pc-slider__nav::before {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	margin: 0 auto;
	border-top: 2px solid var(--pc-navy);
	border-right: 2px solid var(--pc-navy);
	transition: border-color .2s ease;
}

.pc-slider__nav--prev {
	left: -22px;
}

.pc-slider__nav--prev::before {
	transform: translateX(2px) rotate(-135deg);
}

.pc-slider__nav--next {
	right: -22px;
}

.pc-slider__nav--next::before {
	transform: translateX(-2px) rotate(45deg);
}

.pc-slider__nav:hover {
	border-color: var(--pc-red);
	background: var(--pc-red);
}

.pc-slider__nav:hover::before {
	border-color: #fff;
}

/* Hidden at the ends of the track, and whenever everything already fits. */
.pc-slider__nav[disabled] {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1440px) {
	.pc-slider__nav--prev {
		left: 4px;
	}

	.pc-slider__nav--next {
		right: 4px;
	}
}

/* --------------------------------------------------------------- documents */

.pc-docs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--pc-gap);
}

.pc-docs__item {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
}

.pc-docs__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.pc-docs__type {
	font-size: 13px;
	font-weight: 600;
	color: var(--pc-muted);
}

.pc-docs__ext {
	padding: 2px 8px;
	border-radius: 0px;
	background: var(--pc-navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
}

.pc-docs__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-docs__date {
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--pc-muted);
}

.pc-docs__notice {
	margin: 0 0 12px;
	font-size: 13px;
	color: var(--pc-text);
}

.pc-docs__button {
	display: inline-block;
	margin-top: auto;
	padding: 12px 20px;
	border-radius: 0px;
	background: var(--pc-navy);
	color: #fff;
	font-weight: 700;
	text-align: center;
	transition: background-color .3s ease;
}

.pc-docs__button:hover {
	background: var(--pc-red);
	color: #fff;
}

.pc-docs__button--locked {
	background: transparent;
	border: 1px solid var(--pc-border);
	color: var(--pc-navy);
}

.pc-docs__button--locked:hover {
	background: var(--pc-navy);
	color: #fff;
}

/* ------------------------------------------------------------------- video */

.pc-video {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 56.25%;
}

.pc-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ----------------------------------------------------------------- contact */

.pc-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	align-items: flex-start;
}

.pc-contact__intro {
	flex: 1 1 380px;
	min-width: 0;
}

.pc-contact__form {
	flex: 1 1 480px;
	min-width: 0;
}

.pc-contact__lead {
	margin-top: 16px;
}

/* -------------------------------------------------------- software blocks */

.pc-swfeatures {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pc-gap);
}

.pc-swfeatures__item {
	padding: 24px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
}

.pc-swfeatures__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--pc-navy);
}

.pc-swfeatures__desc {
	margin: 0;
}

.pc-swcompat {
	margin-top: 40px;
	padding: 24px;
	border-radius: 0px;
	background: var(--pc-bg);
}

.pc-swcompat__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--pc-navy);
}

.pc-swcompat__text {
	margin: 0;
}

.pc-screens {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--pc-gap);
}

.pc-screens__item img {
	width: 100%;
	height: auto;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	cursor: zoom-in;
}

/* ---------------------------------------------------------------- siblings */

.pc-siblings {
	padding: 32px 0 64px;
	border-top: 1px solid var(--pc-border);
}

.pc-siblings__row {
	display: flex;
	justify-content: space-between;
	gap: var(--pc-gap);
}

.pc-siblings__link {
	max-width: 45%;
}

.pc-siblings__link--next {
	margin-left: auto;
	text-align: right;
}

.pc-siblings__label {
	display: block;
	font-size: 13px;
	color: var(--pc-muted);
}

.pc-siblings__title {
	display: block;
	margin-top: 4px;
	font-weight: 700;
	color: var(--pc-navy);
	transition: color .3s ease-in-out;
}

.pc-siblings__link:hover .pc-siblings__title {
	color: var(--pc-red);
}

/* ------------------------------------------------------------------- tiles */

.pc-tile__link {
	display: block;
	padding: 20px;
	text-align: center;
}

.pc-tile__media img {
	max-width: 100%;
	height: auto;
}

.pc-tile__title {
	display: block;
	margin-top: 12px;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-tile__subtitle {
	display: block;
	margin-top: 4px;
	font-size: 14px;
}

/* -------------------------------------------------------------- responsive */

@media (max-width: 1200px) {
	.pc-compat,
	.pc-docs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pc-compat--related > .pc-compat__item {
		flex-basis: calc(33.333% - var(--pc-gap) * 2 / 3);
	}
}

@media (max-width: 920px) {
	.pc-section {
		padding: 48px 0;
	}

	.pc-section__title {
		font-size: 26px;
	}

	.pc__title {
		font-size: 28px;
	}

	.pc__top,
	.pc-contact {
		gap: 32px;
	}

	.pc-compat,
	.pc-docs,
	.pc-swfeatures,
	.pc-screens {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pc-compat--related > .pc-compat__item {
		flex-basis: calc(50% - var(--pc-gap) / 2);
	}
}

@media (max-width: 767px) {
	.pc-features__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.pc-compat,
	.pc-docs,
	.pc-swfeatures,
	.pc-screens {
		grid-template-columns: minmax(0, 1fr);
	}

	/* One card at a time, with the next one peeking so the swipe is discoverable. */
	.pc-compat--related > .pc-compat__item {
		flex-basis: 100%;
	}

	/*
	 * Key-value table becomes a vertical "параметр: значення" list — the spec
	 * rules out horizontal scrolling for this shape.
	 */
	.pc-specs__table,
	.pc-specs__table tbody,
	.pc-specs__table tr,
	.pc-specs__table th,
	.pc-specs__table td {
		display: block;
		width: auto;
	}

	.pc-specs__table tr {
		padding: 12px 0;
		border-bottom: 1px solid var(--pc-border);
	}

	.pc-specs__table th,
	.pc-specs__table td {
		font-size: 14px;
		padding: 0;
		border: 0;
		text-align: left;
	}

	.pc-specs__table td {
		color: var(--pc-text);
		margin-top: 10px;
	}

	/* The DN matrix keeps its shape and gains the size picker instead. */
	.pc-dn__picker {
		display: block;
	}

	.pc-variants__table thead {
		display: none;
	}

	.pc-variants__table tbody tr {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.pc-variants__table tbody th,
	.pc-variants__table tbody td {
		width: 100%;
	}

	.pc-variants__table tbody th {
		border-bottom: none;
		padding: 14px 0 5px;
	}

	.pc-variants__table tbody td {
		padding: 0 10px 20px;
		font-size: 16px;
	}

	.pc-siblings__link--next .pc-siblings__title {
		font-size: 15px;
	}
}

/* ------------------------------------------------- standards reference */

/* The theme keeps the page title outside the content wrapper, so the reading
   width is set on its column — narrowing .pc-standards alone would leave the
   heading at full width. nik-standards-page comes from a body_class filter. */
.nik-standards-page .consalt-single-blog-details {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.nik-standards-page .consalt-single-blog-details .consalt-single-blog-title h2 {
	font-size: 36px;
}

@media (max-width: 1024px) {
	.nik-standards-page .consalt-single-blog-details .consalt-single-blog-title h2 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nik-standards-page .consalt-single-blog-details .consalt-single-blog-title h2 {
		font-size: 24px;
	}
}

.pc-standards {
	padding: 8px 0 48px;
}

.pc-standards__intro {
	margin: 0 0 80px;
	font-size: 17px;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.pc-standards__intro {
		margin: 0 0 60px;
	}
}

@media (max-width: 767px) {
	.pc-standards__intro {
		margin: 0 0 40px;
	}
}

.pc-standards__group + .pc-standards__group {
	margin-top: 40px;
}

.pc-standards__title {
	margin: 0 0 20px !important;
	font-size: 20px;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-standards__list {
	display: grid;
	gap: 12px;
}

.pc-standards__item {
	display: flex;
	gap: 16px;
	padding: 20px 24px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: var(--pc-bg);
}

.pc-standards__icon {
	flex: 0 0 auto;
	color: var(--pc-navy);
}

.pc-standards__icon svg {
	width: 26px;
	height: 26px;
}

/* Same colour split as the badges: international marks read as the argument
   for foreign buyers, so they carry the accent rather than the navy. */
.pc-standards__group--international .pc-standards__icon {
	color: var(--pc-red);
}

.pc-standards__name {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 600;
	color: var(--pc-dark);
}

.pc-standards__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.pc-standards__link {
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--pc-red);
}

.pc-standards__link:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
	.pc-standards__item {
		flex-direction: column;
		gap: 10px;
		padding: 16px;
	}
}

/* --------------------------------------------------------- contact modal */

.pc-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.pc-modal[hidden] {
	display: none;
}

.pc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 15, 29, .55);
}

.pc-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 32px;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(2, 15, 29, .28);
}

.pc-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--pc-text);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.pc-modal__close:hover,
.pc-modal__close:focus-visible {
	background: var(--pc-border);
	color: var(--pc-dark);
}

.pc-modal__title {
	margin: 0 0 6px;
	padding-right: 32px;
	font-size: 22px;
	font-weight: 700;
	color: var(--pc-dark);
}

/* The product name is the whole point of opening the form from a card, so it
   is stated rather than left implicit in the hidden page-title smart tag. */
.pc-modal__product {
	margin: 0 0 20px;
	font-size: 15px;
	color: var(--pc-text);
}

.pc-modal__product strong {
	color: var(--pc-dark);
}

.pc-modal__form .wpforms-container {
	margin: 0;
}

.pc-modal__form .wpforms-field {
	padding: 0 0 14px;
}

/* Prevents the page behind the dialog from scrolling with it. */
body.pc-modal-open {
	overflow: hidden;
}

@media (max-width: 575px) {
	.pc-modal__dialog {
		padding: 24px 18px;
	}
}

/* ------------------------------------------------------------ loop tiles */

/* The theme drops the tiles straight into a Bootstrap .row, so their width
   comes from the flex basis below rather than from column classes. Three per
   row next to the 280px filter column, four once it drops away. */
.pc-tile {
	display: flex;
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	padding: 0 12px 24px;
	list-style: none;
}

.pc-tile__link {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px;
	border: 1px solid var(--pc-border);
	border-radius: 0px;
	background: #fff;
	text-align: center;
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pc-tile__link:hover {
	border-color: var(--pc-muted);
	box-shadow: 0 14px 30px rgba(2, 15, 29, .08);
	transform: translateY(-2px);
}

.pc-tile__media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	margin-bottom: 16px;
}

.pc-tile__media img,
.pc-tile__img {
	max-width: 100%;
	max-height: 190px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pc-tile__body {
	display: block;
	margin-top: auto;
}

.pc-tile__title {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--pc-dark);
}

.pc-tile__subtitle {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--pc-text);
}

@media (max-width: 991px) {
	.pc-tile {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575px) {
	.pc-tile {
		flex: 0 0 100%;
		max-width: 100%;
	}
}
