.pf-cats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--pf-font);
}

.pf-cats__cell {
	margin: 0;
	list-style: none;
}

.pf-cats.pf-cats .pf-cats__item {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 100%;
	padding: 14px;
	border-radius: var(--pf-radius);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line);
	color: var(--pf-txt);
	text-decoration: none;
	transition: box-shadow .2s var(--pf-ease), transform .2s var(--pf-ease);
}

.pf-cats--plain.pf-cats--plain .pf-cats__item {
	background: transparent;
	box-shadow: none;
	padding: 10px 0;
}

.pf-cats.pf-cats .pf-cats__item:hover {
	box-shadow: inset 0 0 0 1px var(--pf-ink), var(--pf-shadow-card);
	color: var(--pf-txt);
}

.pf-cats--plain.pf-cats--plain .pf-cats__item:hover {
	box-shadow: none;
	color: var(--pf-brand);
}

.pf-cats__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex: none;
	border-radius: var(--pf-radius);
	background: var(--pf-paper-2);
	color: var(--pf-txt-2);
	transition: background-color .2s var(--pf-ease), color .2s var(--pf-ease);
}

.pf-cats__item.pf-cats__item:hover .pf-cats__icon {
	background: var(--pf-brand-tint);
	color: var(--pf-brand);
}

.pf-cats__icon.pf-cats__icon .pf-i {
	width: 24px;
	height: 24px;
}

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

.pf-cats.pf-cats .pf-cats__name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

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

.pf-deals {
	display: grid;
	gap: 12px;
	font-family: var(--pf-font);
}

.pf-deals__lead {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	border-radius: var(--pf-radius-lg);
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.pf-scheme--light.pf-scheme--light .pf-deals__lead {
	background: var(--pf-paper-2);
	box-shadow: inset 0 0 0 1px var(--pf-line);
}

.pf-deals.pf-deals .pf-deals__eyebrow {
	margin: 0;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pf-brand-light);
}

.pf-scheme--light.pf-scheme--light .pf-deals__eyebrow {
	color: var(--pf-brand);
}

.pf-deals.pf-deals .pf-deals__title {
	margin: 8px 0 0;
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 27px;
	line-height: .95;
	text-transform: uppercase;
}

.pf-deals.pf-deals .pf-deals__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	color: var(--pf-fg-soft);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
}

.pf-deals.pf-deals .pf-deals__link:hover {
	color: var(--pf-fg);
}

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

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

.pf-deals.pf-deals .pf-deal {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: var(--pf-radius-lg);
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
	color: inherit;
	text-decoration: none;
	transition: background-color .2s var(--pf-ease), box-shadow .2s var(--pf-ease);
}

.pf-deals.pf-deals .pf-deal:hover {
	background: rgba(255, 255, 255, .1);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
	color: inherit;
}

.pf-scheme--light.pf-scheme--light .pf-deal {
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--pf-line);
}

.pf-scheme--light.pf-scheme--light .pf-deal:hover {
	box-shadow: inset 0 0 0 1px var(--pf-ink), var(--pf-shadow-card);
}

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

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

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

.pf-deals.pf-deals .pf-deal__brand {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--pf-fg-faint);
}

.pf-deals.pf-deals .pf-deal__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.3;
}

.pf-deal__prices {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.pf-deals.pf-deals .pf-deal__price {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: 19px;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.pf-deals.pf-deals .pf-deal__old {
	font-size: 12px;
	color: var(--pf-fg-faint);
	text-decoration: line-through;
	font-variant-numeric: tabular-nums;
}

.pf-deal__off {
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--pf-brand);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
	.pf-cats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pf-deals__grid {
		grid-template-columns: repeat(var(--pf-deals-cols, 3), minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.pf-cats {
		grid-template-columns: repeat(var(--pf-cats-cols, 5), minmax(0, 1fr));
	}

	.pf-deals.has-lead {
		grid-template-columns: 1fr 3fr;
		align-items: stretch;
	}
}
