:root {
	--pwl-nav-sticky-offset: 149px;
}

html {
	scroll-padding-top: var(--pwl-nav-sticky-offset);
}

#main-content {
	overflow: clip;
}

.pwl-nav {
	--pwl-nav-blue: #0648b2;
	--pwl-nav-blue-dark: #043b93;
	--pwl-nav-blue-soft: #eef4ff;
	--pwl-nav-teal: #00bfa5;
	--pwl-nav-teal-dark: #007f70;
	--pwl-nav-ink: #111b3b;
	--pwl-nav-text: #4a5073;
	--pwl-nav-muted: #626b88;
	--pwl-nav-border: #dce3f0;
	--pwl-nav-surface: #ffffff;
	--pwl-nav-shadow: 0 18px 45px rgba(14, 35, 76, .18);
	background: var(--pwl-nav-blue);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
	color: var(--pwl-nav-ink);
	font-family: "Nunito Sans", sans-serif;
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 1050;
}

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

.pwl-nav [hidden] {
	display: none !important;
}

.pwl-skip-link {
	background: #ffffff;
	border-radius: 0 0 8px 8px;
	color: var(--pwl-nav-blue);
	font-family: "Nunito Sans", sans-serif;
	font-weight: 800;
	left: 16px;
	padding: 10px 16px;
	position: fixed;
	top: -80px;
	z-index: 2000;
}

.pwl-skip-link:focus {
	top: 0;
}

.pwl-nav button,
.pwl-nav input {
	font: inherit;
}

.pwl-nav button {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	margin: 0;
}

.pwl-nav a {
	text-decoration: none;
}

.pwl-nav a:hover,
.pwl-nav a:focus {
	text-decoration: none;
}

