

/* Start:/local/components/kulinary/product.overview/style.css?177461819016096*/
/**
 * Product Overview Component
 * Production-grade styles with mobile responsiveness
 */

/* ============================================
   Layout & Container
   ============================================ */

h1 + .product-overview {
	/* Target the product-overview component when it immediately follows h1 */
}

h1:has(+ .product-overview) {
	/* Hide h1 when product-overview is its next sibling */
	display: none;
}

.product-overview {
	position: relative;
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 48px;
	max-width: 1200px;
}

/* ============================================
   Images Column
   ============================================ */

.product-overview__images {
	position: relative;
}

.product-overview__image-container {
	position: relative;
}

/* Badges */
.product-overview__badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 20px;
}

.product-overview__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}

.product-overview__badge--discount {
	background: #ff6b6b;
	color: white;
}

.product-overview__badge--new {
	background: #4caf50;
	color: white;
}

.product-overview__badge--hit {
	background: #ff9800;
	color: white;
}

.product-overview__badge--profit {
	background: #2196f3;
	color: white;
}

.product-overview__badge--frozen {
	background: rgba(33, 150, 243, 0.95);
	color: white;
	padding: 8px;
}

.product-overview__badge--frozen svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Unavailable Overlay */
.product-overview__unavailable-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(2px);
	z-index: 25;
}

.product-overview__unavailable-text {
	font-size: 18px;
	font-weight: 600;
	color: #666;
	padding: 12px 24px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Favorite Button */
.product-overview__favorite {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 20;
}

/* ============================================
   Info Column
   ============================================ */

.product-overview__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-block: 28px;
}

/* Rating */
.product-overview__rating {
	margin-right: 10px;
	background: var(--background);
}

/* Title */
.product-overview__title {
	font-size: 28px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	margin-bottom: 8px !important;
	color: var(--foreground) !important;
	font-family: var(--font-body) !important;
}

/* Weight/Count */
.product-overview__weight {
	font-size: 16px;
	color: var(--background-muted);
	font-weight: 500;
}

/* Description */
.product-overview__description {
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: var(--foreground);
}

.product-overview__description *:first-child {
	font-size: 18px !important;
	font-weight: 700;
	line-height: 24px !important;
	color: var(--foreground) !important;
}

.product-overview__description p {
	font-size: 16px;
	line-height: 24px;
}

/* Quick Nutrition Info */

.product-overview__nutrition {
	display: flex;
	flex-direction: column;
}

.product-overview__nutrition-quick {
	height: fit-content;
	border-radius: var(--radius-xl);
	font-size: 13px;
	border: 1px solid var(--grey-1);
	overflow: hidden;
}

.product-overview__nutrition-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.product-overview__nutrition-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: 12px;
	text-align: center;
}

.product-overview__nutrition-item:last-child {
	border-right: none;
}

.product-overview__nutrition-value {
	font-weight: 700;
	color: var(--foreground);
	font-size: 20px;
	line-height: 26px;
}

.product-overview__nutrition-label {
	color: var(--background-muted);
	font-size: 14px;
	line-height: 18px;
}

.product-overview__nutrition-footer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--grey-1);
}

.product-overview__nutrition-footer-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 14px;
	background-color: var(--grey-2);
	border-right: 1px solid var(--grey-1);
}

.product-overview__nutrition-footer-item:last-child {
	border-right: none;
}

.product-overview__nutrition-footer-value {
	font-weight: 700;
	color: var(--foreground);
	font-size: 14px;
	line-height: 18px;
}

.product-overview__nutrition-footer-label {
	font-weight: 400;
	color: var(--background-muted);
	font-size: 14px;
	line-height: 18px;
}

/* Price Block */
.product-overview__price-block {
	margin-bottom: 20px;
}

.product-overview__price-old-wrapper {
	margin-bottom: 4px;
}

.product-overview__price-old {
	font-size: 14px;
	color: var(--background-muted);
	text-decoration: line-through;
}

