.ff-catalog {
	max-width: 90rem;
	margin: 0 auto;
	padding: 3rem 1.5rem 5rem;
	color: #171714;
}

.ff-catalog__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b222f;
}

.ff-catalog__title {
	margin: 0;
	font-family: "Freight Big", Georgia, serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 0.95;
	font-weight: 400;
}

.ff-catalog__lede {
	max-width: 32rem;
	margin: 1rem 0 0;
	line-height: 1.6;
	color: #171714cc;
}

.ff-catalog__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.ff-catalog__toolbar {
	margin: 2.5rem 0 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(23, 23, 20, 0.15);
}

.ff-catalog__query {
	display: flex;
	gap: 0;
	align-items: stretch;
	border-bottom: 2px solid #171714;
}

.ff-catalog__query input {
	flex: 1;
	min-width: 0;
	height: 3rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #171714;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.2;
}

.ff-catalog__query input::placeholder {
	color: rgba(23, 23, 20, 0.45);
}

.ff-catalog__query input:focus {
	outline: none;
}

.ff-catalog__query:focus-within {
	border-bottom-color: #6b222f;
}

.ff-catalog__query input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.ff-catalog__query-go {
	flex: none;
	height: 3rem;
	padding: 0 1.5rem;
	border: 0;
	border-radius: 0;
	background: #171714;
	color: #f7f5f0;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
}

.ff-catalog__query-go:hover,
.ff-catalog__query-go:focus-visible {
	background: #6b222f;
	color: #fff;
}

.ff-catalog__query-go:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

.ff-catalog__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: end;
	margin-top: 1.25rem;
}

.ff-catalog__control {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 9rem;
}

.ff-catalog__control span {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(23, 23, 20, 0.65);
}

.ff-catalog__control select,
.ff-catalog__control input {
	height: 2.75rem;
	padding: 0 0.15rem;
	border: 0;
	border-bottom: 1px solid #171714;
	border-radius: 0;
	background: transparent;
	color: #171714;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
}

.ff-catalog__control select {
	min-width: 14rem;
	cursor: pointer;
}

.ff-catalog__control input {
	width: 6.5rem;
	font-variant-numeric: tabular-nums;
}

.ff-catalog__control select:focus,
.ff-catalog__control input:focus {
	border-bottom-color: #6b222f;
	outline: none;
}

.ff-catalog__control select:focus-visible,
.ff-catalog__control input:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

.ff-catalog__apply {
	height: 2.75rem;
	padding: 0 1.25rem;
	border: 1px solid #171714;
	border-radius: 0;
	background: transparent;
	color: #171714;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
}

.ff-catalog__apply:hover,
.ff-catalog__apply:focus-visible {
	background: #171714;
	color: #f7f5f0;
}

.ff-catalog__apply:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

.ff-catalog__count {
	margin: 0 0 0 auto;
	font-size: 0.875rem;
	font-weight: 700;
	color: #6b222f;
}

.ff-catalog__reset {
	color: #171714;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	text-underline-offset: 4px;
}

