@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/gilroy-light.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/gilroy-regular.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/gilroy-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/gilroy-medium.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/gilroy-semi-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/gilroy-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: italic;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/gilroy-light-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: italic;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/gilroy-bold-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: italic;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/gilroy-extra-bold-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/gilroy-extra-bold.woff2") format("woff2");
}

@font-face {
	font-family: "Gilroy";
	font-style: italic;
	font-weight: 900;
	font-display: swap;
	src: url("../fonts/gilroy-black-italic.woff2") format("woff2");
}

@font-face {
	font-family: "PadGoRound Font Awesome";
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("../fonts/fontawesome-solid.woff2") format("woff2");
}

:root {
	--pgr-color-ink: #212832;
	--pgr-color-text: #5a5a5a;
	--pgr-color-blue: #0088bf;
	--pgr-color-blue-dark: #0075aa;
	--pgr-color-blue-light: #c8e4f1;
	--pgr-color-surface: #f3f4f9;
	--pgr-color-white: #fff;
	--pgr-color-border: #dde0e6;
	--pgr-font: "Gilroy", Arial, sans-serif;
	--pgr-container: 1560px;
	--pgr-gutter: clamp(20px, 4vw, 56px);
	--pgr-radius: 4px;
	--pgr-transition: 180ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pgr-color-white);
	color: var(--pgr-color-ink);
	font-family: var(--pgr-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-is-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

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

a {
	color: var(--pgr-color-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--pgr-color-blue-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block: 0 0.75em;
	color: var(--pgr-color-ink);
	font-weight: 700;
	line-height: 1.1;
}

p {
	margin-block: 0 1em;
}

.site-container {
	width: min(100% - (2 * var(--pgr-gutter)), var(--pgr-container));
	margin-inline: auto;
}

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

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-160%);
	border-radius: var(--pgr-radius);
	background: var(--pgr-color-ink);
	color: var(--pgr-color-white);
	font-weight: 700;
	transition: transform var(--pgr-transition);
}

.skip-link:focus {
	transform: translateY(0);
}

/* Header */

.site-header {
	position: relative;
	z-index: 100;
	background: var(--pgr-color-white);
	box-shadow: 0 1px 0 rgb(33 40 50 / 7%);
}

.header-inner {
	display: flex;
	min-height: clamp(82px, 7.75vw, 124px);
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 72px);
}

.site-logo {
	display: inline-flex;
	flex: 0 1 300px;
	align-items: center;
}

.site-logo__image,
.custom-logo {
	width: clamp(190px, 21.5vw, 300px);
	height: auto;
}

.header-actions {
	display: flex;
	align-self: stretch;
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
}

.pgr-header-cart {
	position: relative;
	z-index: 101;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 44px;
	color: var(--pgr-color-ink);
}

.pgr-header-cart .ec-cart-widget {
	font-family: var(--pgr-font);
}

.pgr-header-cart .ec-minicart {
	min-width: 44px;
	min-height: 44px;
}

.primary-navigation,
.primary-menu,
.primary-menu > li {
	height: 100%;
}

.primary-menu,
.primary-menu ul,
.footer-menu,
.social-menu,
.legal-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: stretch;
	gap: 0;
}

.primary-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.primary-menu > li > a {
	display: flex;
	align-items: center;
	padding-inline: clamp(13px, 1.6vw, 31px);
	color: #2d2f2f;
	font-size: clamp(15px, 1.2vw, 19px);
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color var(--pgr-transition),
		background-color var(--pgr-transition);
}

.primary-menu > li:hover > a,
.primary-menu > li > a:focus-visible {
	color: var(--pgr-color-blue);
}

.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-ancestor > a,
.primary-menu > .current_page_item > a {
	background: var(--pgr-color-blue);
	color: var(--pgr-color-white);
	font-weight: 700;
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	padding-block: 10px;
	visibility: hidden;
	opacity: 0;
	background: var(--pgr-color-white);
	box-shadow: 0 16px 35px rgb(33 40 50 / 14%);
	transform: translateY(8px);
	transition:
		opacity var(--pgr-transition),
		transform var(--pgr-transition),
		visibility var(--pgr-transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--pgr-color-ink);
	text-decoration: none;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
	background: var(--pgr-color-surface);
	color: var(--pgr-color-blue);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: var(--pgr-color-ink);
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	margin-block: 5px;
	background: currentcolor;
	transition:
		transform var(--pgr-transition),
		opacity var(--pgr-transition);
}