.product-overview__price-main {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.product-overview__price {
	font-size: 28px;
	font-weight: 700;
	color: var(--foreground);
	line-height: 1.3;
}

.product-overview__price--discount {
	color: var(--danger);
}

.product-overview__price-per-kg {
	font-size: 14px;
	color: var(--background-muted);
	font-weight: 500;
}

/* Action Buttons */
.product-overview__actions {
	width: 50%;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.product-overview__actions .cart-btn-container {
	height: 48px !important;
}

.product-overview__actions .cart-btn {
	font-size: 16px;
	height: 48px;
}

/* Hide prices and actions when not available */
.product-overview[data-available='N'] .product-overview__price-block,
.product-overview[data-available='N'] .product-overview__actions {
	display: none;
}

/* ============================================
   Tabs Navigation
   ============================================ */

.product-overview__tabs {
	display: flex;
	gap: 2px;
	margin: 28px 0 0 0;
	background: var(--grey-2);
	border-radius: var(--radius-xl);
	overflow-x: auto;
	border: 3px solid var(--grey-2);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.product-overview__tabs::-webkit-scrollbar {
	display: none;
}

.product-overview__tab {
	flex: 1;
	text-align: center;
	padding: 16px 28px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--foreground);
	background-color: transparent;
	border-radius: var(--radius-xl);
	position: relative;
	white-space: nowrap;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
	flex-shrink: 0;
}

.product-overview__tab:hover {
	color: var(--primary);
	background-color: var(--background);
}

.product-overview__tab[aria-selected='true'] {
	color: var(--foreground);
	background-color: var(--background);
}

/* ============================================
   Tab Content
   ============================================ */

.product-overview__content {
	margin-top: 28px;
	padding-bottom: 40px;
}

.product-overview__content-inner {
	display: flex;
	flex-direction: row;
	gap: 28px;
}

.product-overview__content-inner > * {
	flex: 1;
}

.product-overview__content-section {
	display: none;
}

.product-overview__content-section--active {
	display: block;
}

.product-overview__content-section[hidden] {
	display: none;
}

.product-overview__content-header {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 18px !important;
	margin-bottom: 0px !important;
}

.product-overview__content-text {
	font-size: 15px;
	line-height: 24px;
	color: var(--foreground);
}

.product-overview__content-text p {
	font-weight: 400 !important;
	margin: 0 0 14px 0;
}

.product-overview__content-text p:last-child {
	margin-bottom: 0;
}

.product-overview__content-text h2,
.product-overview__content-text h3 {
	font-size: 24px !important;
	line-height: 28px !important;
	font-weight: 700;
	margin-top: 24px !important;
	margin-bottom: 14px !important;
	color: var(--foreground);
}

.product-overview__content-text h2:first-child,
.product-overview__content-text h3:first-child {
	margin-top: 0 !important;
}

.product-overview__content-text ul,
.product-overview__content-text ol {
	margin: 12px 0;
	padding-left: 24px;
}

.product-overview__content-text li {
	margin: 8px 0;
}

.product-overview__content-empty {
	color: var(--background-muted);
	font-style: italic;
}

.product-overview__subtitle {
	font-size: 20px;
	font-weight: 600;
	color: var(--foreground);
	margin: 32px 0 16px 0;
}

.product-overview__composition,
.product-overview__storage {
	margin-top: 32px;
}

/* Nutrition Table */
.nutrition-table {
	background: var(--grey-2);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--grey-1);
}

.nutrition-table__header {
	display: flex;
	justify-content: space-between;
	padding: 16px 20px;
	background: var(--grey-2);
	font-weight: 600;
	border-bottom: 1px solid var(--grey-1);
	font-size: 14px;
	color: var(--foreground);
}

.nutrition-table__row {
	display: flex;
	justify-content: space-between;
	padding: 14px 20px;
	border-bottom: 1px solid var(--grey-1);
	font-size: 14px;
	color: var(--background-muted);
}

.nutrition-table__row:last-child {
	border-bottom: none;
}

.nutrition-table__row--energy {
	background: var(--grey-2);
	font-weight: 500;
}

.nutrition-table__value {
	font-weight: 500;
	color: var(--foreground);
}

.nutrition-table__value--bold {
	font-weight: 700;
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (max-width: 1024px) {
	.product-overview {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.product-overview__title {
		font-size: 28px;
	}

	.product-overview__price {
		font-size: 32px;
	}

	.product-overview__image-container {
	}

	.product-overview__tabs {
		gap: 2px;
		margin-top: 0px;
	}
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 768px) {
	.product-overview {
		gap: 18px;
	}

	.product-overview__images {
		margin-bottom: 0;
	}

	.product-overview__image-container {
		max-width: 100%;
	}

	.product-overview__actions .favorites-btn {
		width: fit-content;
	}

	.product-overview__rating {
		position: absolute;
		bottom: 14px;

		padding: 4px calc(var(--bs-gutter-x) + 8px) 4px 8px;
		right: calc(var(--bs-gutter-x) * -2);
	}

	.product-overview__badges {
		position: absolute;
		top: 16px;
		left: 0px;
		gap: 6px;
	}

	.product-overview__badge {
		font-size: 11px;
		padding: 5px 10px;
	}

	.product-overview__unavailable-text {
		font-size: 16px;
		padding: 10px 20px;
	}

	.product-overview__info {
		gap: 16px;
	}

	.product-overview__content-inner {
		flex-direction: column-reverse;
	}

	.product-overview__rating {
		font-size: 13px;
	}

	.product-overview__rating svg {
		width: 12px;
		height: 12px;
	}

	.product-overview__title {
		font-size: 22px;
		line-height: 1.3;
	}

	.product-overview__weight {
		font-size: 14px;
	}

	.product-overview__description p {
		font-size: 14px;
		line-height: 18px;
	}

	.product-overview__nutrition-quick {
		font-size: 12px;
		line-height: 1.2;
	}

	.product-overview__nutrition-header {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.product-overview__nutrition-calories {
		font-size: 13px;
		line-height: 1.2;
	}

	.product-overview__nutrition-items {
		gap: 12px;
		line-height: 1.2;
	}

	.product-overview__nutrition-value {
		font-size: 15px;
		line-height: 1.2;
	}

	.product-overview__nutrition-label {
		font-size: 11px;
		line-height: 1.2;
	}

	.product-overview__price-block {
	}

	.product-overview__price {
		font-size: 28px;
	}

	.product-overview__price-per-kg {
		font-size: 13px;
	}

	.product-overview__price-main {
		gap: 10px;
	}

	.product-overview__actions {
		gap: 10px;
		margin-top: 12px;
	}

	.product-overview__actions > * {
		width: 100%;
	}

	.product-overview__tab {
		font-size: 14px;
		padding-block: 14px;
	}

	.product-overview__content {
		margin-top: 24px;
		padding-bottom: 32px;
	}

	.product-overview__content-inner {
		flex-direction: column-reverse;
		gap: 18px;
	}

	.product-overview__content-inner > * {
		flex: 0 0 auto;
	}

	.product-overview__content-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.product-overview__subtitle {
		font-size: 18px;
		margin: 24px 0 12px 0;
	}

	.nutrition-table__header,
	.nutrition-table__row {
		padding: 12px 16px;
		font-size: 13px;
	}
}

/* ============================================
   Responsive - Small Mobile
   ============================================ */

@media (max-width: 480px) {
	.product-overview {
		gap: 18px;
	}

	.product-overview__info {
		padding-top: 0px;
		padding-bottom: 20px;
		gap: 8px;
	}

	.carousel-thumbnails__main {
		min-height: unset;
	}

	.product-overview__title {
		font-size: 20px !important;
		line-height: 26px !important;
	}

	.product-overview__price-block {
		margin-bottom: 14px;
	}

	.product-overview__price {
		font-size: 24px;
	}

	.product-overview__price-old {
		font-size: 14px;
	}

	.product-overview__price-per-kg {
		font-size: 12px;
		margin-left: auto;
	}

	.product-overview__tabs {
	}

	.product-overview__tab {
		padding: 12px 18px;
		font-size: 13px;
	}

	.product-overview__content {
		margin-top: 20px;
		padding-bottom: 24px;
	}

	.product-overview__content-text {
		font-size: 14px;
	}

	.product-overview__subtitle {
		font-size: 16px;
	}

	.nutrition-table__header,
	.nutrition-table__row {
		padding: 10px 12px;
		font-size: 12px;
	}

	.product-overview__actions {
		width: 100%;
		margin-top: 0px;
	}

	.product-overview__actions .favorites-btn {
		position: absolute;
		top: 12px;
		right: 0;
	}
}

/* ============================================
   Accessibility
   ============================================ */

/* Focus states */
.product-overview__tab:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	.product-overview__tab {
		transition: none;
	}
}

.product__badge {
	padding: 4px 10px;
	border-radius: var(--radius-xl);
	font-size: 12px;
	line-height: 0;
	font-weight: 600;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
}

.product__badge--unavailable-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.9);
	color: var(--foreground);
	padding: 8px 16px;
	border-radius: var(--radius-xl);
	font-weight: 600;
	z-index: 10;
}

.product__badge--discount {
	background: var(--danger);
}

.product__badge--new {
	background: var(--primary);
}

.product__badge--profit {
	background: #ffd700;
	color: var(--foreground);
}

.product__badge--hit {
	background: #df5f1a;
}

.product__badge--frozen {
	background: #388db8;
	width: 24px;
	height: 24px;
	padding: 0;
}

.product-overview__nutrition-title {
	margin-bottom: 0 !important;
}

.product-overview__nutrition-tabs {
	display: inline-flex;
	gap: 2px;
	background: var(--grey-2);
	border-radius: var(--radius-xl);
	overflow-x: auto;
	border: 3px solid var(--grey-2);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.product-overview__nutrition-tab {
	text-align: center;
	padding: 4px 14px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--foreground);
	background-color: transparent;
	border-radius: var(--radius-xl);
	position: relative;
	white-space: nowrap;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
	flex-shrink: 0;
}

.product-overview__nutrition-tab:hover {
	color: var(--primary);
	background-color: var(--background);
}

.product-overview__nutrition-tab--active {
	color: var(--foreground);
	background-color: var(--background);
}

.product-overview__nutrition-quick {
	display: none;
	margin: 16px 0;
}

.product-overview__nutrition-quick--active {
	display: block;
}

/* End */


/* Start:/local/components/kulinary/carousel/templates/thumbnailed/style.css?17746215554608*/
/**
 * Carousel with Thumbnails Component
 * Embla-powered carousel with thumbnail navigation
 */

/* ============================================
   Main Carousel Container
   ============================================ */

.carousel-thumbnails {
	width: 100%;
	position: relative;
}

.carousel-thumbnails .embla__slide {
	flex: 0 0 100% !important;
}

.carousel-thumbnails__main {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
}

.carousel-thumbnails__main .embla__viewport {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--grey-1);
	overflow: hidden;
}

