.pf-menu {
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-height: 48px;
	border-radius: 0;
	font-family: var(--pf-font);
}

.pf-menu__burger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 0;
}

.pf-menu__burger:hover {
	background: var(--pf-hover);
}

.pf-menu__all {
	border-radius: 0;
	display: none;
	align-items: center;
	gap: 10px;
	flex: none;
	padding: 0 20px;
	border: 0;
	background: var(--pf-brand);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	transition: background-color .2s var(--pf-ease);
}

.pf-menu__all:hover {
	background: var(--pf-brand-dark);
}

.pf-menu__all.pf-menu__all .pf-i {
	width: 18px;
	height: 18px;
}

.pf-menu__quick {
	display: none;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pf-menu__item {
	position: relative;
	display: flex;
	align-items: stretch;
}

.pf-menu.pf-menu .pf-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 16px;
	color: inherit;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s var(--pf-ease);
}

.pf-menu.pf-menu .pf-menu__link:hover,
.pf-menu.pf-menu .pf-menu__link:focus {
	background: var(--pf-hover);
	color: inherit;
}

.pf-menu__chev {
	width: 12px;
	height: 12px;
	transform: rotate(90deg);
	opacity: .45;
}

.pf-pop {
	position: fixed;
	z-index: var(--pf-z-panel);
	width: 440px;
	max-width: calc(100vw - 32px);
	padding: 16px;
	border-radius: 0 0 var(--pf-radius) var(--pf-radius);
	background: #fff;
	color: var(--pf-txt);
	box-shadow: var(--pf-shadow-pop), 0 0 0 1px rgba(0, 0, 0, .05);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}

.pf-pop.is-open {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.pf-pop__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.pf-pop.pf-pop .pf-pop__title {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 700;
	font-size: 19px;
	text-transform: uppercase;
}

.pf-pop.pf-pop .pf-pop__all {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--pf-brand);
	text-decoration: none;
}

.pf-pop.pf-pop .pf-pop__all:hover {
	text-decoration: underline;
}

.pf-pop__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 12px;
}

.pf-pop__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}

.pf-pop.pf-pop .pf-pop__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px;
	border-radius: var(--pf-radius-sm);
	color: var(--pf-txt-2);
	font-size: 13.5px;
	text-decoration: none;
}

.pf-pop__media {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: none;
	overflow: hidden;
	padding: 2px;
	border-radius: 7px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line-2);
	color: var(--pf-txt-3);
}

.pf-pop__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pf-pop__media.pf-media--letter {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 15px;
	line-height: 1;
}

.pf-pop__media.pf-pop__media .pf-i {
	width: 18px;
	height: 18px;
}

.pf-pop__name {
	flex: 1;
	min-width: 0;
}

.pf-pop.pf-pop .pf-pop__list a:hover {
	background: var(--pf-paper-2);
	color: var(--pf-txt);
}

.pf-pop__count {
	font-size: 11.5px;
	color: var(--pf-txt-3);
	font-variant-numeric: tabular-nums;
}

.pf-mega {
	position: fixed;
	left: 0;
	right: 0;
	z-index: var(--pf-z-panel);
	background: #fff;
	color: var(--pf-txt);
	font-family: var(--pf-font);
	border-top: 2px solid var(--pf-brand);
	box-shadow: var(--pf-shadow-pop);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: none;
}

.pf-mega.is-open {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.pf-mega__inner {
	display: grid;
	grid-template-columns: 3fr 6fr 3fr;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 16px;
	min-height: 440px;
	max-height: min(70vh, 620px);
}

.pf-mega__rail {
	list-style: none;
	margin: 0;
	padding: 12px 12px 12px 0;
	border-right: 1px solid var(--pf-line);
	overflow-y: auto;
}

.pf-mega.pf-mega .pf-mega__rail-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 9px 14px;
	border: 0;
	border-radius: var(--pf-radius-sm);
	background: transparent;
	color: var(--pf-txt-2);
	font-family: inherit;
	font-size: 14.5px;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.pf-mega.pf-mega .pf-mega__rail-btn:hover,
.pf-mega.pf-mega .pf-mega__rail-btn.is-active {
	background: var(--pf-paper-2);
	color: var(--pf-txt);
}

.pf-mega__rail-name {
	flex: 1;
	font-weight: 500;
}

.pf-mega__rail-count {
	font-size: 11.5px;
	color: var(--pf-txt-3);
	font-variant-numeric: tabular-nums;
}

.pf-mega__rail-chev {
	width: 16px;
	height: 16px;
	color: var(--pf-txt-3);
}

.pf-mega__panes {
	padding: 24px 28px;
	overflow-y: auto;
}

.pf-mega__pane {
	display: none;
}

.pf-mega__pane.is-active {
	display: block;
}

.pf-mega__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.pf-mega.pf-mega .pf-mega__title {
	margin: 0;
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 26px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--pf-txt);
}

