.fnf-container {
	width: min(100% - 32px, var(--content-max));
	margin-inline: auto;
}

@media (min-width: 768px) {
	.fnf-container {
		width: min(100% - 40px, var(--content-max));
	}
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	padding-block: calc(var(--space-unit) * 4);
}

.fnf-chrome {
	position: sticky;
	top: 0;
	z-index: 40;
}

.fnf-promo {
	background: #000;
	color: #fff;
}

.fnf-promo__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 44px;
	padding: 7px 16px;
	color: inherit;
	text-decoration: none;
}

.fnf-promo__copy {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.25px;
	line-height: 1;
	text-transform: uppercase;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fnf-promo__inner:hover {
	color: inherit;
}

.fnf-promo__cta {
	flex: none;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.site-header {
	background: var(--color-header);
	color: var(--color-text);
	border-bottom: 0;
}

.site-header a,
.site-header button {
	color: var(--color-text);
}

.site-header a:hover {
	color: var(--color-text);
}

.site-header__bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 56px;
	padding: 8px 16px;
}

.site-header__left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: none;
	flex-shrink: 0;
	min-width: 0;
}

.site-header__logo,
.site-header .custom-logo-link {
	display: flex;
	align-items: center;
	flex: none;
	line-height: 0;
}

.site-header__logo img,
.site-header .custom-logo-link img,
.site-header__logo-img {
	height: 32px;
	width: auto;
	max-width: min(46vw, 200px);
	object-fit: contain;
	object-position: left center;
}

.fnf-depts {
	display: flex;
	align-items: center;
	gap: 16px;
	overflow-x: auto;
	scrollbar-width: none;
}

.fnf-depts::-webkit-scrollbar {
	display: none;
}

.fnf-depts a {
	position: relative;
	flex: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.2;
	text-transform: uppercase;
	padding: 10px 0;
	white-space: nowrap;
	color: var(--color-text);
}

.fnf-depts a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: transparent;
}

.fnf-depts a.is-active::after,
.fnf-depts a:hover::after {
	background: var(--color-text);
}

.fnf-depts--desktop {
	display: none;
}

.fnf-depts--mobile {
	border-bottom: 1px solid var(--color-border);
	padding: 0 16px;
	min-height: 36px;
}

.fnf-header-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	width: 100%;
	overflow: hidden;
	height: 44px;
	padding: 0 16px 0 12px;
	border: 2px solid #a3a3a3;
	border-radius: 26px;
	background: var(--color-header);
}

.fnf-header-search:focus-within {
	border-color: var(--color-text);
	box-shadow: 0 0 5px rgba(37, 37, 37, 0.2);
}

.fnf-header-search svg {
	width: 18px;
	height: 18px;
	stroke: #737373;
	fill: none;
	stroke-width: 1.8;
	flex: none;
}

.fnf-header-search input {
	border: 0;
	background: transparent;
	min-width: 0;
	min-height: 24px;
	padding: 0;
	box-shadow: none;
	font-size: 14px;
	color: var(--color-text);
}

.fnf-header-search input:focus,
.fnf-header-search input:focus-visible {
	box-shadow: none;
	outline: none;
}

.fnf-header-search input::placeholder {
	color: #737373;
}

.fnf-header-search .fnf-search-results {
	left: 0;
	right: 0;
	width: 100%;
	top: calc(100% + 8px);
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 0;
	margin-left: 0;
}

.fnf-icon-btn.fnf-tool--lg {
	display: none;
}

.site-header .fnf-icon-btn:hover {
	border-radius: 50%;
	background: #e5e5e5;
}

.fnf-cats {
	overflow-x: auto;
	scrollbar-width: none;
	border-bottom: 1px solid var(--color-border);
}

.fnf-cats::-webkit-scrollbar {
	display: none;
}

.fnf-cats__row {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 28px;
	padding: 0 16px;
}

.fnf-cats a {
	flex: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.25px;
	text-transform: capitalize;
	white-space: nowrap;
	color: var(--color-text);
	padding: 6px 0;
}

.fnf-chrome.is-compact .fnf-cats,
.fnf-chrome.is-compact .fnf-depts--mobile {
	display: none;
}

.site-footer {
	background: var(--color-footer);
	color: rgba(255, 255, 255, 0.72);
	padding: 0;
	margin-top: auto;
}