.carousel-thumbnails__main .embla__container {
	display: flex;
	height: 100%;
	user-select: none;
	-webkit-user-select: none;
}

.carousel-thumbnails__main-slide {
	flex: 0 0 100%;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 0px !important;
}

.carousel-thumbnails__main-image {
	aspect-ratio: 1 / 1;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	user-select: none;
	-webkit-user-drag: none;
}

/* ============================================
   Thumbnail Navigation
   ============================================ */

.carousel-thumbnails__thumbs {
	width: fit-content !important;
	margin-inline: auto;
	display: flex;
	gap: 12px;
	width: 100%;
	margin-top: 8px;
}

.carousel-thumbnails__thumb {
	width: 64px;
	height: 64px;
	aspect-ratio: 1;
	border: 2px solid transparent;
	background-color: var(--background);
	border-radius: var(--radius-md);
	border: 1px solid var(--grey-1);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.carousel-thumbnails__thumb--active {
	border-color: var(--primary);
}

.carousel-thumbnails__thumb:focus {
	outline: none;
}

.carousel-thumbnails__thumb:focus-visible {
	outline: 2px solid var(--foreground);
	outline-offset: 2px;
}

.carousel-thumbnails__thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

/* ============================================
   Mobile Dots Navigation
   ============================================ */

.carousel-thumbnails__dots {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding-top: 8px;
}

.carousel-thumbnails__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	flex-shrink: 0;
}