.pf-mega.pf-mega .pf-mega__all {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--pf-brand);
	text-decoration: none;
	white-space: nowrap;
}

.pf-mega.pf-mega .pf-mega__all:hover {
	text-decoration: underline;
}

.pf-mega__subs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.pf-mega.pf-mega .pf-mega__sub {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--pf-radius);
	color: var(--pf-txt);
	text-decoration: none;
	transition: background-color .18s var(--pf-ease), box-shadow .18s var(--pf-ease);
}

.pf-mega.pf-mega .pf-mega__sub:hover {
	background: var(--pf-paper-2);
	box-shadow: inset 0 0 0 1px var(--pf-line);
}

.pf-mega__sub-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: none;
	overflow: hidden;
	padding: 3px;
	border-radius: var(--pf-radius-sm);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line-2);
	color: var(--pf-txt-2);
	transition: box-shadow .2s var(--pf-ease), color .2s var(--pf-ease);
}

.pf-mega__sub-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pf-mega__sub-icon.pf-media--letter {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 22px;
	line-height: 1;
	color: var(--pf-txt-3);
}

.pf-mega__sub.pf-mega__sub:hover .pf-mega__sub-icon {
	box-shadow: inset 0 0 0 1px var(--pf-brand);
	color: var(--pf-brand);
}

.pf-mega__sub-icon.pf-mega__sub-icon .pf-i {
	width: 26px;
	height: 26px;
}

.pf-mega__sub-body {
	min-width: 0;
}

.pf-mega__sub-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.pf-mega__sub.pf-mega__sub:hover .pf-mega__sub-name {
	color: var(--pf-brand);
}

.pf-mega__sub-count {
	display: block;
	margin-top: 2px;
	font-size: 12.5px;
	color: var(--pf-txt-3);
	font-variant-numeric: tabular-nums;
}

.pf-mega__top {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--pf-line);
}

.pf-mega.pf-mega .pf-mega__kicker {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pf-txt-3);
}

.pf-mega__top-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pf-mega.pf-mega .pf-mini {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: var(--pf-radius-sm);
	box-shadow: inset 0 0 0 1px var(--pf-line);
	color: var(--pf-txt);
	text-decoration: none;
}

.pf-mega.pf-mega .pf-mini:hover {
	box-shadow: inset 0 0 0 1px var(--pf-ink);
}

.pf-mini__media {
	width: 48px;
	height: 48px;
	flex: none;
	overflow: hidden;
	border-radius: var(--pf-radius-sm);
	background: var(--pf-paper-2);
}

.pf-mini__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pf-mini__body {
	min-width: 0;
}

.pf-mini__brand {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pf-txt-3);
}

.pf-mini__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12.5px;
	line-height: 1.3;
}

.pf-mini__price {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.pf-mega__aside {
	padding: 24px;
	border-left: 1px solid var(--pf-line);
	background: var(--pf-paper-2);
	overflow-y: auto;
	display: grid;
	align-content: start;
	gap: 18px;
}

.pf-mega.pf-mega .pf-promo {
	position: relative;
	display: block;
	height: 180px;
	overflow: hidden;
	border-radius: var(--pf-radius);
	background: var(--pf-ink);
	color: #fff;
	text-decoration: none;
}

.pf-promo__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .72;
	transition: transform .45s var(--pf-ease);
}

.pf-mega.pf-mega .pf-promo:hover .pf-promo__img {
	transform: scale(1.06);
}