.site-footer a {
	color: inherit;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__inner {
	width: min(100%, 1920px);
	margin-inline: auto;
	padding: 40px 24px 0;
}

.site-footer__top {
	display: flex;
	flex-direction: column-reverse;
	gap: 32px;
}

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

.fnf-footer-col__heading {
	margin: 0 0 12px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: none;
}

.fnf-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fnf-footer-col a {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	color: #a3a3a3;
}

.site-footer__signup {
	width: 100%;
	max-width: 426px;
}

.site-footer__signup-title {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.1px;
	color: #fff;
}

.fnf-footer-newsletter {
	position: relative;
}

.fnf-footer-newsletter input {
	width: 100%;
	height: 56px;
	padding: 20px 56px 8px 20px;
	border: 1px solid #a3a3a3;
	border-radius: 4px;
	background: #262626;
	color: #fff;
}

.fnf-footer-newsletter input::placeholder {
	color: #a3a3a3;
}

.fnf-footer-newsletter button {
	position: absolute;
	right: 12px;
	top: 8px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #d4d4d4;
	color: #171717;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fnf-footer-newsletter button:hover {
	background: #e5e5e5;
}

.fnf-footer-newsletter button svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	transform: rotate(180deg);
}

.site-footer__legal-note {
	margin: 12px 0 0;
	font-size: 12px;
	color: #a3a3a3;
	max-width: 426px;
}

.site-footer__legal-note a {
	color: inherit;
	text-decoration: underline;
}

.fnf-social {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.fnf-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #fff;
}

.fnf-social svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 36px;
	padding: 14px 0 20px;
	border-top: 1px solid #262626;
	font-size: 12px;
	color: #a3a3a3;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
}

.site-footer__legal a {
	padding: 0 8px;
	color: #a3a3a3;
}

@media (max-width: 1023px) {
	.site-header__bar {
		position: relative;
		grid-template-columns: auto minmax(0, 1fr);
		padding-right: 96px;
	}

	.site-header__tools {
		position: absolute;
		right: 8px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.site-header .fnf-icon-btn {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 479px) {
	.site-header__logo img,
	.site-header .custom-logo-link img,
	.site-header__logo-img {
		height: 26px;
		max-width: 108px;
	}

	.fnf-header-search {
		height: 36px;
		padding-inline: 10px;
	}

	.fnf-promo__copy {
		font-size: 12px;
	}
}

@media (min-width: 768px) {
	.fnf-promo__inner {
		justify-content: center;
		gap: 16px;
		padding-inline: 32px;
	}

	.site-header__bar {
		padding-left: 24px;
	}

	.site-header__logo img,
	.site-header .custom-logo-link img,
	.site-header__logo-img {
		height: 40px;
		max-width: 240px;
	}

	.fnf-cats__row {
		gap: 0;
		min-height: 44px;
		padding-inline: 20px;
	}

	.fnf-cats a {
		font-size: 13px;
		height: 28px;
		padding: 0 12px;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
	}

	.fnf-cats a:hover {
		background: #e5e5e5;
	}

	.site-footer__inner {
		padding: 40px 40px 0;
	}

	.site-footer__top {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}

	.site-footer__cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		flex: 1;
		margin-right: 24px;
	}

	.site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.site-header {
		padding-top: 8px;
	}

	.site-header__bar {
		grid-template-columns: auto minmax(0, 1fr) auto;
		padding: 0 32px 8px;
		gap: 24px;
		min-height: 48px;
	}

	.site-header__tools {
		position: static;
		transform: none;
	}

	.site-header__left {
		gap: 32px;
	}

	.site-header__logo img,
	.site-header .custom-logo-link img,
	.site-header__logo-img {
		height: 44px;
		max-width: 260px;
	}

	.fnf-depts--desktop {
		display: flex;
		gap: 16px;
	}

	.fnf-depts--desktop a {
		font-size: 13px;
		padding-top: 3px;
		padding-bottom: 8px;
	}

	.fnf-depts--desktop a::after {
		bottom: -8px;
	}

	.fnf-depts--mobile,
	.site-header .fnf-icon-btn.site-header__menu-toggle {
		display: none;
	}

	.fnf-header-search {
		max-width: 720px;
	}

	.site-header .fnf-icon-btn.fnf-tool--lg {
		display: inline-flex;
	}

	.fnf-cats__row {
		padding-inline: 32px;
	}

	.site-footer__inner {
		padding: 40px 60px 0;
	}
}

.fnf-product-grid,
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 16px 1px;
	margin: 0 !important;
	padding: 0;
	list-style: none;
	width: 100% !important;
	float: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	display: none !important;
	content: none !important;
}

@media (min-width: 768px) {
	.fnf-product-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 16px 8px;
	}
}

@media (min-width: 1024px) {
	.fnf-product-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 24px 8px;
	}
}

.shop-layout,
.fnf-plp {
	display: block;
}

.site-main--shop {
	padding-block: 12px 48px;
}

body.single-product .site-main {
	padding-block: 0;
}
