

/* Start:/local/components/kulinary/catalog/templates/favorites/style.css?17830182091759*/
.favorites-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.favorites-header__content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.favorites-title {
}

.favorites-count {
	
}

.favorites-clear {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	color: var(--background-muted);
	transition: color 0.2s ease;
}

.favorites-clear:hover {
	color: var(--foreground);
	text-decoration: underline;
}

.favorites-empty {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
}

.favorites-empty img {
	height: 130px !important;
	width: auto !important;
	max-width: 100%;
	margin-bottom: 24px !important;
}

.favorites-empty h1 {
	font-weight: 700;
	color: var(--foreground);
	margin: 0 0 14px !important;
}

.favorites-empty p {
	margin: 0;
	color: var(--background-muted);
}

.favorites-page.is-empty .favorites-empty,
.favorites-empty.is-visible {
	display: flex;
}

.favorites-page.is-empty .favorites-header,
.favorites-empty.is-visible ~ .favorites-header {
	display: none;
}

.favorites-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 40px;
}

.favorites-grid > * {
	display: flex;
	flex-direction: column;
}

@media (max-width: 1200px) {
	.favorites-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.favorites-grid {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
		gap: 10px;
		margin-bottom: 32px;
	}
}

@media (max-width: 576px) {
	.favorites-grid {
		gap: 6px;
		padding-inline: 6px;
		margin-inline: calc(var(--bs-gutter-x) * -1);
	}
}

/* End */
/* /local/components/kulinary/catalog/templates/favorites/style.css?17830182091759 */