.carousel-thumbnails__dot:hover {
	background: rgba(0, 0, 0, 0.4);
}

.carousel-thumbnails__dot--active {
	background: var(--primary);
	width: 24px;
	border-radius: 4px;
}

.carousel-thumbnails__dot:focus {
	outline: none;
}

.carousel-thumbnails__dot:focus-visible {
	outline: 2px solid var(--foreground);
	outline-offset: 2px;
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (max-width: 1024px) {
	.carousel-thumbnails__thumbs {
		grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
		gap: 10px;
	}

	.carousel-thumbnails__main-slide {
	}
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 768px) {


	.carousel-thumbnails__main {
		aspect-ratio: auto;
		min-height: 320px;
		margin-bottom: 0;
	}

	.carousel-thumbnails__main .embla__viewport {
		border-radius: 0;
		border: none;
		padding-left: 0 !important;
	}

	.carousel-thumbnails__main-slide {
		padding: 0 0 0 0 !important;
	}

	.carousel-thumbnails__thumbs {
		display: none;
	}

	.carousel-thumbnails__dots {
		display: flex;
	}
}

@media (max-width: 580px) {
	.carousel-thumbnails__main {
		border-radius: 8px;
		min-height: unset;
	}

	.carousel-thumbnails__main-slide {

	}

	.carousel-thumbnails__dots {
		gap: 6px;
		margin-top: 0px;
	}

	.carousel-thumbnails__dot {
		width: 7px;
		height: 7px;
	}

	.carousel-thumbnails__dot--active {
		width: 20px;
	}
}

@keyframes carousel-loading {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.carousel-thumbnails__thumb,
	.carousel-thumbnails__dot {
		transition: none;
	}

	.carousel-thumbnails__main::before {
		animation: none;
	}
}

@media (prefers-contrast: high) {
	.carousel-thumbnails__thumb {
		border-width: 3px;
	}

	.carousel-thumbnails__thumb--active {
		border-color: currentColor;
	}

	.carousel-thumbnails__dot--active {
		background: currentColor;
	}
}

/* End */


/* Start:/local/components/kulinary/review.brief/style.css?1774527329490*/
.review-brief {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--foreground);

    font-size: 14px;
    line-height: 18px;
}