.pf-promo__body {
	position: absolute;
	inset: auto 20px 20px 20px;
}

.pf-promo__eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--pf-brand);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
}

.pf-promo__title {
	display: block;
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 700;
	font-size: 23px;
	line-height: 1;
}

.pf-help {
	padding: 16px;
	border-radius: var(--pf-radius);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line);
}

.pf-help.pf-help .pf-help__title {
	margin: 0;
	font-size: 13.5px;
	font-weight: 700;
}

.pf-help.pf-help .pf-help__text {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--pf-txt-2);
}

.pf-help.pf-help .pf-help__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	color: var(--pf-brand);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
}

.pf-help__phone.pf-help__phone .pf-i {
	width: 16px;
	height: 16px;
}

.pf-drawer.pf-drawer .pf-mnav__row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 20px;
	border: 0;
	border-bottom: 1px solid var(--pf-line-2);
	background: transparent;
	color: var(--pf-txt);
	font-family: inherit;
	font-size: 15px;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.pf-drawer.pf-drawer .pf-mnav__row:hover {
	background: var(--pf-paper-2);
}

.pf-drawer.pf-drawer .pf-mnav__row--plain {
	font-weight: 600;
}

.pf-drawer.pf-drawer .pf-mnav__row--all {
	color: var(--pf-brand);
	font-weight: 700;
}

.pf-mnav__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: var(--pf-radius-sm);
	background: var(--pf-paper-2);
	color: var(--pf-txt-2);
}

.pf-mnav__icon.pf-mnav__icon .pf-i {
	width: 18px;
	height: 18px;
}

.pf-mnav__name {
	flex: 1;
	font-weight: 600;
}

.pf-mnav__count {
	font-size: 12.5px;
	color: var(--pf-txt-3);
	font-variant-numeric: tabular-nums;
}

.pf-mnav__chev {
	width: 16px;
	height: 16px;
	color: var(--pf-txt-3);
}

.pf-drawer.pf-drawer .pf-mnav__back {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 13px 20px;
	border: 0;
	border-bottom: 1px solid var(--pf-line);
	background: var(--pf-paper-2);
	color: var(--pf-txt);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.pf-mnav__back-chev {
	width: 16px;
	height: 16px;
	transform: rotate(180deg);
}

@media (min-width: 1024px) {
	.pf-menu__burger {
		display: none;
	}

	.pf-menu__all,
	.pf-menu__quick {
		display: flex;
	}
}

@media (max-width: 1200px) {
	.pf-mega__inner {
		grid-template-columns: 4fr 8fr;
	}

	.pf-mega__aside {
		display: none;
	}
}

.pf-brands {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.pf-brands.pf-brands .pf-brand {
	display: grid;
	place-items: center;
	height: 52px;
	padding: 8px;
	border-radius: var(--pf-radius-sm);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line);
	color: var(--pf-txt-2);
	text-decoration: none;
	transition: box-shadow .2s var(--pf-ease), color .2s var(--pf-ease);
}

.pf-brands.pf-brands .pf-brand:hover {
	box-shadow: inset 0 0 0 1px var(--pf-brand);
	color: var(--pf-brand);
}

.pf-brands.pf-brands .pf-brand img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pf-brands.pf-brands .pf-brand--text {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: .01em;
}

.pf-mega__rail-media {
	width: 32px;
	height: 32px;
	padding: 2px;
	border-radius: 6px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line-2);
}

.pf-mega__rail-media img {
	object-fit: contain;
}

.pf-mega__rail-media.pf-media--letter {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	color: var(--pf-txt-3);
}

.pf-mega__rail-media.pf-mega__rail-media .pf-i {
	width: 19px;
	height: 19px;
}

/* Category pictures are product cut-outs on white, so the well stays white and
   the picture is shown whole rather than cropped. */
.pf-mega__sub-icon.pf-media--image,
.pf-mega__rail-media.pf-media--image,
.pf-mnav__icon.pf-media--image {
	background: #fff;
}

.pf-mega__sub.pf-mega__sub:hover .pf-mega__sub-icon.pf-media--image {
	background: #fff;
}

.pf-mnav__icon img {
	object-fit: contain;
}