.nav-is-open .menu-toggle > span:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.nav-is-open .menu-toggle > span:nth-of-type(3) {
	opacity: 0;
}

.nav-is-open .menu-toggle > span:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Page-builder and regular content */

.site-content {
	min-height: 35vh;
}

.page-entry > .entry-content,
.content-list,
.woocommerce-page .site-content > .site-container {
	padding-block: clamp(48px, 6vw, 96px);
}

.page-entry > :not(.panel-layout):not(.siteorigin-panels) {
	width: min(100% - (2 * var(--pgr-gutter)), 1040px);
	margin-inline: auto;
}

.page-entry:not(:has(> .panel-layout)):not(:has(> .siteorigin-panels)) {
	padding-block: clamp(56px, 6vw, 96px);
}

.page-entry > h1:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(40px, 3vw, 56px);
}

.page-entry > h2:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(32px, 2.5vw, 44px);
}

.page-entry > h3:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(26px, 2vw, 34px);
}

.page-entry > h4:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(22px, 1.6vw, 28px);
}

.page-entry > h5:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(19px, 1.3vw, 23px);
}

.page-entry > h6:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(17px, 1.1vw, 20px);
}

.page-entry > p:not(.panel-layout):not(.siteorigin-panels) {
	font-size: clamp(17px, 1.1vw, 19px);
	line-height: 1.65;
}

.panel-grid {
	margin-bottom: 0 !important;
}

.content-list {
	display: grid;
	gap: 40px;
}

.content-card {
	padding-bottom: 36px;
	border-bottom: 1px solid var(--pgr-color-border);
}

.content-card__title a {
	color: inherit;
	text-decoration: none;
}

.button,
button,
input[type="button"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 0;
	border-radius: var(--pgr-radius);
	background: var(--pgr-color-blue);
	color: var(--pgr-color-white);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color var(--pgr-transition),
		transform var(--pgr-transition);
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--pgr-color-blue-dark);
	color: var(--pgr-color-white);
}

.button:active,
button:active,
input[type="button"]:active,
input[type="submit"]:active {
	transform: translateY(1px);
}

/* Footer */

/* Recreated content pages */

.pgr-legacy,
.pgr-page-shell {
	color: var(--pgr-color-ink);
}

.pgr-page-shell {
	display: grid;
	grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
	gap: clamp(42px, 5vw, 88px);
	padding-block: clamp(48px, 6vw, 92px);
}

.pgr-page-main,
.pgr-single-column {
	min-width: 0;
}

.pgr-single-column {
	max-width: 1240px;
	padding-block: clamp(48px, 6vw, 92px);
}

.pgr-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-bottom: clamp(28px, 3vw, 44px);
	color: #7b818b;
	font-size: 14px;
	font-weight: 500;
}

.pgr-breadcrumbs a {
	color: var(--pgr-color-blue);
	text-decoration: none;
}

