.fnf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 4px;
	border: 1px solid transparent;
	background: var(--color-text);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.fnf-btn:hover {
	background: #000;
	color: var(--color-white);
}

.fnf-btn--secondary {
	background: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.fnf-btn--secondary:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.fnf-btn--ghost {
	background: transparent;
	border-color: transparent;
	color: inherit;
	min-width: 44px;
	padding: 0 10px;
}

.fnf-btn--full {
	width: 100%;
}

.fnf-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	position: relative;
}

.fnf-icon-btn svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fnf-badge {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 600;
}

.fnf-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	overflow: hidden;
}

.fnf-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	height: 100%;
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

.fnf-product-card__media-wrap {
	position: relative;
}

.fnf-product-card__media,
.woocommerce ul.products li.product .fnf-product-card__media {
	position: relative;
	display: block;
	width: 100%;
	background: var(--color-cream);
	overflow: hidden;
}

.fnf-product-card__media::before {
	content: "";
	display: block;
	padding-top: 150%;
}

.woocommerce ul.products li.product .fnf-product-card__media img,
.fnf-product-card__media img,
.fnf-product-card__image,
.fnf-product-card__hover {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center top;
}

.fnf-product-card__hover {
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fnf-product-card:hover .fnf-product-card__hover,
	.fnf-product-card:focus-within .fnf-product-card__hover {
		opacity: 1;
	}
}

.fnf-product-card__quick {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #171717;
	cursor: pointer;
	padding: 0;
}

.fnf-product-card__quick .fnf-icon {
	width: 16px;
	height: 16px;
	stroke-width: 1.8;
}

.fnf-product-card__quick .fnf-icon:last-child {
	display: none;
}

@media (min-width: 768px) {
	.fnf-product-card__quick {
		opacity: 0;
	}

	.fnf-product-card:hover .fnf-product-card__quick,
	.fnf-product-card:focus-within .fnf-product-card__quick {
		opacity: 1;
	}
}

.fnf-product-card__sizebox {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 48px;
	z-index: 3;
	background: #fff;
	padding: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fnf-product-card__sizebox[hidden] {
	display: none;
}

.fnf-product-card__sizebox-label {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
}

.fnf-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 8px 0 0;
	position: relative;
}

.fnf-product-card__title-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.fnf-product-card__title {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: var(--color-text);
	margin: 0;
	line-height: 1.4;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fnf-product-card__title a:hover {
	text-decoration: underline;
}

.fnf-product-card__price {
	font-weight: 600;
	font-size: 17px;
	line-height: 1;
	color: var(--color-text);
}

.fnf-product-card__price ins {
	text-decoration: none;
	color: #dc2626;
}

.fnf-product-card__price del {
	color: var(--color-text);
	font-weight: 400;
	font-size: 12px;
	margin-right: 6px;
}

.fnf-product-card__oos {
	margin: 0;
	font-size: 12px;
	color: var(--color-text-muted);
}

.fnf-product-card__wish {
	flex: none;
	line-height: 0;
}

.fnf-product-card__wish .tinvwl_add_to_wishlist-text,
.fnf-product-card__wish .tinvwl-tooltip,
.fnf-pdp-wish .tinvwl_add_to_wishlist-text,
.fnf-pdp-wish .tinvwl-tooltip {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.fnf-product-card__wish .tinvwl_add_to_wishlist_button,
.fnf-pdp-wish .tinvwl_add_to_wishlist_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0 !important;
	border: 0;
	background: transparent;
}

.fnf-size-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 440px;
}

.fnf-size-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	max-width: 44px;
	height: 32px;
	padding: 0;
	border: 1px solid #a3a3a3;
	border-radius: 4px;
	background: #f5f5f5;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	flex: 1 1 32px;
}

.fnf-size-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.fnf-size-chip:hover {
	border-color: #171717;
}

.fnf-size-chip.is-selected,
.fnf-size-chip[aria-pressed="true"] {
	border-color: #171717;
	background: #fff;
	box-shadow: inset 0 0 0 1px #171717;
}

.fnf-size-chip.is-oos,
.fnf-size-chip:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	text-decoration: line-through;
}

.fnf-input,
.fnf-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-button);
	background: var(--color-white);
	color: var(--color-text);
}

.fnf-alert {
	padding: 12px 16px;
	border-radius: var(--radius-button);
	border: 1px solid var(--color-border);
	background: var(--color-white);
}

.fnf-alert--error {
	border-color: var(--color-error);
	color: var(--color-error);
}

.fnf-alert--success {
	border-color: var(--color-success);
	color: var(--color-success);
}

.fnf-alert--info {
	border-color: var(--color-info);
	color: var(--color-info);
}

.fnf-drawer {
	position: fixed;
	inset: 0;
	z-index: 80;
	pointer-events: none;
}

.fnf-drawer.is-open {
	pointer-events: auto;
}

.fnf-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(37, 37, 37, 0.45);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.fnf-drawer.is-open .fnf-drawer__backdrop {
	opacity: 1;
}

.fnf-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(100%, 420px);
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-float);
}

