:root {
	--pvf-blue: #1554a4;
	--pvf-blue-dark: #0c3266;
	--pvf-yellow: #f8c514;
	--pvf-orange: #f28c00;
	--pvf-bg: #f2f3f5;
	--pvf-card: #ffffff;
	--pvf-text: #202936;
	--pvf-muted: #667085;
	--pvf-border: #d9dee5;
	--pvf-shadow: 0 8px 22px rgba(12, 50, 102, 0.08);
	--pvf-font: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pvf-bg);
	color: var(--pvf-text);
	font-family: var(--pvf-font);
	font-size: 15px;
	line-height: 1.45;
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

.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;
}

.pvf-container {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--pvf-card);
	box-shadow: 0 2px 10px rgba(12, 50, 102, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--pvf-text);
	text-decoration: none;
}

.site-branding__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--pvf-yellow);
	color: var(--pvf-blue-dark);
}

.site-branding__mark svg,
.site-actions svg,
.site-search svg,
.site-navigation__toggle svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.site-title {
	display: block;
	width: min-content;
	min-width: 116px;
	color: var(--pvf-blue-dark);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.1;
}

.custom-logo {
	display: block;
	width: auto;
	max-height: 52px;
}

.site-search {
	display: flex;
	min-width: 0;
	border: 2px solid var(--pvf-blue);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.site-search input {
	width: 100%;
	min-width: 0;
	height: 44px;
	border: 0;
	padding: 0 14px;
	color: var(--pvf-text);
	outline: 0;
}

.site-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 116px;
	border: 0;
	background: var(--pvf-blue);
	color: #fff;
	font-weight: 800;
}

.site-search button:hover,
.site-search button:focus {
	background: var(--pvf-blue-dark);
}

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

.site-actions a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pvf-blue-dark);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.site-actions a:hover,
.site-actions a:focus {
	color: var(--pvf-blue);
}

.site-navigation {
	background: var(--pvf-blue);
	color: #fff;
}

.site-navigation__inner {
	display: flex;
	align-items: stretch;
	min-height: 44px;
}

.site-navigation__toggle {
	display: none;
}

.site-navigation__menu {
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu a {
	display: flex;
	align-items: center;
	height: 44px;
	padding: 0 14px;
	color: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.site-navigation__menu a:hover,
.site-navigation__menu a:focus {
	background: var(--pvf-blue-dark);
}

.site-navigation__featured a {
	background: var(--pvf-yellow);
	color: var(--pvf-blue-dark);
}

.site-main {
	padding-bottom: 24px;
}

.pvf-hero {
	padding: 16px 0 10px;
}

.pvf-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 14px;
}

.pvf-hero__side {
	display: grid;
	gap: 14px;
}

.pvf-hero-card {
	position: relative;
	display: flex;
	min-height: 178px;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--pvf-shadow);
}

.pvf-hero-card--main {
	align-items: center;
	min-height: 370px;
	padding: 32px;
	background: linear-gradient(110deg, #0c3266 0%, #1554a4 52%, #2d75d3 100%);
	color: #fff;
}

.pvf-hero-card--small {
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 22px;
	background: linear-gradient(135deg, #ffffff 0%, #e8f0fb 100%);
	color: var(--pvf-blue-dark);
}

.pvf-hero-card--orange {
	background: linear-gradient(135deg, #fff4df 0%, #ffd899 100%);
}

.pvf-hero-card__content {
	position: relative;
	z-index: 1;
	max-width: 500px;
}

.pvf-eyebrow {
	margin: 0 0 9px;
	color: var(--pvf-yellow);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pvf-hero h1 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.04;
}

.pvf-hero h2 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	line-height: 1.12;
}

.pvf-hero p {
	margin: 0 0 14px;
	max-width: 420px;
	color: inherit;
	font-size: 1rem;
}

.pvf-hero strong {
	display: block;
	margin-bottom: 18px;
	color: var(--pvf-yellow);
	font-size: 1.35rem;
}

.pvf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 0;
	border-radius: 6px;
	background: var(--pvf-yellow);
	color: var(--pvf-blue-dark);
	font-weight: 900;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.pvf-button:hover,
.pvf-button:focus {
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(12, 50, 102, 0.18);
}

.pvf-button--light {
	background: #fff;
	color: var(--pvf-blue-dark);
}

.pvf-tool-visual {
	position: relative;
	flex: 0 0 112px;
	height: 92px;
	border-radius: 18px;
	background: rgba(21, 84, 164, 0.16);
}

.pvf-tool-visual::before,
.pvf-tool-visual::after,
.pvf-product-card__image span,
.pvf-product-card__image span::before,
.pvf-product-card__image span::after {
	position: absolute;
	display: block;
	content: "";
}

.pvf-tool-visual--large {
	position: absolute;
	right: 40px;
	bottom: 38px;
	width: 250px;
	height: 165px;
	background: rgba(255, 255, 255, 0.12);
}

.pvf-tool-visual--large::before {
	right: 32px;
	bottom: 48px;
	width: 160px;
	height: 52px;
	border-radius: 8px 22px 22px 8px;
	background: var(--pvf-yellow);
	transform: rotate(-12deg);
}

.pvf-tool-visual--large::after {
	right: 120px;
	bottom: 18px;
	width: 54px;
	height: 78px;
	border-radius: 8px;
	background: var(--pvf-orange);
	transform: rotate(-12deg);
}

.pvf-tool-visual--battery::before {
	left: 24px;
	top: 26px;
	width: 62px;
	height: 40px;
	border-radius: 7px;
	background: var(--pvf-blue);
}

.pvf-tool-visual--battery::after {
	right: 16px;
	top: 38px;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: var(--pvf-yellow);
}

.pvf-tool-visual--tag::before {
	left: 28px;
	top: 24px;
	width: 58px;
	height: 58px;
	border-radius: 10px 10px 10px 2px;
	background: var(--pvf-orange);
	transform: rotate(45deg);
}

.pvf-brands {
	padding: 6px 0 12px;
}

.pvf-brands__card {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 36px;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 8px;
	background: var(--pvf-card);
	box-shadow: var(--pvf-shadow);
}

.pvf-brands__list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	text-align: center;
}

.pvf-brands__list span {
	padding: 11px 8px;
	border: 1px solid var(--pvf-border);
	border-radius: 6px;
	color: var(--pvf-blue-dark);
	font-weight: 900;
	background: #fbfcfe;
}

.pvf-brands__arrow {
	width: 36px;
	height: 36px;
	border: 1px solid var(--pvf-border);
	border-radius: 50%;
	background: #fff;
	color: var(--pvf-blue);
	font-size: 1.5rem;
	line-height: 1;
}

.pvf-catalog {
	display: grid;
	gap: 14px;
}

.pvf-product-section {
	scroll-margin-top: 132px;
}

.pvf-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 8px 8px 0 0;
	background: var(--pvf-blue);
	color: #fff;
}