.pgr-eyebrow {
	margin-bottom: 10px;
	color: var(--pgr-color-blue);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pgr-page-header {
	max-width: 920px;
	margin-bottom: clamp(34px, 4vw, 58px);
}

.pgr-page-header h1,
.pgr-title-band h1 {
	margin-bottom: 18px;
	font-size: clamp(42px, 5vw, 76px);
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.96;
}

.pgr-page-header h2 {
	margin-bottom: 20px;
	color: var(--pgr-color-ink);
	font-size: clamp(24px, 2.3vw, 38px);
	font-weight: 600;
	line-height: 1.2;
}

.pgr-page-header > p:not(.pgr-eyebrow) {
	max-width: 820px;
	color: var(--pgr-color-text);
	font-size: clamp(17px, 1.25vw, 20px);
	line-height: 1.7;
}

.pgr-title-band {
	padding-block: clamp(48px, 6vw, 88px);
	background: var(--pgr-color-blue-light);
}

.pgr-title-band .pgr-breadcrumbs {
	margin-bottom: 28px;
}

.pgr-title-band h1 {
	margin: 0;
}

.pgr-sidebar {
	align-self: start;
	overflow: hidden;
	border-radius: 4px;
	background: var(--pgr-color-white);
	box-shadow: 0 14px 42px rgb(33 40 50 / 10%);
}

.pgr-sidebar h2 {
	padding: 18px 22px;
	margin: 0;
	background: var(--pgr-color-blue);
	color: var(--pgr-color-white);
	font-size: 20px;
	font-weight: 800;
}

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

.pgr-sidebar li + li {
	border-top: 1px solid var(--pgr-color-border);
}

.pgr-sidebar a {
	display: block;
	padding: 15px 22px;
	color: var(--pgr-color-ink);
	font-weight: 600;
	text-decoration: none;
}

.pgr-sidebar a:hover,
.pgr-sidebar .is-active a {
	background: var(--pgr-color-surface);
	color: var(--pgr-color-blue);
}

.pgr-prose {
	color: var(--pgr-color-text);
	font-size: clamp(17px, 1.15vw, 19px);
	line-height: 1.7;
}

.pgr-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
	align-items: center;
	gap: clamp(34px, 5vw, 72px);
	margin-bottom: clamp(50px, 6vw, 86px);
}

.pgr-intro-grid > img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 18px 55px rgb(33 40 50 / 13%);
}

.pgr-intro-grid--portrait {
	align-items: start;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
}

.pgr-subheading,
.pgr-collection-block > h2 {
	margin-bottom: 28px;
	font-size: clamp(28px, 3vw, 44px);
	font-style: italic;
	font-weight: 800;
}

.pgr-check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
	padding: 0;
	margin: 0 0 clamp(48px, 6vw, 82px);
	list-style: none;
}

.pgr-check-grid li {
	position: relative;
	padding: 20px 22px 20px 54px;
	border: 1px solid var(--pgr-color-border);
	border-radius: 4px;
	background: var(--pgr-color-white);
	font-weight: 600;
}

.pgr-check-grid li::before {
	position: absolute;
	top: 18px;
	left: 20px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: var(--pgr-color-blue-light);
	color: var(--pgr-color-blue);
	content: "\2713";
	font-size: 13px;
	font-weight: 800;
}

.pgr-action-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-block: clamp(38px, 5vw, 72px);
}

.pgr-action-grid a {
	display: flex;
	min-height: 155px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	border: 1px solid var(--pgr-color-border);
	border-radius: 5px;
	color: var(--pgr-color-ink);
	text-decoration: none;
	transition: border-color var(--pgr-transition), transform var(--pgr-transition), box-shadow var(--pgr-transition);
}

.pgr-action-grid a:hover {
	border-color: var(--pgr-color-blue);
	box-shadow: 0 14px 35px rgb(33 40 50 / 10%);
	transform: translateY(-3px);
}

.pgr-action-grid__icon {
	margin-bottom: auto;
	color: var(--pgr-color-blue);
	font-size: 30px;
}

.pgr-action-grid strong {
	font-size: 21px;
}

.pgr-action-grid small {
	color: var(--pgr-color-text);
}

.pgr-wide-image {
	margin: 0 0 clamp(48px, 6vw, 82px);
	overflow: hidden;
	border-radius: 6px;
	background: var(--pgr-color-surface);
}

.pgr-wide-image img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.pgr-callout {
	padding: clamp(30px, 4vw, 54px);
	margin-top: clamp(48px, 6vw, 82px);
	border-radius: 6px;
	background: var(--pgr-color-blue-light);
}

.pgr-callout blockquote {
	max-width: 880px;
	margin: 0 0 20px;
	font-size: clamp(24px, 2.4vw, 36px);
	font-style: italic;
	font-weight: 700;
	line-height: 1.25;
}

.pgr-text-link {
	color: var(--pgr-color-blue);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.pgr-callout--image {
	display: grid;
	grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: clamp(30px, 5vw, 70px);
}

.pgr-callout--image img {
	width: 100%;
	border-radius: 4px;
}

.pgr-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 42px);
}

.pgr-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(24px, 3vw, 38px);
	border-radius: 18px;
	background: var(--pgr-color-white);
	box-shadow: 0 16px 50px rgb(33 40 50 / 10%);
}