.review-brief:hover, .review-brief:focus-visible {
	color: var(--foreground);
	text-decoration: underline;
}

.review-brief svg {
	color: var(--orange);
	width: 1.25em;
	height: 1.25em;
}

.rating-count {
	color: var(--background-muted);
	font-weight: 400;
}


@media (max-width: 768px) {
	.review-brief {
		font-size: 12px;
		line-height: 16px;
	}
}
/* End */


/* Start:/local/components/kulinary/action.cart/style.css?17745209861170*/
.cart-btn-container {
	width: 100%;
	max-width: 100%;
	height: 40px;
	position: relative;
	user-select: none;
}

.cart-btn-container[data-loading='true'] {
	opacity: 0.65;
}

.cart-btn {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-xl) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	transition: all 0.2s ease;
	padding: 0;
	outline: none;
}

.cart-btn--add svg {
	width: 24px;
	height: 24px;
}

.cart-btn--counter {
	border: 1px solid var(--grey-1);
	background-color: var(--grey-2);
	color: var(--background-muted);
	justify-content: space-between;
	padding: 4px;
}

.cart-btn__control {
	padding: 0 !important;
	width: unset !important;
	height: 100% !important;
	aspect-ratio: 1/1;
	border-radius: var(--radius-xl) !important;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	transition: all 0.2s;
}

.cart-btn__count {
	font-size: 16px;
	font-weight: 600;
	min-width: 24px;
	text-align: center;
	color: var(--background-muted);
}

/* End */


/* Start:/local/components/kulinary/action.favorites/style.css?1774520987671*/
.favorites-btn {
	height: 32px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.favorites-btn svg {
	width: 80%;
	height: 80%;
}

.favorites-btn svg path {
	fill: var(--background);
	color: var(--foreground);
}

.favorites-btn:hover svg path {
	fill: var(--foreground);
	color: var(--foreground);
}

.favorites-btn[data-favorite='true'] svg path {
	fill: var(--danger-light);
	color: var(--danger-light);
}

.favorites-btn[data-favorite='true']:hover svg path {
	fill: var(--danger);
	color: var(--danger);
}

.favorites-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* End */
/* /local/components/kulinary/product.overview/style.css?177461819016096 */
/* /local/components/kulinary/carousel/templates/thumbnailed/style.css?17746215554608 */
/* /local/components/kulinary/review.brief/style.css?1774527329490 */
/* /local/components/kulinary/action.cart/style.css?17745209861170 */
/* /local/components/kulinary/action.favorites/style.css?1774520987671 */
