:root {
	--background-color: #f7f7f7;
	--primary-color: #c9386f;
	--primary-hover: #b92a61;
	--text-color: #323232;
	--text-hover: #313131;
	--secondary-text: #6b6b6b;
	--button-bg: #c9386f;
	--button-text-color: #ffffff;
	--button-on-hover: #b92a61;
	--header-bg: #ffffff;
	--footer-bg: #ffffff;
	--footer-bottom-bg: #ffffff;
	--border-color: #f4f4f4;
}

.foodord-products-shortcode__header {
	width: 100%;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
}

.foodord-products-shortcode__header+.foodord-category-section,
.foodord-products-shortcode__header+.foodord-products-empty {
	margin-top: 0;
}

.foodord-products-address-slot,
.foodord-products-toggle-slot {
	width: 100%;
	max-width: 720px;
	box-sizing: border-box;
}

.foodord-products-address-slot {
	display: flex;
	justify-content: center;
}

.foodord-products-address-slot:empty {
	display: none;
}

.foodord-products-address-slot .wr-card__address-bar {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 16px;
	background: #ffffff;
	border-bottom: 1px solid #f4f4f4;
	border-radius: 0;
	box-shadow: none;
	transition: border-color 0.2s ease;
}

.foodord-products-address-slot .wr-card__address-left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	cursor: pointer;
	color: #0f172a;
}

.foodord-products-address-slot .wr-card__address-left svg {
	width: 18px;
	height: 18px;
	color: #c9386f;
	flex-shrink: 0;
}

.foodord-products-address-slot .wr-card__address-value {
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.foodord-products-address-slot .wr-card__address-change {
	appearance: none;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	font-size: 13px;
	border-radius: 9999px;
	height: 28px;
	padding: 0 12px;
	font-weight: 600;
	color: #0f172a;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.foodord-products-address-slot .wr-card__address-change:hover,
.foodord-products-address-slot .wr-card__address-change:focus-visible {
	background: #e5e7eb;
	border-color: #d1d5db;
}


.foodord-products-toggle-slot .wr-card__mode-toggle {
	width: 100%;
	margin: 0 auto;
	padding: 14px 16px;
	background: #ffffff;
	border: 1px solid #ededed;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.foodord-products-toggle-slot .wr-card__mode-group {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	padding: 4px;
	border-radius: 9999px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
}

.foodord-products-toggle-slot .wr-card__mode-btn {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 38px;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: #0f172a;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.foodord-products-toggle-slot .wr-card__mode-btn svg {
	width: 16px;
	height: 16px;
}

.foodord-products-toggle-slot .wr-card__mode-btn.is-active {
	background: var(--button-bg, #c9386f);
	color: #ffffff;
}

.foodord-products-toggle-slot .wr-card__mode-btn.is-active * {
	color: inherit;
}

.foodord-products-toggle-slot .wr-card__mode-btn.is-closed,
.foodord-products-toggle-slot .wr-card__mode-btn[disabled] {
	background: transparent;
	color: var(--text-color);
	opacity: 0.5;
	cursor: not-allowed;
	text-decoration: line-through;
}

.foodord-products-toggle-slot .wr-card__mode-btn.is-closed *,
.foodord-products-toggle-slot .wr-card__mode-btn[disabled] * {
	color: inherit;
}

@media (max-width: 768px) {
	.foodord-products-shortcode__header {
		padding: 0 16px;
		margin-bottom: 20px;
	}

	.foodord-products-address-slot,
	.foodord-products-toggle-slot {
		max-width: 100%;
	}

	.foodord-products-toggle-slot .wr-card__mode-toggle {
		padding: 12px;
	}

	.foodord-products-toggle-slot .wr-card__mode-btn {
		height: 34px;
		font-size: 14px;
	}
}

@media (min-width: 1024px) {
	.foodord-products-shortcode:not(.foodord-products-shortcode--empty) {
		margin: 0;
	}
}

.foodord-products-shortcode--empty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
	width: 100%;
	box-sizing: border-box;
}

.foodord-products-shortcode--empty .foodord-products-shortcode__header {
	margin-bottom: 32px;
}

.foodord-category-section {
	margin-bottom: 20px;
}

.foodord-products-empty {
	margin: 0 auto;
	padding: 64px 24px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.foodord-products-empty__icon-wrap {
	width: 80px;
	height: 80px;
	background: #f8fafc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #94a3b8;
	position: relative;
}

.foodord-products-empty__icon-wrap::after {
	content: '';
	position: absolute;
	inset: -8px;
	border: 1px dashed #e2e8f0;
	border-radius: 50%;
	opacity: 0.6;
}

.foodord-products-empty__icon {
	width: 36px;
	height: 36px;
}

.foodord-products-empty__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-color);
	letter-spacing: -0.01em;
}

.foodord-products-empty__description {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--secondary-text);
	max-width: 340px;
}