.pgr-product-card__image {
	display: grid;
	width: 100%;
	aspect-ratio: 1 / .8;
	place-items: center;
	margin-bottom: 24px;
}

.pgr-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pgr-product-card h2 {
	margin-bottom: 10px;
	font-size: clamp(24px, 2vw, 32px);
}

.pgr-product-card h2 a {
	color: inherit;
	text-decoration: none;
}

.pgr-product-card p {
	color: var(--pgr-color-text);
}

.pgr-product-card__price {
	margin: auto 0 18px;
	color: var(--pgr-color-blue);
	font-size: 24px;
	font-weight: 800;
}

.pgr-product-detail {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(42px, 7vw, 100px);
	margin-bottom: clamp(58px, 7vw, 100px);
}

.pgr-product-detail__media {
	padding: clamp(24px, 4vw, 54px);
	border-radius: 18px;
	background: var(--pgr-color-white);
	box-shadow: 0 18px 55px rgb(33 40 50 / 12%);
}

.pgr-product-detail__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.pgr-product-detail__content h1 {
	margin-bottom: 20px;
	font-size: clamp(42px, 4.5vw, 70px);
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: .98;
}

.pgr-product-detail__lead {
	color: var(--pgr-color-ink);
	font-size: clamp(20px, 1.6vw, 26px);
	font-weight: 600;
	line-height: 1.4;
}

.pgr-product-detail__price {
	margin-block: 24px;
	color: var(--pgr-color-blue);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 800;
}

.pgr-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.pgr-product-features {
	margin-bottom: 30px;
}

.pgr-accessory-icon {
	width: 100%;
	aspect-ratio: 1.5;
	margin-bottom: 24px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--pgr-color-blue-light), var(--pgr-color-surface));
}

.pgr-collection-block + .pgr-collection-block {
	margin-top: clamp(64px, 8vw, 110px);
}

.pgr-mission-card,
.pgr-size-card,
.pgr-spec-grid section,
.pgr-policy-grid section,
.pgr-contact-note {
	padding: clamp(28px, 3vw, 42px);
	border-radius: 6px;
	background: var(--pgr-color-surface);
}

.pgr-mission-card {
	display: flex;
	flex-direction: column;
}

.pgr-mission-card strong {
	font-size: 22px;
}

.pgr-mission-card span {
	color: var(--pgr-color-blue);
	font-weight: 700;
}

.pgr-mission-card blockquote {
	padding-top: 28px;
	margin: 28px 0 0;
	border-top: 1px solid var(--pgr-color-border);
	font-size: 20px;
	font-style: italic;
	line-height: 1.55;
}

.pgr-size-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 38px);
}

.pgr-size-card--blue {
	background: var(--pgr-color-blue-light);
}

.pgr-size-card__measure {
	color: var(--pgr-color-blue);
	font-size: clamp(25px, 2.4vw, 36px);
	font-weight: 800;
	line-height: 1.1;
}

.pgr-size-card__measure small {
	display: block;
	margin-top: 10px;
	color: var(--pgr-color-text);
	font-size: 15px;
	font-weight: 600;
}

.pgr-size-card ul,
.pgr-spec-grid ul {
	padding-left: 20px;
	margin-block: 24px 30px;
	color: var(--pgr-color-text);
}

.pgr-spec-grid,
.pgr-policy-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pgr-policy-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 34px;
}

.pgr-accordion {
	max-width: 980px;
}

.pgr-accordion details {
	border-top: 1px solid var(--pgr-color-border);
}

.pgr-accordion details:last-child {
	border-bottom: 1px solid var(--pgr-color-border);
}

.pgr-accordion summary {
	position: relative;
	padding: 24px 54px 24px 0;
	cursor: pointer;
	font-size: clamp(19px, 1.5vw, 23px);
	font-weight: 700;
	list-style: none;
}

.pgr-accordion summary::-webkit-details-marker {
	display: none;
}

.pgr-accordion summary::after {
	position: absolute;
	top: 22px;
	right: 4px;
	color: var(--pgr-color-blue);
	content: "+";
	font-size: 28px;
}

.pgr-accordion details[open] summary::after {
	content: "-";
}