.fnf-drawer.is-open .fnf-drawer__panel {
	transform: none;
}

.fnf-drawer--left .fnf-drawer__panel {
	right: auto;
	left: 0;
	transform: translateX(-100%);
}

.fnf-drawer--left.is-open .fnf-drawer__panel {
	transform: none;
}

.fnf-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border-bottom: 1px solid var(--color-border);
}

.fnf-drawer__body {
	flex: 1;
	overflow: auto;
	padding: 16px;
}

.fnf-sheet {
	position: fixed;
	inset: 0;
	z-index: 80;
	pointer-events: none;
}

.fnf-sheet.is-open {
	pointer-events: auto;
}

.fnf-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(37, 37, 37, 0.45);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.fnf-sheet.is-open .fnf-sheet__backdrop {
	opacity: 1;
}

.fnf-sheet__panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: min(92vh, 720px);
	background: var(--color-cream);
	border-radius: 16px 16px 0 0;
	transform: translateY(100%);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.fnf-sheet.is-open .fnf-sheet__panel {
	transform: none;
}

.fnf-sheet__handle {
	width: 40px;
	height: 4px;
	margin: 10px auto 0;
	border-radius: 999px;
	background: var(--color-border);
	flex-shrink: 0;
}

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

.fnf-primary-nav > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 12px;
	font-weight: 600;
	font-size: 0.9375rem;
}

.fnf-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--color-cream);
	color: var(--color-text);
	border-top: 1px solid var(--color-border);
	box-shadow: var(--shadow-float);
	padding: 24px 0;
	display: none;
}

.menu-item-has-children:hover > .fnf-mega,
.menu-item-has-children:focus-within > .fnf-mega {
	display: block;
}

.fnf-mega a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 10px 14px;
	color: var(--color-text);
	text-align: left;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-white);
}

.fnf-mega a:hover {
	border-color: var(--color-primary);
	background: var(--color-blush);
	color: var(--color-primary);
}

.fnf-mega .fnf-cat-icon .fnf-icon {
	width: 20px;
	height: 20px;
}

.fnf-mega a span {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.fnf-mega__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.fnf-breadcrumb {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	margin-bottom: 16px;
}

.fnf-breadcrumb a {
	color: inherit;
}

.fnf-hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: grid;
	align-items: end;
	background: var(--color-beige);
	overflow: hidden;
}

.fnf-hero img,
.fnf-hero video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fnf-hero__mobile {
	display: none;
}

@media (max-width: 767px) {
	.fnf-hero__desktop {
		display: none;
	}
	.fnf-hero__mobile {
		display: block;
	}
}

.fnf-empty-page,
.fnf-empty {
	text-align: center;
	padding: 64px 16px;
}

.fnf-empty-page h1,
.fnf-page__title {
	font-family: var(--font-body);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.fnf-page {
	max-width: 800px;
	padding-block: 24px 64px;
}

.fnf-page__content {
	font-size: 15px;
	line-height: 1.6;
}

.fnf-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 58, 52, 0.05), rgba(30, 58, 52, 0.45));
}

.fnf-hero__content {
	position: relative;
	z-index: 1;
	padding: 48px 0;
	color: var(--color-white);
	max-width: 640px;
}

.fnf-hero__content h1 {
	color: inherit;
}

.fnf-section {
	padding: 48px 0;
}

.fnf-section--blush {
	background: var(--color-blush);
}

.fnf-section--beige {
	background: var(--color-beige);
}

.fnf-search-results {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: min(100vw - 32px, 360px);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-float);
	z-index: 50;
	max-height: 70vh;
	overflow: auto;
}

.fnf-search-results a {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	padding: 10px 12px;
	color: var(--color-text);
	align-items: center;
}

.fnf-search-results img {
	width: 56px;
	height: 72px;
	object-fit: cover;
	border-radius: 6px;
	background: var(--color-beige);
}

.fnf-count-bubble {
	position: absolute;
	top: 6px;
	right: 4px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 10px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fnf-plp__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 16px;
}

.fnf-plp__heading {
	min-width: 0;
}

.fnf-plp__intro {
	margin: 8px 0 0;
	max-width: 40rem;
	font-size: 14px;
	line-height: 1.5;
	color: #525252;
}

.fnf-plp__title {
	font-family: var(--font-body) !important;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	letter-spacing: -0.03em;
	margin: 0;
	color: var(--color-text);
}

.fnf-plp__count {
	font-size: 13px;
	white-space: nowrap;
	color: #737373;
}

.fnf-plp__toolbar {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.fnf-plp__toolbar-left,
.fnf-plp__toolbar-filters {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	min-width: 0;
}

.fnf-plp__toolbar-filters {
	display: none;
}

.fnf-plp__toolbar .woocommerce-ordering,
.woocommerce .woocommerce-ordering {
	float: none !important;
	margin: 0;
	width: 100%;
}

.fnf-plp__toolbar .woocommerce-ordering select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	padding: 0 16px;
	color: var(--color-text);
}

.fnf-show-count {
	display: none;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	text-transform: uppercase;
}

