.ppb-favorite-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 42px;
	padding: .65rem .9rem;
	border: 1px solid rgba(122, 45, 72, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	color: #6d2943;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

.ppb-favorite-button:hover,
.ppb-favorite-button:focus-visible {
	transform: translateY(-1px);
	border-color: #ad365f;
}

.ppb-favorite-button.is-favorite {
	border-color: #ad365f;
	background: #ad365f;
	color: #fff;
}

.ppb-favorite-button.is-favorite .ppb-icon {
	fill: currentColor;
}

.ppb-favorite-button[aria-busy="true"] {
	opacity: .62;
	cursor: wait;
}

.ppb-favorite-button--icon {
	width: 42px;
	min-width: 42px;
	padding: 0;
}

.ppb-favorite-button--icon .ppb-favorite-button__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ppb-favorite-button .ppb-icon {
	width: 20px;
	height: 20px;
}

.ppb-discovery-card__favorite {
	position: absolute;
	top: .8rem;
	right: .8rem;
}

.ppb-discovery-card__body {
	position: relative;
}

.ppb-favorites-shell {
	padding-bottom: 5rem;
}

.ppb-favorites-heading .ppb-button .ppb-icon {
	width: 20px;
	height: 20px;
}

.ppb-favorites-tabs {
	display: flex;
	gap: .75rem;
	margin: 1.5rem 0 2.5rem;
	overflow-x: auto;
}

.ppb-favorites-tabs a {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	padding: .8rem 1rem;
	border: 1px solid var(--ppb-border, #ddd5d0);
	border-radius: 999px;
	background: #fff;
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

.ppb-favorites-tabs .ppb-icon {
	width: 20px;
	height: 20px;
}

.ppb-favorites-tabs strong {
	display: grid;
	min-width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 999px;
	background: #f1e5e8;
	color: #6d2943;
	font-size: .78rem;
}

.ppb-favorites-section {
	scroll-margin-top: 6rem;
	margin-top: 3rem;
}

.ppb-favorites-section > header {
	margin-bottom: 1.25rem;
}

.ppb-favorites-section > header h2 {
	margin: .25rem 0 0;
}

.ppb-favorites-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.ppb-favorite-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--ppb-border, #ddd5d0);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(61, 44, 37, .08);
}

.ppb-favorite-card__photo,
.ppb-favorite-card__media {
	display: block;
	overflow: hidden;
	background: #eee8e3;
}

.ppb-favorite-card__photo img,
.ppb-favorite-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ppb-favorite-card__media {
	display: grid;
	height: 190px;
	place-items: center;
}

.ppb-favorite-card__media > span {
	font-size: 4rem;
	font-weight: 800;
	color: #6d2943;
}

.ppb-favorite-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.1rem;
}

.ppb-favorite-card__body h3 {
	margin: .3rem 0;
}

.ppb-favorite-card__body h3 a,
.ppb-favorite-card__seller {
	color: inherit;
	text-decoration: none;
}

.ppb-favorite-card__body p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ppb-favorite-card__seller {
	color: #7a6570;
	font-size: .88rem;
	font-weight: 700;
}

.ppb-favorite-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ppb-favorites-empty {
	padding: 3rem 1.5rem;
	border: 1px dashed var(--ppb-border, #cfc3bd);
	border-radius: 22px;
	text-align: center;
}

.ppb-favorites-empty .ppb-icon {
	width: 42px;
	height: 42px;
	color: #ad365f;
}

.ppb-favorites-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.ppb-favorites-pagination a {
	font-weight: 700;
}

@media (max-width: 900px) {
	.ppb-favorites-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.ppb-favorites-grid {
		grid-template-columns: 1fr;
	}

	.ppb-favorite-button--shop {
		width: 100%;
	}
}