.foodord-category-products {
	display: grid;
	margin-bottom: 2rem;
}

@media (min-width: 1025px) {
	.foodord-category-products {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

.foodord-product-category {
	font-size: 24px;
	font-weight: 600;
	background: transparent;
	margin-bottom: 10px;
}

.foodord-product-category-description {
	margin: 0 0 10px;
	line-height: 1.55;
}

.foodord-product-category-description> :last-child,
.foodord-product-category-description__text {
	display: contents;
	width: 100%;
	font-size: 13px;
	color: var(--secondary-text);
}

.foodord-product-card {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.6);
	border-radius: 12px;
	overflow: visible;
	outline: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: stretch;
	height: 120px;
	min-height: 120px;
	max-height: 120px;
	cursor: pointer;
	position: relative;
}

.foodord-product-card:hover {
	border-color: rgba(226, 232, 240, 0.9);
	transform: translateY(-2px);
}

.foodord-product-card .product-image-container {
	background: transparent;
	padding: 30px;
	width: 100px;
	height: 140px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: relative;
}

.foodord-product-card .product-image-anchor {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.foodord-product-card .product-image {
	max-width: 85px;
	max-height: 85px;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	transition: transform 0.2s ease;
}

.foodord-product-card:hover .product-image {
	transform: scale(1.05);
}

.foodord-product-card .product-info {
	padding: 17px 10px 10px 17px;
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: visible;
	position: relative;
}

.foodord-product-card .product-title-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 6px 0;
}

.foodord-product-card .product-title {
	margin: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	flex: 0 1 auto;
	min-width: 0;
	height: auto;
	max-height: 1.25em;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.foodord-product-card .product-title a {
	text-decoration: none;
}

.foodord-allergy-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: none;
	background: #f1f5f9;
	color: #64748b;
	margin-left: 8px;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	padding: 0;
	outline: none;
	position: relative;
	top: -1px;
}

.foodord-allergy-trigger:hover {
	background-color: #334155;
	color: #ffffff;
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 4px 12px rgba(51, 65, 85, 0.12);
}

.foodord-allergy-trigger:active {
	transform: scale(0.95);
}

.foodord-allergy-trigger:focus-visible {
	outline: 2px solid rgba(100, 116, 139, 0.2);
	outline-offset: 1px;
}

.foodord-allergy-trigger__icon {
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.foodord-allergy-trigger__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.foodord-product-card .product-top {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.foodord-product-card .product-description {
	height: calc(1.4em * 2);
	flex-shrink: 0;
	overflow: hidden;
}

.foodord-product-card .product-description p {
	margin: 0;
	overflow: hidden;
	display: -webkit-box;
	color: #666666;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: calc(1.5em * 2);
	word-break: break-word;
}


.foodord-product-card .product-price-container {
	margin: 0;
}

.foodord-price-prefix {
	font-size: 11px;
}

.foodord-product-card .product-price {
	letter-spacing: -0.01em;
}

.foodord-product-card .product-price .woocommerce-Price-amount,
.foodord-product-card .product-price .woocommerce-Price-currencySymbol {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.foodord-product-card .product-price del {
	margin-right: 5px;
}

.foodord-product-card .product-actions {
	margin: 0;
	align-self: flex-end;
}

.foodord-product-card__status-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(185, 28, 28, 0.1) 100%);
	color: #dc2626;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	padding: 1px 5px;
	border-radius: 6px;
	pointer-events: none;
	white-space: nowrap;
	z-index: 10;
	border: 1px solid rgba(220, 38, 38, 0.2);
}

.foodord-product-card--unavailable {
	opacity: 0.7;
	cursor: not-allowed;
}

.foodord-product-card--unavailable .product-title,
.foodord-product-card--unavailable .product-description-text,
.foodord-product-card--unavailable .product-price {
	color: #6b6b6b;
}

.foodord-product-card--unavailable .product-actions .button,
.foodord-product-card--unavailable .product-actions .add_to_cart_button {
	pointer-events: none;
}

.foodord-product-card__button--disabled,
.foodord-product-card__button--disabled:hover,
.foodord-product-card__button--disabled:focus {
	background: #e5e7eb;
	color: #6b7280;
	border-color: #d1d5db;
	box-shadow: none;
	cursor: not-allowed;
}


.foodord-card-count {
	position: absolute;
	pointer-events: none;
	z-index: 5;
	display: none;
}

.foodord-card-count--visible {
	display: flex;
	align-items: center;
	justify-content: center;
}

.foodord-product-card>.foodord-card-count {
	top: 0;
	right: 0;
	min-width: 26px;
	height: 26px;
	background-color: #323232;
	color: #ffffff;
	border-bottom-left-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	padding: 2px 8px;
}

/* Increase specificity to override all layout variations */
.foodord-products-shortcode .foodord-product-card .product-actions .add_to_cart_button.foodord-button-has-count::before,
.foodord-products-shortcode .foodord-product-card .product-actions .add_to_cart_button.foodord-button-has-count::after,
.foodord-products-shortcode .foodord-product-card .product-actions .add_to_cart_button.foodord-button-has-count:hover::before,
.foodord-products-shortcode .foodord-product-card .product-actions .add_to_cart_button.foodord-button-has-count:hover::after {
	display: none;
	content: none;
}

.add_to_cart_button .foodord-card-count {
	inset: 0;
	background: transparent;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	text-indent: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.foodord-product-card .product-actions .button,
.foodord-product-card .product-actions .add_to_cart_button {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.6);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-sizing: border-box;
	padding: 0;
	text-indent: -9999px;
	overflow: hidden;
	z-index: 10;
	position: relative;
	color: var(--text-color);
	transition: all 0.2s ease;
}

.foodord-product-card .product-actions .button.foodord-button-has-count,
.foodord-product-card .product-actions .add_to_cart_button.foodord-button-has-count {
	overflow: hidden;
}

.foodord-product-card .product-actions .button::before,
.foodord-product-card .product-actions .add_to_cart_button::before,
.foodord-product-card .product-actions .button::after,
.foodord-product-card .product-actions .add_to_cart_button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: currentColor;
	display: block;
	border-radius: 2px;
	transition: background 0.2s ease, color 0.2s ease;
}

.foodord-product-card .product-actions .button::before,
.foodord-product-card .product-actions .add_to_cart_button::before {
	width: 50%;
	height: 2px;
}

.foodord-product-card .product-actions .button::after,
.foodord-product-card .product-actions .add_to_cart_button::after {
	width: 2px;
	height: 50%;
}

.foodord-product-card .product-actions .button:hover::before,
.foodord-product-card .product-actions .add_to_cart_button:hover::before,
.foodord-product-card .product-actions .button:hover::after,
.foodord-product-card .product-actions .add_to_cart_button:hover::after {
	background: currentColor;
}

.foodord-product-card .product-actions .button:hover,
.foodord-product-card .product-actions .add_to_cart_button:hover {
	background: #f8f9fa;
	border-color: rgba(226, 232, 240, 0.9);
	color: var(--text-hover);
	transform: scale(1.1);
}


@media (max-width: 1023px) {
	.foodord-products-shortcode {
		margin: 0;
		gap: 0;
		padding: 0;
	}

	.foodord-product-card {
		margin: 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.foodord-product-card .product-description p {
		width: 55ch;
	}
}

@media (max-width: 786px) {
	.foodord-product-card .product-image-container {
		width: 100px;
		height: 140px;
		padding: 30px;
	}

	.foodord-product-card .product-image {
		max-width: 85px;
		max-height: 85px;
	}

	.foodord-product-card .product-info {
		padding: 17px 10px 10px 17px;
	}
}


@media (max-width: 480px) {
	.foodord-product-card .product-description p {
		width: auto;
		max-width: 100%;
		word-break: break-word;
		overflow-wrap: break-word;
		hyphens: auto;
	}

	.foodord-product-card .product-description {
		height: auto;
		min-height: calc(1.4em * 2);
	}

	.foodord-product-card .product-actions .button,
	.foodord-product-card .product-actions .add_to_cart_button {
		bottom: 0;
	}
}

body:has(.foodord-products-shortcode) .entry-header,
body:has(.wp-block-foodord-products) .entry-header {
	display: none;
}

.foodord-product-card .product-image.product-image-placeholder {
	opacity: 0.4;
	filter: grayscale(100%);
}

.foodord-products-shortcode .foodord-product-card .product-bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 10px;
	position: absolute;
	bottom: 10px;
	left: 17px;
	right: 10px;
}

.foodord-products-shortcode .foodord-product-card .product-actions {
	position: relative;
	top: 10px;
	right: 0;
	margin-left: auto;
	order: 2;
}

.foodord-products-shortcode .foodord-product-card .product-price-container {
	order: 1;
}


@media (max-width: 1024px) {
	.foodord-products-shortcode.foodord-products-shortcode {
		margin: 0;
		padding: 0;
		gap: 0;
	}


	.foodord-category-products {
		grid-template-columns: 1fr;
		gap: 0;
		padding-left: 0;
		padding-right: 0;
	}


	.foodord-product-category {
		padding: 0 1rem;
	}


	.foodord-product-card {
		margin: 0;
		border-left: none;
		border-right: none;
		width: 100%;
	}


	.foodord-product-card .product-actions {
		position: absolute;
		right: 5px;
		margin-left: 0;
		z-index: 11;
	}

	.foodord-product-category-description {
		padding: 0 1rem;
	}

}


@media (min-width: 1025px) {
	.foodord-products-shortcode {
		margin: 20px 0;
	}

	body.foodord-theme-active .foodord-products-shortcode {
		max-width: calc(100vw - 350px);
	}

	.foodord-products-shortcode .foodord-product-card .product-bottom {
		left: 15px;
	}

	.foodord-category-products {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.foodord-product-card {
		height: 130px;
		min-height: 130px;
		max-height: 130px;
	}

	.foodord-product-card .product-image-container {
		width: 110px;
		height: 130px;
		padding: 35px;
	}

	.foodord-product-card .product-info {
		padding: 20px 15px 15px 15px;
	}

}

@media (min-width: 1200px) {
	body.foodord-theme-active .foodord-products-shortcode {
		max-width: calc(100vw - 370px);
	}

	.foodord-products-shortcode .foodord-product-card .product-bottom {
		left: 15px;
	}

	.foodord-category-products {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.foodord-product-card {
		height: 140px;
		min-height: 130px;
		max-height: 130px;
	}

	.foodord-product-card .product-image-container {
		width: 110px;
		height: 140px;
		padding: 35px;
	}

	.foodord-product-card .product-info {
		padding: 20px 15px 15px 15px;
	}

}

.foodord-category-products.foodord-category-products--single-column {
	grid-template-columns: repeat(1, 1fr);
}

body .foodord-products-toggle-slot .wr-card__mode-group .wr-card__mode-btn:focus,
body .foodord-products-toggle-slot .wr-card__mode-group .wr-card__mode-btn:focus-visible,
body .foodord-products-toggle-slot .wr-card__mode-group .wr-card__mode-btn:active {
	outline: none;
	box-shadow: none;
}

.foodord-products-shortcode:has(.foodord-product-card--grid) .foodord-category-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

@media (max-width: 640px) {
	.foodord-products-shortcode:has(.foodord-product-card--grid) .foodord-category-products {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (min-width: 641px) and (max-width: 1024px) {
	.foodord-products-shortcode:has(.foodord-product-card--grid) .foodord-category-products {
		padding-left: 16px;
		padding-right: 16px;
	}
}

.foodord-products-shortcode .foodord-product-card--grid {
	flex-direction: column;
	height: auto;
	min-height: unset;
	max-height: none;
	padding: 0;
	gap: 0;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
	background: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.foodord-products-shortcode .foodord-product-card--grid:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
	border-color: #c9386f;
}

.foodord-products-shortcode .foodord-product-card--grid .card-image-wrap {
	position: relative;
	width: 100%;
	padding-top: 55%;
	background: #f8fafc;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}



.foodord-products-shortcode .foodord-product-card--grid .product-image-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}

.foodord-products-shortcode .foodord-product-card--grid .product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	max-height: none;
	opacity: 1;
	border-radius: 0;
}

.foodord-products-shortcode .foodord-product-card--grid .card-badges {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 10;
	display: flex;
	gap: 4px;
}

.foodord-products-shortcode .foodord-product-card--grid .card-badges span {
	font-size: 7px;
	font-weight: 800;
	padding: 1px 5px;
	border-radius: 3px;
	text-transform: uppercase;
}

.foodord-products-shortcode .foodord-product-card--grid .card-content {
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 4px;
}

.foodord-products-shortcode .foodord-product-card--grid .product-info {
	padding: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.foodord-products-shortcode .foodord-product-card--grid .product-title {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.foodord-products-shortcode .foodord-product-card--grid .product-description-text {
	font-size: 12px;
	color: #64748b;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.foodord-products-shortcode .foodord-product-card--grid .product-bottom {
	position: static;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: auto;
	width: 100%;
}

@media (max-width: 640px) {
	.foodord-products-shortcode:has(.foodord-product-card--grid, .foodord-product-card--streamline) .foodord-category-products {
		padding: 0 8px;
	}
}

@media (max-width: 480px) {
	.foodord-products-shortcode .foodord-product-card--grid .card-content {
		padding: 8px 10px 10px;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-title {
		font-size: 13px;
		line-height: 1.25;
		margin-bottom: 2px;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-description-text {
		font-size: 11px;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-bottom {
		gap: 4px;
		padding-top: 8px;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-price-container {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-price {
		font-size: 14px;
		white-space: nowrap;
	}

	.foodord-products-shortcode .foodord-product-card--grid .foodord-price-prefix {
		font-size: 9px;
		margin-bottom: 0;
	}

	.foodord-products-shortcode .foodord-product-card--grid .product-actions .button,
	.foodord-products-shortcode .foodord-product-card--grid .product-actions .add_to_cart_button {
		width: 30px;
		height: 30px;
		flex-shrink: 0;
	}

	body .foodord-products-shortcode .foodord-product-card--grid .card-content .foodord-pro-bogo-badge {
		display: inline-grid;
		place-items: center;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 4px 0 4px;
		border-radius: 50%;
		background: #10b981;
		border: none;
		cursor: pointer;
		font-size: 0;
		line-height: 0;
		overflow: hidden;
	}

	body .foodord-products-shortcode .foodord-product-card--grid .card-content .foodord-pro-bogo-icon {
		width: 14px;
		height: 14px;
		margin-top: -9px;
		padding: 0;
	}
}

.foodord-products-shortcode .foodord-product-card--grid .price-label {
	display: none;
}

.foodord-products-shortcode .foodord-product-card--grid .product-price {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}

.foodord-products-shortcode .foodord-product-card--grid .foodord-price-prefix {
	display: block;
	font-size: 10px;
	font-weight: 500;
	color: #64748b;
	text-transform: uppercase;
	margin-bottom: 1px;
}

.foodord-products-shortcode .foodord-product-card--grid .product-actions .button,
.foodord-products-shortcode .foodord-product-card--grid .product-actions .add_to_cart_button {
	background: #c9386f;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	color: #ffffff;
}

.foodord-products-shortcode .foodord-product-card--grid .product-actions .button::before,
.foodord-products-shortcode .foodord-product-card--grid .product-actions .add_to_cart_button::before,
.foodord-products-shortcode .foodord-product-card--grid .product-actions .button::after,
.foodord-products-shortcode .foodord-product-card--grid .product-actions .add_to_cart_button::after {
	background: #ffffff;
}

.foodord-products-shortcode .foodord-product-card--grid .foodord-product-card__status-badge {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #dc2626;
	font-size: 13px;
	font-weight: 700;
	z-index: 30;
	backdrop-filter: blur(3px);
	border: none;
	box-sizing: border-box;
}

/* Streamline Layout */
.foodord-products-shortcode .foodord-product-card--streamline {
	background: var(--foodord-bg, #ffffff);
	border-radius: 20px;
	padding: 16px;
	display: flex;
	gap: 16px;
	position: relative;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
	border: 1px solid rgba(0, 0, 0, 0.03);
	min-height: 110px;
	width: 100%;
	box-sizing: border-box;
	align-items: stretch;
	margin-bottom: 12px;
}

.foodord-products-shortcode .foodord-product-card--streamline:hover {
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}

.foodord-products-shortcode .foodord-product-card--streamline .product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	min-width: 0;
	padding: 0;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-title-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 4px 0;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-color, #111827);
}

.foodord-products-shortcode .foodord-product-card--streamline .product-top {
	margin-bottom: 4px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-description-text {
	margin: 0;
	font-size: 13px;
	color: var(--secondary-text, #6b7280);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-bottom {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 4px;
	padding: 0;
	width: 100%;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-price-container {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 -15px -15px;
	padding: 0;
	width: 100%;
}

.foodord-products-shortcode .foodord-product-card--streamline .foodord-price-prefix {
	font-size: 11px;
	font-weight: 500;
	color: var(--secondary-text, #6b7280);
	margin-right: 4px;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-price {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-color, #111827);
	margin: 0;
	padding: 0;
	text-align: left;
	display: block;
	line-height: 1;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-image-container {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #f9fafb;
	position: relative;
	padding: 0;
	margin: 0;
	order: 2;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Add Button Positioned on Image Corner */
.foodord-products-shortcode .foodord-product-card--streamline .product-actions {
	position: absolute;
	right: 8px;
	bottom: 8px;
	margin: 0;
	z-index: 20;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-actions .add_to_cart_button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	text-indent: -9999px;
	overflow: hidden;
}

.foodord-products-shortcode .foodord-product-card--streamline .product-actions .add_to_cart_button::before,
.foodord-products-shortcode .foodord-product-card--streamline .product-actions .add_to_cart_button::after {
	background: var(--button-bg, #c9386f);
}



.foodord-products-shortcode .foodord-product-card--streamline .foodord-product-card__status-badge {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ef4444;
	font-weight: 700;
	z-index: 30;
	backdrop-filter: blur(2px);
}

@media (max-width: 480px) {
	.foodord-products-shortcode .foodord-product-card--streamline {
		padding: 12px;
		gap: 12px;
	}

	.foodord-products-shortcode .foodord-product-card--streamline .product-image-container {
		width: 85px;
		height: 85px;
	}

	.foodord-products-shortcode .foodord-product-card--streamline .product-actions {
		right: 8px;
		bottom: 8px;
	}
}

.foodord-counter-animate {
	display: inline-grid;
	grid-template-columns: minmax(1ch, auto);
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	height: 1.25em;
	line-height: 1.25em;
	justify-items: center;
	align-items: center;
}

.foodord-counter-number {
	grid-column: 1;
	grid-row: 1;
	display: block;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.foodord-counter-number--old {
	position: relative;
	z-index: 1;
}

.foodord-counter-number--new {
	position: relative;
	z-index: 2;
}



.foodord-counter-animate.is-incrementing .foodord-counter-number--new {
	transform: translateY(100%);
}

.foodord-counter-animate.is-decrementing .foodord-counter-number--new {
	transform: translateY(-100%);
}



.foodord-counter-animate.is-incrementing.animate-active .foodord-counter-number--old {
	transform: translateY(-100%);
}

.foodord-counter-animate.is-incrementing.animate-active .foodord-counter-number--new {
	transform: translateY(0);
}

.foodord-counter-animate.is-decrementing.animate-active .foodord-counter-number--old {
	transform: translateY(100%);
}

.foodord-counter-animate.is-decrementing.animate-active .foodord-counter-number--new {
	transform: translateY(0);
}