.pgr-accordion details > div {
	max-width: 840px;
	padding: 0 54px 20px 0;
	color: var(--pgr-color-text);
	font-size: 17px;
	line-height: 1.7;
}

.pgr-video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 54px);
}

.pgr-video-grid article {
	color: var(--pgr-color-text);
	font-size: 18px;
	font-weight: 600;
}

.pgr-video {
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 18px;
	overflow: hidden;
	border-radius: 6px;
	background: var(--pgr-color-ink);
}

.pgr-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pgr-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
	gap: clamp(42px, 7vw, 100px);
	align-items: start;
}

.pgr-contact-form {
	display: grid;
	gap: 20px;
	padding: clamp(28px, 4vw, 48px);
	border-radius: 8px;
	background: var(--pgr-color-surface);
}

.pgr-contact-form label {
	display: grid;
	gap: 8px;
	font-weight: 700;
}

.pgr-contact-form input,
.pgr-contact-form textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--pgr-color-border);
	border-radius: 4px;
	background: var(--pgr-color-white);
	color: var(--pgr-color-ink);
}

.pgr-contact-form input:focus,
.pgr-contact-form textarea:focus {
	border-color: var(--pgr-color-blue);
	outline: 3px solid rgb(0 136 191 / 14%);
}

.pgr-form-status {
	padding: 14px 16px;
	border-radius: 4px;
}

.pgr-form-status--success {
	background: #dff4e6;
	color: #176b39;
}

.pgr-form-status--error {
	background: #fee5e5;
	color: #9a2424;
}

.pgr-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
	gap: clamp(42px, 6vw, 84px);
}

.pgr-blog-list {
	display: grid;
	gap: 34px;
}

.pgr-blog-card {
	display: grid;
	grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
	gap: 28px;
	padding-bottom: 34px;
	border-bottom: 1px solid var(--pgr-color-border);
}

.pgr-blog-card--fallback {
	grid-template-columns: 1fr;
}

.pgr-blog-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 4px;
}

.pgr-blog-card time {
	color: var(--pgr-color-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.pgr-blog-card h2 {
	margin: 8px 0 12px;
	font-size: clamp(24px, 2.3vw, 34px);
}

.pgr-blog-card h2 a {
	color: inherit;
	text-decoration: none;
}

.pgr-blog-sidebar {
	display: flex;
	align-self: start;
	flex-direction: column;
	gap: 2px;
	padding: 26px;
	background: var(--pgr-color-surface);
}

.pgr-blog-sidebar a {
	padding-block: 10px;
	border-bottom: 1px solid var(--pgr-color-border);
	color: var(--pgr-color-ink);
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 900px) {
	.pgr-page-shell {
		grid-template-columns: 1fr;
	}

	.pgr-sidebar {
		display: none;
	}

	.pgr-intro-grid,
	.pgr-contact-grid,
	.pgr-blog-layout,
	.pgr-product-detail {
		grid-template-columns: 1fr;
	}

	.pgr-action-grid,
	.pgr-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.pgr-page-header h1,
	.pgr-title-band h1 {
		font-size: clamp(38px, 13vw, 56px);
	}

	.pgr-check-grid,
	.pgr-action-grid,
	.pgr-product-grid,
	.pgr-size-grid,
	.pgr-spec-grid,
	.pgr-policy-grid,
	.pgr-video-grid,
	.pgr-callout--image {
		grid-template-columns: 1fr;
	}

	.pgr-action-grid a {
		min-height: 125px;
	}

	.pgr-contact-grid {
		gap: 30px;
	}

	.pgr-contact-form {
		padding: 22px;
	}

	.pgr-blog-card {
		grid-template-columns: 1fr;
	}
}

.site-footer {
	background: var(--pgr-color-surface);
	color: var(--pgr-color-text);
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(240px, 1.35fr) minmax(270px, 1.25fr) minmax(140px, 0.62fr) minmax(120px, 0.48fr);
	gap: clamp(34px, 5vw, 88px);
	max-width: 1400px;
	padding-block: clamp(54px, 5.6vw, 84px);
}

.site-logo--footer {
	margin-bottom: 24px;
}

.site-logo--footer .site-logo__image,
.site-logo--footer .custom-logo {
	width: min(100%, 278px);
}

.footer-brand p {
	max-width: 440px;
	margin: 0;
	font-size: clamp(15px, 1.05vw, 17px);
	font-weight: 500;
	line-height: 1.75;
}

.footer-column h2 {
	margin-bottom: 25px;
	font-size: 20px;
	font-weight: 700;
}

.footer-contact {
	display: flex;
	flex-direction: column;
}

.footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 17px;
	margin: 0 0 10px;
	color: var(--pgr-color-text);
	font-size: clamp(15px, 1.05vw, 17px);
	font-weight: 500;
	line-height: 1.45;
	text-decoration: none;
}

.footer-contact__item:hover {
	color: var(--pgr-color-blue);
}

.footer-contact__icon {
	width: 19px;
	flex: 0 0 19px;
	color: var(--pgr-color-blue);
	font-family: "PadGoRound Font Awesome";
	font-size: 16px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
}

.footer-menu,
.social-menu {
	display: grid;
	gap: 14px;
}

.footer-menu a,
.social-menu a,
.legal-menu a {
	color: var(--pgr-color-text);
	font-size: clamp(15px, 1.05vw, 17px);
	font-weight: 500;
	text-decoration: none;
}

.legal-menu a {
	font-size: inherit;
}

.footer-menu a:hover,
.social-menu a:hover,
.legal-menu a:hover {
	color: var(--pgr-color-blue);
}

.footer-bottom {
	border-top: 1px solid var(--pgr-color-border);
}

.footer-bottom__inner {
	display: flex;
	min-height: 102px;
	max-width: 1400px;
	align-items: center;
	justify-content: center;
	gap: clamp(36px, 7vw, 120px);
	font-size: clamp(14px, .9vw, 18px);
	font-weight: 500;
}

.footer-bottom p {
	margin: 0;
}

.legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

/* WooCommerce foundation */

.woocommerce .woocommerce-breadcrumb {
	color: var(--pgr-color-text);
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--pgr-color-blue);
}