.ff-catalog__reset:hover,
.ff-catalog__reset:focus-visible {
	color: #6b222f;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.ff-catalog__reset:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

@media (max-width: 40rem) {
	.ff-catalog__control,
	.ff-catalog__control select {
		min-width: 0;
		width: 100%;
	}

	.ff-catalog__control input {
		width: 100%;
	}

	.ff-catalog__count {
		margin-left: 0;
	}
}

.ff-catalog__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ff-catalog__grid > li {
	min-width: 0;
}

.ff-catalog__card {
	height: 100%;
}

.ff-catalog__card a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.ff-catalog__card a:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

.ff-catalog__image {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}

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

.ff-catalog__image-fallback {
	display: none;
	font-family: "Freight Big", Georgia, serif;
	font-size: 1.875rem;
	line-height: 1;
	color: rgb(23 23 20 / 30%);
}

.ff-catalog__image:not(:has(img)) .ff-catalog__image-fallback {
	display: block;
}

.ff-catalog__details {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 1.25rem;
}

.ff-catalog__brand {
	margin: 0 0 0.75rem;
	min-height: 1.125rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	color: #6b222f;
}

.ff-catalog__name {
	margin: 0;
	padding-bottom: 1.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: calc(2 * 1.02em);
	overflow: hidden;
	font-family: "Freight Big", Georgia, serif;
	font-size: 1.875rem;
	line-height: 1.02;
	font-weight: 400;
	text-wrap: balance;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.ff-catalog__card a:hover .ff-catalog__name,
.ff-catalog__card a:focus-visible .ff-catalog__name,
.ff-catalog__story a:hover .ff-catalog__name,
.ff-catalog__story a:focus-visible .ff-catalog__name {
	text-decoration-color: currentColor;
}

.ff-catalog__meta {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 2.625rem;
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgb(23 23 20 / 15%);
}

.ff-catalog__price {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	align-items: baseline;
	margin: 0;
	font-size: 0.875rem;
	font-variant-numeric: tabular-nums;
	color: rgb(23 23 20 / 65%);
}

.ff-catalog__price s {
	font-weight: 400;
	text-decoration: line-through;
}

.ff-catalog__price b {
	color: #171714;
	font-weight: 500;
}

.ff-catalog__price em {
	font-style: normal;
	font-size: 0.75rem;
	font-weight: 500;
	color: #6b222f;
}

.ff-catalog__cta {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 4px;
}

.ff-catalog__cta svg {
	width: 1rem;
	height: 1rem;
	transition: transform 200ms ease-out;
}

.ff-catalog__card a:hover .ff-catalog__cta,
.ff-catalog__card a:focus-visible .ff-catalog__cta {
	text-decoration-color: currentColor;
}

.ff-catalog__card a:hover .ff-catalog__cta svg,
.ff-catalog__card a:focus-visible .ff-catalog__cta svg {
	transform: translateX(0.25rem);
}

@media (prefers-reduced-motion: reduce) {
	.ff-catalog__cta svg {
		transition: none;
	}

	.ff-catalog__card a:hover .ff-catalog__cta svg,
	.ff-catalog__card a:focus-visible .ff-catalog__cta svg {
		transform: none;
	}
}

.ff-catalog__story article {
	height: 100%;
}

.ff-catalog__story a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.ff-catalog__story a:focus-visible {
	outline: 2px solid #6b222f;
	outline-offset: 4px;
}

.ff-catalog__story-image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: transparent;
}

.ff-catalog__story-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

@media (width >= 40rem) {
	.ff-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3.5rem 1.5rem;
	}

	.ff-catalog__grid > li.ff-catalog__story {
		grid-column: span 2;
	}
}

@media (width >= 64rem) {
	.ff-catalog__grid {
		grid-auto-flow: dense;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 4rem 2rem;
	}

	.ff-catalog__grid > li.ff-catalog__story {
		grid-row: span 2;
	}

	.ff-catalog__grid > li.ff-catalog__story--end {
		grid-column: 2 / span 2;
	}

	.ff-catalog__story .ff-catalog__details {
		flex: 0 0 auto;
	}

	.ff-catalog__story-image {
		aspect-ratio: auto;
		flex: 1 1 0;
		min-height: 0;
	}
}

@media (width >= 80rem) {
	.ff-catalog__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ff-catalog__grid > li.ff-catalog__story {
		grid-column: 1 / span 2;
		grid-row: span 2;
	}

	.ff-catalog__grid > li.ff-catalog__story--end {
		grid-column: 3 / span 2;
	}
}

.ff-catalog__empty {
	padding: 3rem 0;
}

.ff-catalog__pages {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	margin-top: 4.5rem;
}

.ff-catalog__pages a,
.ff-catalog__pages span {
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

.ff-catalog__pages-nav {
	font-size: 0.875rem;
}

.ff-catalog__pages-nav.is-disabled {
	color: #17171455;
}

.ff-catalog__pages span[aria-current="page"] {
	background: #6b222f;
	color: #fff;
}