.pvf-section-heading h2 {
	margin: 0;
	font-size: 1.05rem;
}

.pvf-section-heading__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	font-size: 0.84rem;
}

.pvf-section-heading__links a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.pvf-section-heading__links a:hover,
.pvf-section-heading__links a:focus,
.pvf-section-heading__links .pvf-section-heading__all {
	color: var(--pvf-yellow);
}

.pvf-section-body {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	min-height: 300px;
	border: 1px solid var(--pvf-border);
	border-top: 0;
	border-radius: 0 0 8px 8px;
	background: var(--pvf-card);
	box-shadow: var(--pvf-shadow);
}

.pvf-section-promo {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	min-height: 100%;
	padding: 22px;
	background: linear-gradient(145deg, var(--pvf-blue-dark), var(--pvf-blue));
	color: #fff;
}

.pvf-section-promo span {
	align-self: flex-start;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--pvf-yellow);
	color: var(--pvf-blue-dark);
	font-size: 0.78rem;
	font-weight: 900;
}

.pvf-section-promo h3 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.12;
}

.pvf-section-promo p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
}

.pvf-section-promo a {
	color: var(--pvf-yellow);
	font-weight: 900;
	text-decoration: none;
}

.pvf-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pvf-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-left: 1px solid var(--pvf-border);
	background: #fff;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.pvf-product-card:hover,
.pvf-product-card:focus-within {
	z-index: 1;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(12, 50, 102, 0.12);
}

.pvf-product-card__image {
	position: relative;
	height: 138px;
	margin: 14px 14px 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #f6f8fb 0%, #e9eef5 100%);
	overflow: hidden;
}

.pvf-product-card__image span {
	left: 50%;
	top: 50%;
	width: 82px;
	height: 44px;
	border-radius: 8px 22px 22px 8px;
	background: var(--pvf-blue);
	transform: translate(-50%, -50%) rotate(-12deg);
}

.pvf-product-card__image span::before {
	left: 18px;
	top: 36px;
	width: 30px;
	height: 42px;
	border-radius: 6px;
	background: var(--pvf-orange);
}

.pvf-product-card__image span::after {
	right: -24px;
	top: 14px;
	width: 34px;
	height: 12px;
	border-radius: 999px;
	background: var(--pvf-yellow);
}

.pvf-product-card__image--box span {
	width: 86px;
	height: 54px;
	border-radius: 8px;
	transform: translate(-50%, -50%);
}

.pvf-product-card__image--box span::before {
	left: 14px;
	top: -12px;
	width: 58px;
	height: 18px;
	border-radius: 8px 8px 0 0;
}

.pvf-product-card__image--pipe span,
.pvf-product-card__image--valve span,
.pvf-product-card__image--union span,
.pvf-product-card__image--elbow span {
	width: 96px;
	height: 22px;
	border-radius: 999px;
	background: var(--pvf-blue);
}

.pvf-product-card__image--helmet span,
.pvf-product-card__image--gloves span,
.pvf-product-card__image--glasses span,
.pvf-product-card__image--vest span {
	width: 78px;
	height: 50px;
	border-radius: 40px 40px 12px 12px;
	background: var(--pvf-yellow);
}

.pvf-product-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 12px 14px 14px;
}

