/* =========================================================
   Woo Product Grid Restaurant + Category Tabs & Search
   Base styles. Elementor style controls override these via
   higher-specificity generated CSS.
   ========================================================= */

.pg-68626107-wrapper {
	width: 100%;
	max-width: 100%;
	overflow-x: clip; /* tabs can never push the page wider */
}

/* =========================================================
   SEARCH BAR
   ========================================================= */
.pg-68626107-search-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-bottom: 20px;
}

.pg-68626107-search {
	--pg-search-icon-offset: 20px;
	--pg-search-icon-pad: 52px;
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.pg-68626107-search-input {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	height: 64px;
	margin: 0;
	padding: 0 24px;
	box-sizing: border-box;
	font-size: 16px;
	font-family: inherit;
	line-height: 1.2;
	color: #212529;
	background-color: #ffffff;
	border: 1px solid #e6e9ed;
	border-radius: 50px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pg-68626107-search.icon-left .pg-68626107-search-input {
	padding-left: var(--pg-search-icon-pad);
}

.pg-68626107-search.icon-right .pg-68626107-search-input {
	padding-right: var(--pg-search-icon-pad);
}

.pg-68626107-search-input::placeholder {
	color: #5f6b76;
	opacity: 1;
}

.pg-68626107-search-input::-webkit-search-decoration,
.pg-68626107-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.pg-68626107-search-input:focus {
	border-color: #00a082;
	box-shadow: 0 0 0 4px rgba(0, 160, 130, 0.15);
}

.pg-68626107-search-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	pointer-events: none;
	line-height: 1;
	color: #8a949e;
	transition: color 0.2s ease;
}

.pg-68626107-search.icon-left .pg-68626107-search-icon { left: var(--pg-search-icon-offset); }
.pg-68626107-search.icon-right .pg-68626107-search-icon { right: var(--pg-search-icon-offset); }

.pg-68626107-search-icon i { font-size: 18px; }
.pg-68626107-search-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* clear (×) button — sits opposite the icon */
.pg-68626107-wrapper .pg-68626107-search-clear {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #eef1f3;
	color: #5f6b76;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.pg-68626107-search.icon-right .pg-68626107-search-clear {
	right: auto;
	left: 16px;
}

.pg-68626107-wrapper .pg-68626107-search-clear:hover {
	background: #dfe4e8;
	color: #212529;
}

.pg-68626107-wrapper .pg-68626107-search-clear[hidden] {
	display: none;
}

/* =========================================================
   CATEGORY TABS ROW
   ========================================================= */
.pg-68626107-tabs-row {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-bottom: 8px;
	box-sizing: border-box;
}

/* viewport = the scroll container (slider mode). Native scrollbar is hidden;
   a custom one is drawn below the tabs. Touch devices get native momentum scrolling. */
.pg-68626107-tabs-viewport {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 0;
	box-sizing: border-box;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x pan-y;
	cursor: grab;
}

.pg-68626107-tabs-viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.pg-68626107-tabs-viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.pg-68626107-tabs-viewport.is-dragging .pg-68626107-tab {
	pointer-events: none;
}

.pg-68626107-tabs-track {
	--pg-tabs-align: flex-start;
	--pg-tabs-offset: 0px;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	min-width: 100%;
	width: max-content;
	padding-left: var(--pg-tabs-offset);
	box-sizing: border-box;
	justify-content: var(--pg-tabs-align);
	will-change: transform;
}

/* Tab pills — defaults match the reference (white pill, thin border, teal active) */
.pg-68626107-wrapper .pg-68626107-tab {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0 24px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
	color: #2b3138;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #e6e9ed;
	border-radius: 50px;
	box-shadow: none;
	text-shadow: none;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition-property: color, background-color, border-color, box-shadow, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.pg-68626107-wrapper .pg-68626107-tab:hover:not(.is-active) {
	color: #00a082;
	background-color: #f3f7f6;
	border-color: #bfe3da;
}

.pg-68626107-wrapper .pg-68626107-tab.is-active {
	color: #ffffff;
	background-color: #00a082;
	border-color: #00a082;
}

.pg-68626107-wrapper .pg-68626107-tab:focus { outline: none; }

.pg-68626107-wrapper .pg-68626107-tab:focus-visible {
	outline: 2px solid #00a082;
	outline-offset: 2px;
}

/* =========================================================
   SCROLLBAR ROW (arrow · track · arrow) — like the reference
   ========================================================= */
.pg-68626107-scrollbar-row {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin: 0 auto 24px 0;
	box-sizing: border-box;
}

.pg-68626107-scrollbar-track {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 8px;
	background-color: #e9ebee;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}

.pg-68626107-scrollbar-thumb {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 40%;
	min-width: 40px;
	background-color: #8e9196;
	border-radius: 10px;
	cursor: grab;
	touch-action: none;
	transition: background-color 0.15s ease;
	will-change: transform;
}

.pg-68626107-scrollbar-thumb:hover,
.pg-68626107-scrollbar-thumb.is-dragging {
	background-color: #6b6f75;
	cursor: grabbing;
}

.pg-68626107-scrollbar-row.is-idle .pg-68626107-scrollbar-thumb {
	cursor: default;
}

/* Arrows */
.pg-68626107-wrapper .pg-68626107-arrow {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #8a8f95;
	background: transparent;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
}

.pg-68626107-wrapper .pg-68626107-arrow i { font-size: 14px; }
.pg-68626107-wrapper .pg-68626107-arrow svg { width: 14px; height: 14px; fill: currentColor; }

.pg-68626107-wrapper .pg-68626107-arrow:hover { color: #00a082; }

.pg-68626107-wrapper .pg-68626107-arrow.is-disabled {
	opacity: 0.35;
	cursor: default;
}

.pg-68626107-wrapper .pg-68626107-arrow:focus-visible {
	outline: 2px solid #00a082;
	outline-offset: 2px;
}

/* arrows placed beside the tabs row instead of the scrollbar */
.pg-68626107-tabs-row > .pg-arrow-prev { margin-right: 8px; }
.pg-68626107-tabs-row > .pg-arrow-next { margin-left: 8px; }

/* =========================================================
   MARQUEE MODE
   ========================================================= */
.pg-68626107-tabs-row.is-marquee .pg-68626107-tabs-viewport {
	overflow: hidden;
	touch-action: pan-y;   /* horizontal moves are handled by the widget */
	cursor: grab;
}

.pg-68626107-tabs-row.is-marquee .pg-68626107-tabs-track {
	min-width: 0;
	justify-content: flex-start;
	padding-left: 0;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

/* =========================================================
   RESULT COUNT
   ========================================================= */
.pg-68626107-count {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	color: #2b3138;
	margin: 0 0 4px;
}

.pg-68626107-count-number {
	font-weight: inherit;
}

/* =========================================================
   EMPTY STATE & FILTER ANIMATION
   ========================================================= */
.pg-68626107-no-results {
	padding: 40px 20px;
	text-align: center;
	font-size: 16px;
	color: #6c757d;
	border: 1px dashed #e2e8f0;
	border-radius: 16px;
	margin-top: 24px;
}

.pg-68626107-no-results[hidden] {
	display: none;
}

.pg-68626107-card.pg-filtered-out {
	display: none !important;
}

.pg-68626107-card.pg-anim-fade {
	animation: pgFilterFade68626107 0.3s ease both;
}

.pg-68626107-card.pg-anim-up {
	animation: pgFadeIn68626107 0.35s ease both;
}

@keyframes pgFilterFade68626107 {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* =========================================================
   PRODUCT GRID (original styles — unchanged)
   ========================================================= */
.pg-68626107-grid {
	display: grid;
	width: 100%;
	box-sizing: border-box;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 24px;
	margin-top: 24px;
}

@media (max-width: 1024px) {
	.pg-68626107-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.pg-68626107-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 12px;
		row-gap: 16px;
	}
}

/* ---------- Card ---------- */
.pg-68626107-card {
	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	overflow: hidden;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 24px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* ---------- Image ---------- */
.pg-68626107-img-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	flex-shrink: 0;
}

.pg-68626107-img-link {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
}

.pg-68626107-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Shine ---------- */
.pg-68626107-shine {
	position: absolute;
	top: 0;
	left: -160%;
	width: 50%;
	height: 100%;
	transform: skewX(-25deg);
	pointer-events: none;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
}

.pg-68626107-card:hover .pg-68626107-shine {
	animation: pgShine68626107 1.2s ease-in-out;
}

@keyframes pgShine68626107 {
	0%   { left: -160%; }
	100% { left: 160%; }
}

/* ---------- Badge ---------- */
.pg-68626107-badge {
	position: absolute;
	z-index: 5;
	top: 12px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
}

.pg-68626107-badge.pg-badge-left { left: var(--pg-badge-x, 12px); right: auto; }
.pg-68626107-badge.pg-badge-right { right: var(--pg-badge-x, 12px); left: auto; }

/* ---------- Title ---------- */
.pg-68626107-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin: 16px 16px 8px;
}

.pg-68626107-title a {
	text-decoration: none;
	transition: color 0.2s ease;
}

/* ---------- Description ---------- */
.pg-68626107-desc {
	font-size: 13.5px;
	line-height: 1.45;
	flex-grow: 1;
	margin: 0 16px 14px;
}

/* ---------- Price ---------- */
.pg-68626107-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 16px 14px;
	margin-top: auto;
	font-weight: 700;
	font-size: 16px;
}

.pg-68626107-price-ins { text-decoration: none; }

.pg-68626107-price-old {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}

.pg-68626107-price-prefix {
	font-size: 12px;
	font-weight: 500;
}

.pg-68626107-price-del {
	font-size: 13px;
	font-weight: 500;
	text-decoration: line-through;
}

.pg-68626107-price-ins ins { text-decoration: none; }

.pg-68626107-price-ins del {
	font-size: 0.8em;
	font-weight: 500;
	opacity: 0.6;
	margin-right: 4px;
}

/* ---------- Actions ---------- */
.pg-68626107-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px 12px;
	padding: 0 16px 16px;
}

.pg-68626107-wrapper .added_to_cart,
.pg-68626107-wrapper a.added_to_cart.wc-forward {
	display: none !important;
}

/* ---------- Quantity ---------- */
.pg-68626107-qty-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	gap: 4px;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	padding: 4px 10px;
	min-width: 90px;
	max-width: 100%;
	height: 38px;
	box-sizing: border-box;
	background-color: #ffffff;
}

.pg-68626107-wrapper .pg-68626107-qty-wrap .pg-68626107-qty-btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0 4px;
	background: transparent none;
	background-color: transparent;
	background-image: none;
	border: 0;
	border-radius: 6px;
	box-shadow: none;
	text-shadow: none;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	line-height: 1;
	color: inherit;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.pg-68626107-wrapper .pg-68626107-qty-wrap .pg-68626107-qty-btn:hover,
.pg-68626107-wrapper .pg-68626107-qty-wrap .pg-68626107-qty-btn:focus,
.pg-68626107-wrapper .pg-68626107-qty-wrap .pg-68626107-qty-btn:active {
	background: transparent none;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	color: #00a082;
}

.pg-68626107-qty-num {
	font-size: 14px;
	font-weight: 600;
	user-select: none;
	min-width: 18px;
	text-align: center;
}

/* ---------- Add button ---------- */
.pg-68626107-add-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	height: 38px;
	flex: 1 1 auto;
	min-width: 110px;
	padding: 10px 20px;
	border-radius: 50px;
	background-color: #00a082;
	color: #ffffff;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

.pg-68626107-add-btn.pg-loading { opacity: 0.7; cursor: wait; }
.pg-68626107-add-btn.pg-added { transform: scale(0.96); }
.pg-68626107-add-btn.pg-error { animation: pgShake68626107 0.3s ease; }

.pg-68626107-add-btn.pg-68626107-out-of-stock {
	background-color: #cbd5e1 !important;
	color: #64748b !important;
	cursor: not-allowed;
}

@keyframes pgShake68626107 {
	0%, 100% { transform: translateX(0); }
	25%      { transform: translateX(-3px); }
	75%      { transform: translateX(3px); }
}

.pg-68626107-btn-icon { display: inline-flex; }
.pg-68626107-btn-icon svg { width: 16px; height: 16px; fill: currentColor; }
.pg-68626107-btn-icon i { font-size: 16px; line-height: 1; }

@media (max-width: 480px) {
	.pg-68626107-actions { flex-wrap: wrap; }
	.pg-68626107-qty-wrap { width: 100%; }
	.pg-68626107-add-btn { width: 100%; }
}

/* ---------- See More / See Less ---------- */
.pg-68626107-hidden {
	display: none !important;
}

.pg-68626107-revealed {
	animation: pgFadeIn68626107 0.4s ease forwards;
}

@keyframes pgFadeIn68626107 {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.pg-68626107-see-more-wrap {
	text-align: center;
	margin-top: 32px;
}

.pg-68626107-see-more-wrap[hidden] {
	display: none;
}

.pg-68626107-see-more-btn {
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 32px;
	border-radius: 50px;
	background-color: #e2e8f0;
	color: #212529;
	transition: all 0.2s ease;
}

/* ---------- Cart notification toast ---------- */
.pg-68626107-notif-toast {
	position: fixed;
	z-index: 99999;
	box-sizing: border-box;
	background-color: var(--pg-toast-bg, #e9f7ef);
	color: var(--pg-toast-color, #15803d);
	border: 1px solid rgba(22, 163, 74, 0.18);
	border-radius: var(--pg-toast-radius, 12px);
	padding: var(--pg-toast-padding, 12px 16px);
	max-width: var(--pg-toast-maxw, calc(100vw - 32px));
	font-size: var(--pg-toast-fs, 14px);
	font-family: inherit;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: translateX(var(--pg-tx, 0)) translateY(6px) scale(0.96);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
	pointer-events: auto;
}

.pg-68626107-notif-toast.pg-toast-visible {
	opacity: 1;
	transform: translateX(var(--pg-tx, 0)) translateY(0) scale(1);
}

.pg-toast-top-right     { top: 24px; right: 24px; }
.pg-toast-top-left      { top: 24px; left: 24px; }
.pg-toast-top-center    { top: 24px; left: 50%; --pg-tx: -50%; }
.pg-toast-bottom-right  { bottom: 24px; right: 24px; }
.pg-toast-bottom-left   { bottom: 24px; left: 24px; }
.pg-toast-bottom-center { bottom: 24px; left: 50%; --pg-tx: -50%; }

.pg-68626107-notif-toast .pg-toast-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.pg-68626107-notif-toast .pg-toast-check-icon {
	background-color: var(--pg-toast-icon-bg, #16a34a);
	color: var(--pg-toast-icon-color, #ffffff);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.pg-68626107-notif-toast .pg-toast-msg {
	font-weight: 600;
	color: var(--pg-toast-color, #15803d);
}

.pg-68626107-notif-toast a.pg-toast-view-cart,
.pg-68626107-notif-toast a.pg-toast-view-cart:visited {
	margin-left: auto;
	display: inline-block;
	background-color: var(--pg-vc-bg, #1f242d);
	color: var(--pg-vc-color, #ffffff);
	padding: var(--pg-vc-padding, 8px 14px);
	border-radius: var(--pg-vc-radius, 8px);
	border: 0;
	font-weight: 600;
	font-size: var(--pg-vc-fs, 13px);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.pg-68626107-notif-toast a.pg-toast-view-cart:hover,
.pg-68626107-notif-toast a.pg-toast-view-cart:focus {
	background-color: var(--pg-vc-bg-hover, #000000);
	color: var(--pg-vc-color, #ffffff);
	text-decoration: none;
}

@media (max-width: 480px) {
	.pg-68626107-notif-toast {
		left: 16px !important;
		right: 16px !important;
		--pg-tx: 0;
		max-width: none;
	}
}

/* ---------- Responsive tweaks for the filter bar ---------- */
@media (max-width: 767px) {
	.pg-68626107-search-input { height: 54px; font-size: 15px; }
	.pg-68626107-wrapper .pg-68626107-tab { height: 46px; padding: 0 18px; font-size: 14px; }
	.pg-68626107-count { font-size: 15px; }
}

/* ---------- Accessibility ---------- */
.pg-68626107-qty-btn:focus-visible,
.pg-68626107-add-btn:focus-visible,
.pg-68626107-see-more-btn:focus-visible,
.pg-68626107-img-link:focus-visible,
.pg-toast-view-cart:focus-visible {
	outline: 2px solid #00a082;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.pg-68626107-img,
	.pg-68626107-card,
	.pg-68626107-notif-toast,
	.pg-68626107-tab,
	.pg-68626107-tabs-viewport {
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.pg-68626107-shine,
	.pg-68626107-revealed,
	.pg-68626107-add-btn.pg-error,
	.pg-68626107-card.pg-anim-fade,
	.pg-68626107-card.pg-anim-up {
		animation: none !important;
	}
}