.fnf-show-count a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 20px;
	border-radius: 4px;
	color: var(--color-text);
}

.fnf-show-count a.is-active {
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	font-weight: 600;
}

.fnf-plp__filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-text);
	font-size: 14px;
	font-weight: 600;
	padding: 0 16px;
	cursor: pointer;
}

.fnf-plp__filter-btn .fnf-icon {
	width: 18px;
	height: 18px;
}

.fnf-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--color-text);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.fnf-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
}

.fnf-active-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 10px 0 12px;
	border-radius: 999px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	font-size: 13px;
	font-weight: 600;
}

.fnf-active-chip__x {
	font-size: 16px;
	line-height: 1;
	color: var(--color-text-muted);
}

.fnf-active-filters__clear {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
}

@media (min-width: 1024px) {
	.fnf-plp__toolbar {
		display: flex;
		justify-content: space-between;
		gap: 12px;
	}

	.fnf-show-count {
		display: flex;
	}

	.fnf-plp__toolbar-filters {
		display: flex;
	}

	.fnf-plp__filter-btn {
		display: none;
	}

	.fnf-plp__toolbar .woocommerce-ordering {
		width: auto;
	}

	.fnf-plp__toolbar .woocommerce-ordering select {
		width: auto;
		min-height: 32px;
		border: 0;
		background: transparent;
		font-size: 12px;
		text-transform: uppercase;
		padding: 0;
		font-weight: 600;
	}
}

.fnf-plp-empty {
	text-align: center;
	padding: 56px 20px 72px;
	max-width: 420px;
	margin: 24px auto 0;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	background: var(--color-cream);
}

.fnf-plp-empty__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-primary);
}

.fnf-plp-empty__mark .fnf-icon {
	width: 24px;
	height: 24px;
}

.fnf-plp-empty__title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.2;
}

.fnf-plp-empty__text {
	margin: 0 0 24px;
	color: var(--color-text-muted);
	line-height: 1.5;
}

.fnf-plp-empty__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.woocommerce-no-products-found .woocommerce-info,
.woocommerce-no-products-found .wc-block-components-notice-banner {
	display: none;
}

.fnf-filter-drop {
	position: relative;
}

.fnf-filter-drop summary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	cursor: pointer;
}

.fnf-filter-drop summary::-webkit-details-marker {
	display: none;
}

.fnf-filter-drop summary::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 2px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	translate: 0 -2px;
}

.fnf-filter-drop[open] summary,
.fnf-filter-drop.is-on summary {
	background: var(--color-white);
	box-shadow: inset 0 0 0 1px var(--color-text);
}

.fnf-filter-drop summary:hover {
	background: #ececec;
}

.fnf-filter-drop__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 20;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 16px;
	box-shadow: var(--shadow-float);
}

.fnf-filter-drop:last-child .fnf-filter-drop__panel {
	left: auto;
	right: 0;
}

.fnf-filter-form--dropdown {
	display: flex;
	align-items: center;
	gap: 4px;
}

.fnf-filter-form--sheet {
	display: flex;
	flex-direction: column;
	min-height: 0;
	max-height: 100%;
}

.fnf-filter-form__fields {
	flex: 1;
	overflow: auto;
	padding: 8px 16px 16px;
	-webkit-overflow-scrolling: touch;
}

.fnf-filter-form--dropdown .fnf-filter-form__fields {
	display: flex;
	align-items: center;
	gap: 4px;
	overflow: visible;
	padding: 0;
}

.fnf-filter-form--sheet fieldset {
	border: 0;
	margin: 0 0 20px;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--color-border);
}

.fnf-filter-form--sheet fieldset:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.fnf-filter-form--sheet legend {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 15px;
}

.fnf-filter-form--sheet .fnf-size-chips {
	max-width: none;
}

.fnf-filter-form .fnf-size-chip {
	flex: 0 0 auto;
	min-width: 44px;
	max-width: none;
	height: 40px;
	padding: 0 12px;
}

.fnf-filter-options {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fnf-filter-option {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 4px;
	cursor: pointer;
	font-size: 14px;
}

.fnf-filter-option input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--color-primary);
}

.fnf-filter-price {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 12px;
}

.fnf-filter-price label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-muted);
}

.fnf-filter-price__field {
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-text);
	font-weight: 600;
}

.fnf-filter-price__field input {
	width: 100%;
	border: 0;
	background: transparent;
	min-height: 40px;
	padding: 0;
	font-weight: 600;
}

.fnf-filter-form__foot {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 8px;
	padding: 12px 16px 16px;
	border-top: 1px solid var(--color-border);
	background: var(--color-cream);
}

.fnf-filter-form__foot .fnf-btn {
	width: 100%;
}

.fnf-drawer__head strong {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.fnf-rating {
	color: var(--color-primary);
	font-size: 0.875rem;
}

.fnf-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fnf-mobile-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text);
	font-weight: 600;
}

.fnf-mobile-nav__sub {
	list-style: none;
	margin: 0 0 8px;
	padding: 0 0 0 12px;
}

.fnf-mobile-nav__sub a {
	min-height: 40px;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}