.pvf-product-card__badge {
	align-self: flex-start;
	margin-bottom: 7px;
	padding: 3px 7px;
	border-radius: 999px;
	background: #fff0d7;
	color: #a34f00;
	font-size: 0.73rem;
	font-weight: 900;
}

.pvf-product-card h3 {
	margin: 0 0 6px;
	font-size: 0.98rem;
	line-height: 1.25;
}

.pvf-product-card p {
	margin: 0 0 9px;
	color: var(--pvf-muted);
	font-size: 0.85rem;
}

.pvf-product-card strong {
	margin-top: auto;
	color: var(--pvf-blue-dark);
	font-size: 1.1rem;
}

.pvf-add-to-order {
	width: 100%;
	min-height: 39px;
	margin-top: 11px;
	border: 0;
	border-radius: 6px;
	background: var(--pvf-blue);
	color: #fff;
	font-weight: 900;
}

.pvf-add-to-order:hover,
.pvf-add-to-order:focus {
	background: var(--pvf-blue-dark);
}

.pvf-promo-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px;
	border-radius: 8px;
	background: linear-gradient(110deg, var(--pvf-orange), #ffb238);
	color: #fff;
	box-shadow: var(--pvf-shadow);
}

.pvf-promo-banner--compact,
.pvf-promo-banner--compact-dark {
	width: 100%;
	min-height: 170px;
}

.pvf-promo-banner--compact-dark {
	background: linear-gradient(110deg, var(--pvf-blue-dark), var(--pvf-blue));
}

.pvf-promo-banner h2 {
	margin: 0 0 6px;
	font-size: 1.45rem;
	line-height: 1.15;
}

.pvf-promo-banner p {
	margin: 0;
	max-width: 580px;
	color: rgba(255, 255, 255, 0.88);
}

.pvf-bottom-promos {
	padding-top: 14px;
}

.pvf-bottom-promos__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.site-footer {
	margin-top: 24px;
	background: #071f40;
	color: #dce7f5;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	padding: 34px 0;
}

.site-footer__column {
	display: grid;
	align-content: start;
	gap: 9px;
}

.site-footer__column h2 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 1rem;
}

.site-footer__column a,
.site-footer__column span {
	color: #dce7f5;
	font-size: 0.92rem;
	text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	color: var(--pvf-yellow);
}

.site-footer__bottom {
	padding: 14px 0;
	background: var(--pvf-blue);
	color: #fff;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.9rem;
}

.pvf-toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	max-width: min(340px, calc(100% - 40px));
	padding: 14px 16px;
	border-radius: 8px;
	background: var(--pvf-blue-dark);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.pvf-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 980px) {
	.site-header {
		position: static;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-search {
		grid-column: 1 / -1;
		order: 3;
	}

	.site-actions {
		justify-content: flex-end;
	}

	.site-actions a span {
		display: none;
	}

	.pvf-hero__grid,
	.pvf-section-body {
		grid-template-columns: 1fr;
	}

	.pvf-hero-card--main {
		min-height: 310px;
	}

	.pvf-hero__side,
	.pvf-product-grid,
	.pvf-bottom-promos__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pvf-section-promo {
		min-height: 190px;
	}

	.pvf-product-card {
		border-top: 1px solid var(--pvf-border);
		border-left: 0;
	}

	.pvf-brands__list {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 760px) {
	.pvf-container {
		width: min(100% - 24px, 1200px);
	}

	.site-navigation__inner {
		display: block;
		min-height: 0;
	}

	.site-navigation__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 46px;
		border: 0;
		background: transparent;
		color: #fff;
		font-weight: 900;
	}

	.site-navigation__menu {
		display: none;
		padding: 0 0 10px;
	}

	.site-navigation.is-open .site-navigation__menu {
		display: grid;
	}

	.site-navigation__menu a {
		height: auto;
		min-height: 42px;
		padding: 10px 12px;
	}

	.site-navigation__featured a {
		border-radius: 6px;
	}

	.pvf-hero {
		padding-top: 12px;
	}

	.pvf-hero__side,
	.pvf-bottom-promos__grid {
		grid-template-columns: 1fr;
	}

	.pvf-hero-card--main {
		min-height: 0;
		padding: 26px 20px 150px;
	}

	.pvf-tool-visual--large {
		right: 12px;
		bottom: 14px;
		width: 200px;
		height: 120px;
	}

	.pvf-section-heading {
		align-items: flex-start;
		flex-direction: column;
		padding: 12px 14px;
	}

	.pvf-section-heading__links {
		justify-content: flex-start;
	}

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

	.pvf-promo-banner {
		align-items: flex-start;
		flex-direction: column;
		padding: 20px;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 14px;
	}

	.site-header__inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.site-actions {
		width: 100%;
		justify-content: space-between;
	}

	.site-actions a span {
		display: inline;
	}

	.site-search button {
		min-width: 52px;
	}

	.site-search button span {
		display: none;
	}

	.pvf-tool-visual {
		display: none;
	}

	.pvf-hero-card--main {
		padding-bottom: 24px;
	}

	.pvf-brands__card {
		grid-template-columns: 1fr;
	}

	.pvf-brands__arrow {
		display: none;
	}

	.pvf-brands__list {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}