.pwl-nav button:focus-visible,
.pwl-nav a:focus-visible,
.pwl-nav input:focus-visible {
	box-shadow: 0 0 0 5px #132659;
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.pwl-nav__container {
	margin: 0 auto;
	max-width: 1440px;
	padding-left: 36px;
	padding-right: 36px;
	width: 100%;
}

.pwl-nav__top {
	background: var(--pwl-nav-blue);
	color: #ffffff;
}

.pwl-nav__top-inner {
	align-items: center;
	display: flex;
	gap: 34px;
	height: 76px;
}

.pwl-nav__brand {
	color: #ffffff;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 26px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
}

.pwl-nav__brand:hover,
.pwl-nav__brand:focus {
	color: #ffffff;
}

.pwl-nav__search {
	position: relative;
}

.pwl-nav__search--desktop {
	flex: 1 1 540px;
	margin: 0 auto;
	max-width: 660px;
	min-width: 320px;
}

.pwl-nav__search-form {
	align-items: center;
	background: rgba(1, 39, 111, .28);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 9px;
	display: flex;
	height: 48px;
	position: relative;
	transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.pwl-nav__search-form:focus-within {
	background: rgba(1, 39, 111, .42);
	border-color: var(--pwl-nav-teal);
	box-shadow: 0 0 0 3px rgba(0, 191, 165, .24);
}

.pwl-nav__search-form > .fas {
	color: #ffffff;
	flex: 0 0 48px;
	font-size: 18px;
	text-align: center;
}

.pwl-nav__search-form input {
	background: transparent;
	border: 0;
	color: #ffffff;
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 600;
	height: 100%;
	min-width: 0;
	outline: 0;
	padding: 0;
}

.pwl-nav__search-form input:focus-visible {
	box-shadow: none;
	outline: 0;
	outline-offset: 0;
}

.pwl-nav__search-form input::placeholder {
	color: rgba(255, 255, 255, .86);
	opacity: 1;
}

.pwl-nav__search-form .pwl-nav__search-submit {
	align-items: center;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	line-height: 1;
	margin: 0 9px;
	padding: 0 11px;
	white-space: nowrap;
}

.pwl-nav__search-form .pwl-nav__search-submit:hover,
.pwl-nav__search-form .pwl-nav__search-submit:focus {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--pwl-nav-blue);
}

.pwl-nav__search-form .pwl-nav__search-submit:focus-visible {
	box-shadow: 0 0 0 2px #132659;
	outline: 2px solid #ffffff;
	outline-offset: 1px;
}

.pwl-nav__search-results {
	background: var(--pwl-nav-surface);
	border: 1px solid var(--pwl-nav-border);
	border-radius: 12px;
	box-shadow: var(--pwl-nav-shadow);
	left: 0;
	max-height: min(620px, calc(100vh - 104px));
	overflow: auto;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	z-index: 30;
}

.pwl-nav__search-results-head,
.pwl-nav__mobile-section-title {
	color: var(--pwl-nav-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	padding: 9px 10px 7px;
	text-transform: uppercase;
}

.pwl-nav__search-result {
	align-items: center;
	border-radius: 8px;
	color: var(--pwl-nav-ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 36px minmax(0, 1fr) 16px;
	min-height: 62px;
	padding: 8px 10px;
}

.pwl-nav__search-result:hover,
.pwl-nav__search-result:focus,
.pwl-nav__search-result.is-active {
	background: var(--pwl-nav-blue-soft);
	color: var(--pwl-nav-ink);
}

.pwl-nav__search-result > .fas,
.pwl-nav__search-result > .fab {
	color: var(--pwl-nav-blue);
	font-size: 18px;
	text-align: center;
}

.pwl-nav__search-result-copy {
	display: block;
	min-width: 0;
}

.pwl-nav__search-result-copy strong {
	color: var(--pwl-nav-ink);
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.pwl-nav__search-result-copy small {
	color: var(--pwl-nav-muted);
	display: block;
	font-size: 12px;
	line-height: 1.35;
	margin-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pwl-nav__search-result > .fa-chevron-right {
	color: var(--pwl-nav-muted);
	font-size: 11px;
}

.pwl-nav__search-empty {
	color: var(--pwl-nav-muted);
	font-size: 14px;
	margin: 0;
	padding: 22px 12px;
	text-align: center;
}

.pwl-nav__auth {
	flex: 0 0 auto;
}

.pwl-nav__auth-group {
	align-items: center;
	display: flex;
	gap: 12px;
}

.pwl-nav__signin,
.pwl-nav__primary-cta {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	min-height: 46px;
	white-space: nowrap;
}

.pwl-nav__signin {
	color: #ffffff;
	padding: 0 12px;
}

.pwl-nav__signin > .far {
	font-size: 17px;
}

.pwl-nav__signin:hover,
.pwl-nav__signin:focus {
	background: rgba(255, 255, 255, .11);
	color: #ffffff;
}

.pwl-nav__primary-cta {
	background: var(--pwl-nav-teal);
	color: #052f2a;
	padding: 0 19px;
	transition: background-color .16s ease, transform .16s ease;
}

.pwl-nav__primary-cta:hover,
.pwl-nav__primary-cta:focus {
	background: #16d1b8;
	color: #042f2a;
	transform: translateY(-1px);
}

.pwl-nav__category-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--pwl-nav-border);
	color: var(--pwl-nav-ink);
}

.pwl-nav__category-inner {
	align-items: stretch;
	display: flex;
	height: 64px;
	justify-content: space-between;
	padding-left: 28px;
	padding-right: 28px;
}

.pwl-nav__category {
	align-items: center;
	border-bottom: 3px solid transparent;
	color: #28304b;
	cursor: pointer;
	display: inline-flex;
	flex: 0 1 auto;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	min-width: 0;
	padding: 0 11px;
	position: relative;
	white-space: nowrap;
}

.pwl-nav__category > .fas:first-child,
.pwl-nav__category > .fab:first-child {
	color: #36415f;
	font-size: 16px;
}

.pwl-nav__category:hover,
.pwl-nav__category:focus,
.pwl-nav__category.is-active {
	border-bottom-color: #2e67e8;
	color: #1f5cdf;
}

.pwl-nav__category:hover > .fas:first-child,
.pwl-nav__category:focus > .fas:first-child,
.pwl-nav__category.is-active > .fas:first-child,
.pwl-nav__category:hover > .fab:first-child,
.pwl-nav__category:focus > .fab:first-child,
.pwl-nav__category.is-active > .fab:first-child {
	color: #1f5cdf;
}

.pwl-nav__category-chevron {
	font-size: 9px;
	transition: transform .16s ease;
}

.pwl-nav__category[aria-expanded="true"] .pwl-nav__category-chevron {
	transform: rotate(180deg);
}

.pwl-nav__catalog {
	background: transparent;
	left: 50%;
	max-width: 1440px;
	padding: 0 34px;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 20;
}

.pwl-nav__catalog-shell {
	background: #ffffff;
	border: 1px solid var(--pwl-nav-border);
	border-radius: 0 0 14px 14px;
	box-shadow: var(--pwl-nav-shadow);
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr) 300px;
	grid-template-rows: minmax(0, 1fr);
	max-height: calc(100vh - 156px);
	min-height: min(416px, calc(100vh - 156px));
	overflow: hidden;
}

.pwl-nav__catalog-rail {
	border-right: 1px solid var(--pwl-nav-border);
	min-height: 0;
	overflow-y: auto;
	padding: 14px;
}

.pwl-nav__rail-button {
	align-items: center;
	border-radius: 8px;
	color: var(--pwl-nav-ink);
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 12px;
	min-height: 52px;
	padding: 0 13px;
	text-align: left;
	width: 100%;
}

.pwl-nav__rail-button > .fas,
.pwl-nav__rail-button > .fab {
	color: #43506f;
	font-size: 17px;
	text-align: center;
	width: 22px;
}

.pwl-nav__rail-button:hover,
.pwl-nav__rail-button:focus,
.pwl-nav__rail-button.is-active {
	background: var(--pwl-nav-blue-soft);
	color: #1f5cdf;
}

.pwl-nav__rail-button:hover > .fas,
.pwl-nav__rail-button:focus > .fas,
.pwl-nav__rail-button.is-active > .fas,
.pwl-nav__rail-button:hover > .fab,
.pwl-nav__rail-button:focus > .fab,
.pwl-nav__rail-button.is-active > .fab {
	color: #1f5cdf;
}

.pwl-nav__catalog-content {
	min-height: 0;
	min-width: 0;
	overflow: auto;
	padding: 26px 30px 20px;
}

.pwl-nav__catalog-panel h2 {
	color: var(--pwl-nav-ink);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
	margin: 0;
}

.pwl-nav__catalog-summary {
	color: var(--pwl-nav-muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 6px 0 17px;
}

.pwl-nav__product-grid {
	display: grid;
	gap: 0 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pwl-nav__product-link {
	align-items: center;
	border-bottom: 1px solid #e8edf5;
	color: var(--pwl-nav-ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 34px minmax(0, 1fr) 12px;
	min-height: 76px;
	padding: 9px 2px;
}

.pwl-nav__product-link:hover,
.pwl-nav__product-link:focus {
	color: var(--pwl-nav-ink);
}

.pwl-nav__product-link > .fas:first-child,
.pwl-nav__product-link > .fab:first-child {
	color: #1f5cdf;
	font-size: 22px;
	text-align: center;
}

.pwl-nav__product-link > .fa-chevron-right {
	color: #5f6a88;
	font-size: 11px;
	transition: transform .16s ease;
}

.pwl-nav__product-link:hover > .fa-chevron-right,
.pwl-nav__product-link:focus > .fa-chevron-right {
	transform: translateX(3px);
}

.pwl-nav__product-copy {
	display: block;
	min-width: 0;
}

.pwl-nav__product-title {
	align-items: center;
	color: var(--pwl-nav-ink);
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 7px;
	line-height: 1.3;
}

.pwl-nav__product-copy small {
	color: var(--pwl-nav-muted);
	display: block;
	font-size: 12px;
	line-height: 1.35;
	margin-top: 3px;
}

.pwl-nav__badge {
	background: #e1eaff;
	border-radius: 5px;
	color: #1f5cdf;
	display: inline-block;
	font-size: 10px !important;
	font-weight: 800;
	line-height: 1.3;
	padding: 3px 6px;
	white-space: nowrap;
}

.pwl-nav__browse-link {
	align-items: center;
	color: #1f5cdf;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	margin-top: 18px;
	width: 100%;
}

.pwl-nav__browse-link:hover,
.pwl-nav__browse-link:focus {
	color: var(--pwl-nav-blue-dark);
}

.pwl-nav__start {
	background: #fbfcff;
	border-left: 1px solid var(--pwl-nav-border);
	min-height: 0;
	overflow-y: auto;
	padding: 26px 24px 20px;
}

.pwl-nav__start h2 {
	color: var(--pwl-nav-ink);
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 12px;
}

.pwl-nav__start > a:not(.pwl-nav__start-cta) {
	align-items: center;
	border-bottom: 1px solid #e8edf5;
	color: var(--pwl-nav-ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 28px minmax(0, 1fr) 10px;
	min-height: 72px;
	padding: 9px 0;
}

.pwl-nav__start > a:not(.pwl-nav__start-cta) > .fas:first-child {
	color: #1f5cdf;
	font-size: 18px;
	text-align: center;
}

.pwl-nav__start > a:not(.pwl-nav__start-cta) > .fa-chevron-right {
	color: #5f6a88;
	font-size: 10px;
}

.pwl-nav__start strong,
.pwl-nav__start small {
	display: block;
}

.pwl-nav__start strong {
	color: var(--pwl-nav-ink);
	font-size: 13px;
	font-weight: 800;
}

.pwl-nav__start small {
	color: var(--pwl-nav-muted);
	font-size: 11px;
	line-height: 1.35;
	margin-top: 2px;
}

.pwl-nav__start-cta {
	align-items: center;
	background: var(--pwl-nav-teal);
	border-radius: 8px;
	color: #052f2a;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	margin-top: 18px;
	min-height: 50px;
	padding: 0 14px;
}

.pwl-nav__start-cta:hover,
.pwl-nav__start-cta:focus {
	background: #16d1b8;
	color: #052f2a;
}

.pwl-nav__start-auth > span {
	display: block;
}

.pwl-nav__start-auth p {
	color: var(--pwl-nav-muted);
	font-size: 11px;
	margin: 10px 0 0;
	text-align: center;
}

.pwl-nav__start-auth p strong {
	color: var(--pwl-nav-teal-dark);
	display: inline;
}

.pwl-nav__mobile {
	display: none;
}

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

body.pwl-nav-open .whatsapp-float,
body.pwl-nav-open [aria-label="Open chat"],
body.pwl-nav-catalog-open .whatsapp-float,
body.pwl-nav-catalog-open [aria-label="Open chat"] {
	display: none !important;
}

body.pwl-nav-open > .crisp-client,
body.pwl-nav-catalog-open > .crisp-client {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

@media (max-width: 1399px) and (min-width: 1200px) {
	.pwl-nav__container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.pwl-nav__top-inner {
		gap: 18px;
	}

	.pwl-nav__brand {
		font-size: 23px;
	}

	.pwl-nav__search--desktop {
		max-width: 470px;
		min-width: 260px;
	}

	.pwl-nav__signin,
	.pwl-nav__primary-cta {
		font-size: 13px;
	}

	.pwl-nav__category {
		font-size: 12px;
		gap: 6px;
		padding-left: 7px;
		padding-right: 7px;
	}

	.pwl-nav__catalog {
		padding-left: 18px;
		padding-right: 18px;
	}

	.pwl-nav__catalog-shell {
		grid-template-columns: 205px minmax(0, 1fr) 250px;
	}

	.pwl-nav__catalog-content {
		padding-left: 22px;
		padding-right: 22px;
	}

	.pwl-nav__product-grid {
		gap: 0 18px;
	}

	.pwl-nav__product-title {
		font-size: 13px;
	}
}

@media (max-width: 1199px) {
	:root {
		--pwl-nav-sticky-offset: 72px;
	}

	.pwl-nav {
		min-height: 64px;
	}

	.pwl-nav__desktop {
		display: none;
	}

	.pwl-nav__mobile {
		display: block;
	}

	.pwl-nav__mobile-bar,
	.pwl-nav__mobile-head {
		align-items: center;
		background: var(--pwl-nav-blue);
		color: #ffffff;
		display: flex;
		height: 64px;
		justify-content: space-between;
		padding: 0 18px;
	}

	.pwl-nav__mobile-bar .pwl-nav__brand,
	.pwl-nav__mobile-head .pwl-nav__brand {
		font-size: 21px;
	}

	.pwl-nav__mobile-actions {
		align-items: center;
		display: flex;
		gap: 8px;
	}

	.pwl-nav__mobile-actions button {
		align-items: center;
		border: 1px solid rgba(255, 255, 255, .25);
		border-radius: 8px;
		color: #ffffff;
		cursor: pointer;
		display: inline-flex;
		font-size: 20px;
		height: 44px;
		justify-content: center;
		width: 44px;
	}

	.pwl-nav__mobile-actions button:hover,
	.pwl-nav__mobile-actions button:focus {
		background: rgba(255, 255, 255, .1);
		color: #ffffff;
	}

	.pwl-nav__mobile-drawer {
		background: #ffffff;
		display: grid;
		grid-template-rows: 64px minmax(0, 1fr) auto;
		height: 100vh;
		height: 100dvh;
		inset: 0;
		max-width: none;
		position: fixed;
		width: 100%;
		z-index: 1085;
	}

	.pwl-nav__mobile-scroll {
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 20px 16px 6px;
	}

	.pwl-nav__search--mobile {
		margin-bottom: 16px;
	}

	.pwl-nav__search--mobile .pwl-nav__search-form {
		background: #ffffff;
		border: 1px solid #bfc9dc;
		border-radius: 10px;
		height: 48px;
	}

	.pwl-nav__search--mobile .pwl-nav__search-form:focus-within {
		border-color: var(--pwl-nav-teal-dark);
		box-shadow: 0 0 0 3px var(--pwl-nav-teal-dark);
	}

	.pwl-nav__search--mobile .pwl-nav__search-form > .fas {
		color: var(--pwl-nav-blue);
		flex-basis: 48px;
		font-size: 18px;
	}

	.pwl-nav__search--mobile .pwl-nav__search-form input {
		color: var(--pwl-nav-ink);
		font-size: 14px;
		font-weight: 600;
		padding-right: 13px;
	}

	.pwl-nav__search--mobile .pwl-nav__search-form input::placeholder {
		color: var(--pwl-nav-muted);
	}

	.pwl-nav__mobile-popular h2,
	.pwl-nav__mobile-categories h2 {
		color: var(--pwl-nav-text);
		font-size: 15px;
		font-weight: 600;
		margin: 0 0 13px;
	}

	.pwl-nav__mobile-popular {
		border-bottom: 1px solid var(--pwl-nav-border);
		padding-bottom: 18px;
	}

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

	.pwl-nav__popular-grid a {
		align-items: center;
		border-right: 1px solid var(--pwl-nav-border);
		color: var(--pwl-nav-ink);
		display: flex;
		flex-direction: column;
		font-size: 11px;
		font-weight: 600;
		gap: 7px;
		line-height: 1.25;
		min-height: 78px;
		padding: 7px 5px;
		text-align: center;
	}

	.pwl-nav__popular-grid a:last-child {
		border-right: 0;
	}

	.pwl-nav__popular-grid a:hover,
	.pwl-nav__popular-grid a:focus {
		background: var(--pwl-nav-blue-soft);
		color: var(--pwl-nav-ink);
	}

	.pwl-nav__popular-grid .fas,
	.pwl-nav__popular-grid .fab {
		color: #1f5cdf;
		font-size: 24px;
	}

	.pwl-nav__mobile-categories {
		padding-top: 19px;
	}

	.pwl-nav__mobile-categories > button,
	.pwl-nav__mobile-categories > a {
		align-items: center;
		border-bottom: 1px solid var(--pwl-nav-border);
		color: var(--pwl-nav-ink);
		display: grid;
		font-size: 15px;
		font-weight: 600;
		gap: 14px;
		grid-template-columns: 30px minmax(0, 1fr) 14px;
		min-height: 58px;
		padding: 4px 5px;
		text-align: left;
		width: 100%;
	}

	.pwl-nav__mobile-categories > button:hover,
	.pwl-nav__mobile-categories > button:focus,
	.pwl-nav__mobile-categories > a:hover,
	.pwl-nav__mobile-categories > a:focus {
		background: var(--pwl-nav-blue-soft);
		color: var(--pwl-nav-ink);
	}

	.pwl-nav__mobile-categories > button > .fas:first-child,
	.pwl-nav__mobile-categories > button > .fab:first-child,
	.pwl-nav__mobile-categories > a > .fas:first-child,
	.pwl-nav__mobile-categories > a > .fab:first-child {
		color: #1f5cdf;
		font-size: 18px;
		text-align: center;
	}

	.pwl-nav__mobile-categories > button > .fa-chevron-right,
	.pwl-nav__mobile-categories > a > .fa-chevron-right {
		color: #59627e;
		font-size: 11px;
	}

	.pwl-nav__mobile-back {
		align-items: center;
		color: var(--pwl-nav-blue);
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 800;
		gap: 9px;
		min-height: 44px;
		padding: 0 4px;
	}

	.pwl-nav__mobile-category-panel > h2 {
		color: var(--pwl-nav-ink);
		font-size: 24px;
		font-weight: 800;
		letter-spacing: -.02em;
		margin: 10px 0 3px;
	}

	.pwl-nav__mobile-category-panel > p {
		color: var(--pwl-nav-muted);
		font-size: 14px;
		line-height: 1.45;
		margin: 0 0 10px;
	}

	.pwl-nav__mobile-product-list a {
		align-items: center;
		border-bottom: 1px solid var(--pwl-nav-border);
		color: var(--pwl-nav-ink);
		display: grid;
		gap: 13px;
		grid-template-columns: 34px minmax(0, 1fr) 12px;
		min-height: 68px;
		padding: 8px 2px;
	}

	.pwl-nav__mobile-product-list a:hover,
	.pwl-nav__mobile-product-list a:focus {
		background: var(--pwl-nav-blue-soft);
		color: var(--pwl-nav-ink);
	}

	.pwl-nav__mobile-product-list a > .fas:first-child,
	.pwl-nav__mobile-product-list a > .fab:first-child {
		color: #1f5cdf;
		font-size: 21px;
		text-align: center;
	}

	.pwl-nav__mobile-product-list a > .fa-chevron-right {
		color: #59627e;
		font-size: 11px;
	}

	.pwl-nav__mobile-product-list strong {
		align-items: center;
		color: var(--pwl-nav-ink);
		display: flex;
		font-size: 14px;
		font-weight: 800;
		gap: 6px;
		line-height: 1.25;
	}

	.pwl-nav__mobile-product-list small:not(.pwl-nav__badge) {
		color: var(--pwl-nav-muted);
		display: block;
		font-size: 11px;
		line-height: 1.35;
		margin-top: 3px;
	}

	.pwl-nav__mobile-footer {
		background: #ffffff;
		border-top: 1px solid var(--pwl-nav-border);
		box-shadow: 0 -8px 20px rgba(14, 35, 76, .08);
		padding: 12px 16px calc(10px + env(safe-area-inset-bottom));
	}

	.pwl-nav__mobile-footer > span {
		display: flex;
		gap: 12px;
	}

	.pwl-nav__mobile-signin {
		align-items: center;
		border: 1px solid #1f5cdf;
		border-radius: 8px;
		color: #1f5cdf;
		display: inline-flex;
		flex: 0 0 42%;
		font-size: 14px;
		font-weight: 800;
		gap: 8px;
		justify-content: center;
		min-height: 48px;
		padding: 0 10px;
	}

	.pwl-nav__mobile-signin > .far,
	.pwl-nav__mobile-footer .pwl-nav__primary-cta > .fas {
		font-size: 17px;
	}

	.pwl-nav__mobile-footer .pwl-nav__primary-cta {
		flex: 1 1 auto;
		font-size: 14px;
		gap: 6px;
		min-height: 48px;
		min-width: 0;
		padding: 0 10px;
	}

	.pwl-nav__mobile-footer > p {
		color: var(--pwl-nav-muted);
		font-size: 12px;
		margin: 8px 0 0;
		text-align: center;
	}

	.pwl-nav__mobile-footer > p strong {
		color: var(--pwl-nav-teal-dark);
	}

	.pwl-nav__mobile-search-state {
		background: #ffffff;
	}

	.pwl-nav__mobile-search-state .pwl-nav__search-results-list {
		border-top: 1px solid var(--pwl-nav-border);
	}

	.pwl-nav__mobile-section-title {
		padding-left: 2px;
		padding-right: 2px;
	}

	.pwl-nav__mobile-search-state .pwl-nav__search-result {
		border-bottom: 1px solid var(--pwl-nav-border);
		border-radius: 0;
		min-height: 66px;
		padding-left: 4px;
		padding-right: 4px;
	}
}

@media (max-width: 374px) {
	.pwl-nav__mobile-bar,
	.pwl-nav__mobile-head {
		padding-left: 14px;
		padding-right: 14px;
	}

	.pwl-nav__mobile-scroll {
		padding-left: 14px;
		padding-right: 14px;
	}

	.pwl-nav__mobile-bar .pwl-nav__brand,
	.pwl-nav__mobile-head .pwl-nav__brand {
		font-size: 21px;
	}

	.pwl-nav__popular-grid a {
		font-size: 10px;
	}

	.pwl-nav__mobile-footer {
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media (min-width: 410px) and (max-width: 599px) and (min-height: 900px) {
	:root {
		--pwl-nav-sticky-offset: 78px;
	}

	.pwl-nav__mobile-bar,
	.pwl-nav__mobile-head {
		height: 70px;
	}

	.pwl-nav__mobile-drawer {
		grid-template-rows: 70px minmax(0, 1fr) auto;
	}

	.pwl-nav__mobile-bar .pwl-nav__brand,
	.pwl-nav__mobile-head .pwl-nav__brand {
		font-size: 23px;
	}

	.pwl-nav__search--mobile {
		margin-bottom: 26px;
	}

	.pwl-nav__mobile-categories {
		padding-top: 26px;
	}

	.pwl-nav__mobile-categories > button,
	.pwl-nav__mobile-categories > a {
		min-height: 63px;
	}

	.pwl-nav__mobile-footer {
		padding-bottom: calc(20px + env(safe-area-inset-bottom));
		padding-top: 18px;
	}

	.pwl-nav__mobile-signin,
	.pwl-nav__mobile-footer .pwl-nav__primary-cta {
		min-height: 52px;
	}

	.pwl-nav__mobile-footer > p {
		margin-top: 19px;
	}
}

@media (min-width: 1200px) {
	.pwl-nav__desktop {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pwl-nav *,
	.pwl-nav *::before,
	.pwl-nav *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