.woocommerce span.onsale {
	display: grid;
	min-width: 52px;
	min-height: 52px;
	place-items: center;
	background: var(--pgr-color-blue);
	line-height: 1;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--pgr-color-blue);
	background: var(--pgr-color-surface);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--pgr-color-blue);
}

@media (max-width: 1100px) {
	.primary-menu > li > a {
		padding-inline: 12px;
		font-size: 14px;
	}

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

@media (max-width: 900px) {
	.header-inner {
		min-height: 82px;
	}

	.header-actions {
		gap: 4px;
	}

	.site-logo,
	.menu-toggle {
		position: relative;
		z-index: 101;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		z-index: 99;
		inset: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		padding: 106px var(--pgr-gutter) 32px;
		overflow-y: auto;
		visibility: hidden;
		background: var(--pgr-color-white);
		opacity: 0;
		transform: translateY(-1rem);
		transition:
			opacity var(--pgr-transition),
			transform var(--pgr-transition),
			visibility var(--pgr-transition);
	}

	.nav-is-open .primary-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.primary-menu {
		display: flex;
		width: min(100%, 34rem);
		min-height: calc(100vh - 138px);
		min-height: calc(100dvh - 138px);
		height: auto;
		flex-direction: column;
		justify-content: center;
		margin-inline: auto;
	}

	.primary-menu > li {
		display: block;
		height: auto;
	}

	.primary-menu > li > a {
		min-height: 64px;
		justify-content: center;
		padding-inline: 24px;
		font-size: clamp(21px, 6vw, 28px);
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 10px 18px;
		visibility: visible;
		opacity: 1;
		box-shadow: none;
		transform: none;
	}

	.primary-menu .sub-menu a {
		padding: 10px 28px;
		text-align: center;
	}
}

@media (max-width: 680px) {
	:root {
		--pgr-gutter: 20px;
	}

	.site-logo {
		flex-basis: 190px;
	}

	.site-logo__image,
	.custom-logo {
		width: 190px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.footer-brand p {
		max-width: none;
	}

	.footer-bottom__inner {
		min-height: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding-block: 28px;
	}
}

@media (max-width: 380px) {
	.site-logo {
		flex-basis: 156px;
	}

	.site-logo__image,
	.custom-logo {
		width: 156px;
	}

}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
