/* ==========================================================================
   Egom Shop Suite – frontend
   Akcentszín: var(--egom-accent) | Képarány: var(--egom-img-ratio)
   ========================================================================== */

:root {
	--egom-accent: #e95cd3;
	--egom-img-ratio: 1 / 1;
}

/* --------------------------------------------------------------------------
   Nettó ár
   -------------------------------------------------------------------------- */
.egom-netto-price {
	display: block;
	width: 100%;
	flex-basis: 100%;
	font-size: 12px;
	color: #555;
	font-weight: 600;
	margin-top: 2px;
}
.egom-brutto-label {
	display: inline-block;
	font-size: 0.62em;
	font-weight: 500;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #9a9a9a;
	margin-right: 5px;
	vertical-align: middle;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   EUR jelvény
   -------------------------------------------------------------------------- */
.price,
.product-price,
.current-price {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}
.egom-euro-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	background: var(--egom-accent);
	color: #fff !important;
	border-radius: 50%;
	font-size: 10px;
	font-family: sans-serif;
	cursor: pointer;
	position: relative;
	margin-left: 6px;
	opacity: 0.35;
	transition: all 0.3s ease;
	text-decoration: none !important;
	flex-shrink: 0;
	line-height: 1;
}
.egom-euro-tag:hover {
	opacity: 1;
	transform: scale(1.15);
}
.egom-euro-tag .egom-tooltip {
	visibility: hidden;
	background-color: #222;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 5px 10px;
	position: absolute;
	z-index: 999999;
	bottom: 140%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.2s;
	white-space: nowrap;
	font-size: 12px;
	font-weight: bold;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.egom-euro-tag:hover .egom-tooltip {
	visibility: visible;
	opacity: 1;
}
.egom-euro-tag .egom-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #222 transparent transparent transparent;
}

/* --------------------------------------------------------------------------
   Gyorsnézet modal + trigger
   -------------------------------------------------------------------------- */
.product,
.elementor-loop-item {
	position: relative;
}
.egom-qv-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--egom-accent);
	color: #fff;
	padding: 10px 25px;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	z-index: 100;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	pointer-events: auto;
	animation: egomFadeInScale 0.2s ease-out;
	white-space: nowrap;
}
@keyframes egomFadeInScale {
	from { opacity: 0; transform: translate(-50%, -40%) scale(0.9); }
	to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

#egom-qv-modal {
	position: fixed;
	inset: 0;
	z-index: 9999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.egom-qv-overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 22, 0.78);
	backdrop-filter: blur(6px);
}
.egom-qv-content {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 940px;
	z-index: 10000001;
	max-height: 88vh;
	overflow: hidden;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	animation: egomQvIn 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes egomQvIn {
	from { opacity: 0; transform: translateY(18px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
.egom-qv-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #fff;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	z-index: 100;
	color: #444;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	transition: 0.2s;
}
.egom-qv-close:hover { background: var(--egom-accent); color: #fff; transform: rotate(90deg); }
#egom-qv-body { overflow-y: auto; flex-grow: 1; }
#egom-qv-body .egom-qv-product { display: flex; flex-wrap: wrap; margin: 0; align-items: stretch; }
#egom-qv-body .images {
	flex: 1 1 44%;
	min-width: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f7f7;
	padding: 30px;
	box-sizing: border-box;
}
#egom-qv-body .images img { width: 100%; height: auto; max-height: 380px; object-fit: contain; display: block; }
#egom-qv-body .summary { flex: 1 1 56%; min-width: 300px; padding: 40px 38px; text-align: left; box-sizing: border-box; }
#egom-qv-body .summary .product_title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 14px;
	color: #1c1c1c;
}
#egom-qv-body .summary .price {
	font-size: 22px;
	font-weight: 800;
	color: var(--egom-accent);
	display: block;
	margin-bottom: 4px;
}
#egom-qv-body .summary .price del { color: #aaa; font-weight: 500; font-size: 16px; margin-right: 8px; }
#egom-qv-body .summary .description { margin: 16px 0 22px; color: #555; font-size: 14.5px; line-height: 1.65; }
#egom-qv-body .egom-cart-wrap { border-top: 1px solid #eee; padding-top: 22px; margin-top: 4px; }
#egom-qv-body .egom-cart-wrap .quantity input.qty {
	height: 48px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	width: 78px;
	text-align: center;
}
#egom-qv-body .egom-cart-wrap .button,
#egom-qv-body .egom-cart-wrap button.single_add_to_cart_button {
	background: var(--egom-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 14px 32px !important;
	font-weight: 700 !important;
	letter-spacing: 0.3px;
	transition: 0.2s;
}
#egom-qv-body .egom-cart-wrap .button:hover,
#egom-qv-body .egom-cart-wrap button.single_add_to_cart_button:hover { filter: brightness(0.92); transform: translateY(-1px); }
.egom-qv-loading {
	padding: 120px 20px;
	text-align: center;
	color: var(--egom-accent);
	font-weight: 700;
	letter-spacing: 1px;
}
.egom-qv-footer-link {
	display: block;
	width: 100%;
	background: #fafafa;
	color: #333;
	text-align: center;
	padding: 18px;
	text-decoration: none;
	font-weight: 700;
	border-top: 1px solid #eee;
	transition: 0.2s;
}
.egom-qv-footer-link:hover { background: var(--egom-accent); color: #fff; }

@media (max-width: 781px) {
	#egom-qv-body .egom-qv-product { flex-direction: column; }
	#egom-qv-body .images { min-width: 0; padding: 24px; }
	#egom-qv-body .images img { max-height: 260px; }
	#egom-qv-body .summary { padding: 26px 22px; }
	#egom-qv-body .summary .product_title { font-size: 20px; }
}

/* --------------------------------------------------------------------------
   Kategória shortcode-ok
   -------------------------------------------------------------------------- */
.egomshop-featured-cats__title,
.egomshop-cat-grid__title {
	font-weight: 800;
	font-size: 17px;
	margin-bottom: 14px;
	padding-left: 12px;
	border-left: 4px solid var(--egom-accent);
	line-height: 1.2;
}
.egomshop-featured-cats__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #ece4ea;
}
.egomshop-featured-cats__list li { width: 100%; }
.egomshop-featured-cats__list li + li a { border-top: 1px solid #f1eaef; }
.egomshop-featured-cats__list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	padding: 9px 14px;
	border-radius: 0;
	background: #fff;
	text-decoration: none;
	color: #2c2c2c;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	transition: 0.15s;
}
.egomshop-featured-cats__list li a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid #c7adc3;
	border-bottom: 2px solid #c7adc3;
	transform: rotate(-45deg);
	transition: 0.15s;
	flex-shrink: 0;
	margin-left: 10px;
}
.egomshop-featured-cats__list li a:hover,
.egomshop-featured-cats__list li.is-active a {
	background: var(--egom-accent);
	color: #fff;
}
.egomshop-featured-cats__list li a:hover::after,
.egomshop-featured-cats__list li.is-active a::after { border-color: #fff; }
.egomshop-featured-cats__footer { margin-top: 12px; }
.egomshop-featured-cats__button {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: var(--egom-accent);
	color: #fff !important;
	padding: 13px 20px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	transition: 0.15s;
}
.egomshop-featured-cats__button:hover { filter: brightness(0.92); }

/* Egyszerű (plain) változat – láblécbe: keret/háttér/nyíl nélküli felsorolás */
.egomshop-featured-cats--plain,
.egomshop-featured-cats--plain .egomshop-featured-cats__list {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}
.egomshop-featured-cats--plain .egomshop-featured-cats__list { gap: 0; }
.egomshop-featured-cats--plain .egomshop-featured-cats__list li,
.egomshop-featured-cats--plain .egomshop-featured-cats__list li a { background: transparent !important; }
.egomshop-featured-cats--plain .egomshop-featured-cats__list li + li a { border-top: none; }
.egomshop-featured-cats--plain .egomshop-featured-cats__list li a {
	padding: 7px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	color: inherit;
	font-weight: 400;
}
.egomshop-featured-cats--plain .egomshop-featured-cats__list li a::after { content: none; }
.egomshop-featured-cats--plain .egomshop-featured-cats__list li a:hover,
.egomshop-featured-cats--plain .egomshop-featured-cats__list li.is-active a {
	background: transparent;
	color: var(--egom-accent);
	transform: none;
}
.egomshop-cat-grid__items {
	display: grid;
	grid-template-columns: repeat(var(--egomshop-cols, 3), 1fr);
	gap: 12px;
}
.egomshop-cat-grid__item {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 70px;
	padding: 14px;
	border: 1px solid #e3e3e3;
	border-radius: 12px;
	text-decoration: none;
	color: #222;
	font-weight: 600;
	transition: 0.2s;
	/* A hosszú kategórianevek (MUNKARUHÁZAT, SZEMVÉDELEM) min-content szélessége
	   különben szétnyomja a `1fr` oszlopokat: mobilon a bal hasáb 152, a jobb 186
	   pixeles lett, és a jobb oldali gombok kilógtak a képernyőről. */
	min-width: 0;
	overflow-wrap: anywhere;
	hyphens: auto;
}
.egomshop-cat-grid__item:hover {
	border-color: var(--egom-accent);
	color: var(--egom-accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
@media (max-width: 600px) {
	.egomshop-cat-grid__items { grid-template-columns: repeat(2, 1fr); }
}

/* Accordion kategória widget (lenyitható) */
.egom-cat-widget {
	font-family: inherit;
	background: #fff;
	border: 1px solid #efe7ee;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}
.egom-cat-header {
	background: var(--egom-accent);
	color: #fff;
	padding: 16px 20px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.2px;
}
.egom-cat-list { list-style: none; padding: 0; margin: 0; }
.egom-cat-item { border-bottom: 1px solid #f3eef2; }
.egom-cat-item:last-child { border-bottom: none; }
.egom-cat-parent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	text-decoration: none;
	color: #2c2c2c;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
}
.egom-cat-parent:hover { background: #faf8fb; color: var(--egom-accent); }
.egom-cat-parent.has-subs::after {
	content: "";
	width: 8px;
	height: 8px;
	flex-shrink: 0;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s;
	opacity: 0.6;
}
.egom-cat-parent.active { color: var(--egom-accent); }
.egom-cat-parent.active::after { transform: rotate(-135deg); opacity: 1; }
.egom-cat-subs {
	display: none;
	list-style: none;
	padding: 4px 0 12px;
	margin: 0;
	background: #faf8fb;
}
.egom-cat-subs.open { display: block; }
.egom-cat-subs li a {
	display: block;
	padding: 8px 20px 8px 34px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: 0.15s;
}
.egom-cat-subs li a:hover { color: var(--egom-accent); padding-left: 38px; }

/* --------------------------------------------------------------------------
   Végtelen görgetés
   -------------------------------------------------------------------------- */
#egom-infinite-loader {
	text-align: center;
	display: none;
	padding: 20px;
}
#egom-infinite-loader span {
	color: var(--egom-accent);
	font-weight: bold;
	letter-spacing: 2px;
}
#egom-load-more-container { text-align: center; margin: 40px 0; display: none; }
#egom-load-more-btn {
	background: var(--egom-accent);
	color: #fff;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Termékszűrő
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Rögzített (sticky) fejléc – a felső sáv és a menü görgetéskor fent marad.
   -------------------------------------------------------------------------- */
header.elementor-location-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
}
body.admin-bar header.elementor-location-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar header.elementor-location-header { top: 46px; }
}
/* Elementor „scroll to" horgonyok ne bújjanak a fejléc alá. */
:target { scroll-margin-top: 180px; }

.egom-filter { position: relative; }
.egom-filter__panel {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 0;
	/* „clip" és nem „hidden": ugyanúgy levágja a sarkokat, de NEM hoz létre
	   görgetési kontextust – e nélkül a ragadó (sticky) Szűrés-gomb nem működne. */
	overflow: clip;
}
.egom-filter__header {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid #eee;
}
.egom-filter__title { font-weight: 800; font-size: 18px; }
.egom-filter__close {
	background: none;
	border: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: #333;
}
.egom-filter__scroll { padding: 6px 18px; }
.egom-filter__group { padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.egom-filter__group:last-child { border-bottom: none; }
.egom-filter__group-title {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	color: #222;
}
.egom-filter__options { display: flex; flex-direction: column; gap: 9px; max-height: 240px; overflow-y: auto; }

.egom-filter__opt {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
	font-size: 14px;
	color: #444;
}
.egom-filter__opt--child { font-size: 13px; color: #777; }
.egom-filter__opt input { accent-color: var(--egom-accent); width: 16px; height: 16px; flex-shrink: 0; }
.egom-filter__opt:hover { color: var(--egom-accent); }
.egom-filter__swatch {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
	display: inline-block;
}

/* Nyitható kategóriafa */
.egom-filter__cats { gap: 4px; }
.egom-filter__cat { border-radius: 8px; }
.egom-filter__cat-row { display: flex; align-items: center; gap: 6px; }
.egom-filter__cat-row .egom-filter__opt { flex: 1; padding: 4px 0; }
.egom-filter__cat-toggle {
	flex-shrink: 0;
	width: 28px !important;
	height: 28px !important;
	min-width: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: none !important;
	background: #f1f1f3 !important;
	color: #777 !important;
	border-radius: 8px !important;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	transition: 0.2s;
}
.egom-filter__cat-toggle:hover { background: var(--egom-accent) !important; color: #fff !important; }
.egom-filter__cat-toggle svg { width: 14px; height: 14px; transition: transform 0.25s; }
.egom-filter__cat-toggle.is-open svg { transform: rotate(180deg); }
.egom-filter__subs {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 2px 0 6px 14px;
	border-left: 2px solid #f0eaf0;
	margin: 2px 0 4px 9px;
}
.egom-filter__subs.is-open { display: flex; }

/* Kategória-navigáció (rendes kategóriaválasztó, nem szűrő) */
.egom-filter__nav { list-style: none; margin: 0; padding: 0; }
.egom-filter__nav .egom-filter__cat { border-radius: 0; }
.egom-filter__nav .egom-filter__cat-row { gap: 4px; }
.egom-filter__nav-link {
	flex: 1;
	display: block;
	padding: 8px 8px;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	transition: 0.15s;
}
.egom-filter__nav-link:hover { background: #faf6fa; color: var(--egom-accent); }
.egom-filter__nav-link.is-active { background: var(--egom-accent); color: #fff; }
.egom-filter__nav-all { font-weight: 700; }
.egom-filter__nav-sub {
	font-size: 13px;
	font-weight: 500;
	color: #666;
	padding: 6px 8px;
}
.egom-filter__nav-sub:hover { color: var(--egom-accent); }
.egom-filter__nav-sub.is-active { color: #fff; }

/* Méret-csoportok (buckets) */
.egom-filter__buckets { display: flex; flex-direction: column; gap: 2px; }
.egom-filter__bucket .egom-filter__cat-row { gap: 4px; }
.egom-filter__bucket-label {
	flex: 1;
	display: block;
	padding: 9px 8px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #333;
	cursor: pointer;
	transition: 0.15s;
}
.egom-filter__bucket-label:hover { background: #faf6fa; color: var(--egom-accent); }
.egom-filter__bucket-count { font-weight: 500; color: #aaa; font-size: 12px; }
.egom-filter__bucket-opts {
	max-height: 260px;
	overflow-y: auto;
	gap: 8px;
	padding: 4px 0 8px 14px;
}

/* Méret-értékek „chip" formában: sokkal áttekinthetőbb, mint a hosszú
   checkbox-lista egy görgethető dobozban. */
.egom-filter__chips {
	flex-direction: row !important;
	flex-wrap: wrap;
	gap: 6px !important;
	padding: 6px 0 10px 14px;
}
.egom-filter__chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 7px 10px;
	border: 1.5px solid #e4e0e4;
	border-radius: 8px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #444;
	cursor: pointer;
	line-height: 1;
	transition: 0.15s;
	user-select: none;
}
.egom-filter__chip:hover {
	border-color: var(--egom-accent);
	color: var(--egom-accent);
}
.egom-filter__chip input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	pointer-events: none;
}
.egom-filter__chip:has(input:checked),
.egom-filter__chip.is-checked {
	background: var(--egom-accent);
	border-color: var(--egom-accent);
	color: #fff;
}
.egom-filter__chip input:checked + span { color: #fff; }

/* Opciók melletti termékszám */
.egom-filter__opt-count { color: #aaa; font-weight: 500; font-size: 12px; }

.egom-filter__price-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}
.egom-filter__price-inputs input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 13px;
}
.egom-filter__slider { position: relative; height: 28px; }
.egom-filter__slider-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background: #e6e6e6;
	border-radius: 4px;
	transform: translateY(-50%);
}
.egom-filter__slider-range {
	position: absolute;
	top: 50%;
	height: 4px;
	background: var(--egom-accent);
	border-radius: 4px;
	transform: translateY(-50%);
}
.egom-filter__slider input[type="range"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	height: 28px;
}
.egom-filter__slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--egom-accent);
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.egom-filter__slider input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--egom-accent);
	cursor: pointer;
	pointer-events: auto;
}
.egom-filter__select { position: relative; }
.egom-f-sort {
	width: 100%;
	padding: 12px 38px 12px 14px;
	border: 1.5px solid #e4e4e4;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 13px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.egom-f-sort:hover { border-color: #d0d0d0; }
.egom-f-sort:focus {
	outline: none;
	border-color: var(--egom-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--egom-accent) 20%, transparent);
}

/* Ár legördülők (kerekített értékek) */
.egom-filter__price-selects {
	display: flex;
	align-items: center;
	gap: 8px;
}
.egom-filter__price-selects .egom-filter__price-sep { color: #999; flex-shrink: 0; }
.egom-f-price-min,
.egom-f-price-max {
	flex: 1;
	width: 100%;
	padding: 11px 32px 11px 12px;
	border: 1.5px solid #e4e4e4;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: #333;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.egom-f-price-min:hover,
.egom-f-price-max:hover { border-color: #d0d0d0; }
.egom-f-price-min:focus,
.egom-f-price-max:focus {
	outline: none;
	border-color: var(--egom-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--egom-accent) 20%, transparent);
}
.egom-filter__actions {
	display: flex;
	gap: 10px;
	padding: 16px 18px;
	border-top: 1px solid #eee;
	background: #fafafa;
	/* A „Szűrés" és „Törlés" gomb mindig elérhető marad: eddig a panel legalján
	   volt, és hosszú listáknál az oldal aljáig kellett görgetni érte. */
	position: sticky;
	bottom: 0;
	z-index: 5;
	box-shadow: 0 -6px 14px rgba(0, 0, 0, 0.06);
}
.egom-filter__apply {
	flex: 2;
	background: var(--egom-accent);
	color: #fff;
	border: none;
	padding: 13px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
}
.egom-filter__reset {
	flex: 1;
	background: #fff;
	color: #555;
	border: 1px solid #ddd;
	padding: 13px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
}
.egom-filter__mobile-toggle {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--egom-accent);
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}
.egom-filter__backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99998;
}
.egom-filter__empty {
	padding: 40px 10px;
	text-align: center;
	font-weight: 600;
	color: #777;
}
.egom-filter--loading { opacity: 0.5; pointer-events: none; transition: 0.2s; }

/* Mobil: fiók (drawer) */
@media (max-width: 1024px) {
	.egom-filter__mobile-toggle { display: flex; }
	.egom-filter__header { display: flex; }
	.egom-filter__panel {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 88%;
		max-width: 360px;
		z-index: 99999;
		border-radius: 0;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column;
	}
	.egom-filter.is-open .egom-filter__panel { transform: translateX(0); }
	.egom-filter.is-open .egom-filter__backdrop { display: block; }
	.egom-filter__scroll { flex: 1; overflow-y: auto; }
}

/* --------------------------------------------------------------------------
   Egységes termékkép méret (Elementor + Woo)
   -------------------------------------------------------------------------- */
.egom-uniform-images ul.products li.product a img,
.egom-uniform-images .elementor-loop-item img.attachment-woocommerce_thumbnail,
.egom-uniform-images .elementor-products-grid li.product img,
.egom-uniform-images .woocommerce-loop-product__link img {
	aspect-ratio: var(--egom-img-ratio);
	object-fit: cover;
	width: 100%;
	height: auto;
	display: block;
}

/* Szűrő: "További termékek" gomb + üres állapot */
.egom-filter__more-btn {
	background: var(--egom-accent);
	color: #fff;
	border: none;
	padding: 14px 38px;
	border-radius: 50px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 1px;
	transition: 0.2s;
}
.egom-filter__more-btn:hover { filter: brightness(0.92); transform: translateY(-1px); }
li.product.egom-filter__empty-li {
	list-style: none;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   Egységes termékkártya: a "Kosárba teszem" gomb egy sorban
   (a rács sorai egyforma magasak, a gomb mindig a kártya aljára kerül)
   -------------------------------------------------------------------------- */
.egom-uniform-images ul.products li.product,
.egom-uniform-images .elementor-products-grid li.product,
/* Az Elementor rácsa a `display: var(--button-align-display)` szabállyal
   felülírná a kártya-flexet (magasabb specificitás), ezért ezt a szelektort is
   felvesszük – enélkül mobilon a kártyák block-ká esnek szét: eltérő méretű
   képek, össze-vissza igazított árak és gombok. */
.egom-uniform-images .elementor-products-grid ul.products.elementor-grid li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}
/* A rács oszlopai `1fr`-ek, ami valójában `minmax(auto, 1fr)`: a hosszú,
   tördelhetetlen termékcímek min-content szélessége szétnyomja az oszlopokat
   (mobilon így lett 125px + 216px a 2×168px helyett). A `min-width: 0`
   engedi a kártyáknak a min-content alá zsugorodni, így egyenlők maradnak. */
.egom-uniform-images ul.products > li.product,
.egom-uniform-images .elementor-grid > li.product,
.egom-uniform-images .elementor-grid > .elementor-grid-item {
	min-width: 0;
}
.egom-uniform-images ul.products li.product .woocommerce-loop-product__title,
.egom-uniform-images ul.products li.product h2 {
	overflow-wrap: anywhere;
}
/* Az ezres elválasztó sima szóköz, ezért keskeny kártyán a „22 319 Ft"
   két sorba tört („22" / „319 Ft"). Az összeg maradjon egyben. */
ul.products li.product .price .woocommerce-Price-amount,
ul.products li.product .price .egom-netto-price {
	white-space: nowrap;
}
@media (max-width: 480px) {
	ul.products li.product .price .egom-brutto-label { display: block; }
}
.egom-uniform-images ul.products li.product > a.woocommerce-LoopProduct-link,
.egom-uniform-images .elementor-products-grid li.product > a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	align-self: stretch;
}
.egom-uniform-images ul.products li.product .button,
.egom-uniform-images ul.products li.product .added_to_cart,
.egom-uniform-images .elementor-products-grid li.product .button {
	margin-top: auto;
	align-self: stretch;
	text-align: center;
}

/* ====== Termék lista shortcode ([egom_product_list]) ====== */
.egom-product-list-widget { font-family: inherit; }
.egom-product-list__title {
	font-weight: 800;
	font-size: 16px;
	margin: 0 0 12px;
}
.egom-product-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.egom-product-list__item { margin: 0; }
.egom-product-list__link {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	color: inherit;
	transition: color 0.15s, transform 0.15s;
}
.egom-product-list__link:hover { color: var(--egom-accent); transform: translateX(2px); }
.egom-product-list__thumb {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}
.egom-product-list__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.egom-product-list__text { display: flex; flex-direction: column; min-width: 0; }
.egom-product-list__name { font-size: 14px; line-height: 1.3; }
.egom-product-list__price { font-size: 12.5px; opacity: 0.75; margin-top: 2px; }
.egom-product-list__price .woocommerce-Price-amount { font-weight: 600; }

/* ====== Termékkép nagyítás hoverre (single termékoldal) ====== */
body.egom-img-zoom .woocommerce-product-gallery__image,
body.egom-img-zoom .woocommerce div.product div.images > a {
	overflow: hidden;
}
body.egom-img-zoom .woocommerce-product-gallery__image img,
body.egom-img-zoom .woocommerce div.product div.images > a img {
	transition: transform 0.15s ease-out;
	transform-origin: center center;
	cursor: crosshair;
	will-change: transform;
}
body.egom-img-zoom .woocommerce-product-gallery__image.egom-zooming img,
body.egom-img-zoom .woocommerce-product-gallery__image:hover img,
body.egom-img-zoom .woocommerce div.product div.images > a:hover img {
	transform: scale(2.1);
}

/* ====== Élő termékkereső ([egom_product_search]) ====== */
.egom-search { position: relative; width: 100%; max-width: 380px; z-index: 9999; }
.egom-search__box { position: relative; display: flex; align-items: center; }
.egom-search__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9a9a9a;
	pointer-events: none;
}
.egom-search__input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 42px 12px 44px !important;
	margin: 0;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.2;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.egom-search__input:focus {
	outline: none;
	border-color: var(--egom-accent);
	box-shadow: 0 0 0 3px rgba(233, 92, 211, 0.18);
}
.egom-search__clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border: none;
	background: #f0f0f3;
	color: #666;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.egom-search__clear.is-visible { display: flex; }
.egom-search__clear:hover { background: var(--egom-accent); color: #fff; }
.egom-search__results {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	z-index: 2000;
}
.egom-search__list {
	max-height: 360px; /* fix magasság – ezen belül görgethető */
	overflow-y: auto;
}
.egom-search__item {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 13px;
	border-bottom: 1px solid #f3f3f3;
	text-decoration: none;
	color: #222;
	transition: background 0.12s;
}
.egom-search__item:hover { background: #faf6fa; }
.egom-search__thumb {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}
.egom-search__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.egom-search__meta { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.egom-search__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	color: #222;
}
.egom-search__sub { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.egom-search__sku {
	font-size: 11px;
	color: #888;
	background: #f3f3f5;
	padding: 1px 6px;
	border-radius: 4px;
}
.egom-search__price { font-size: 13px; color: #555; }
.egom-search__price .woocommerce-Price-amount { font-weight: 600; color: #333; }
.egom-search__empty,
.egom-search__loading { padding: 18px 14px; text-align: center; color: #999; font-size: 14px; }
.egom-search__all {
	display: block;
	text-align: center;
	padding: 13px;
	background: var(--egom-accent);
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: filter 0.15s;
}
.egom-search__all:hover { filter: brightness(0.92); }

/* ====== Partner regisztrációs űrlap ====== */
.egom-partner-box { max-width: 760px; margin: 0 auto; }
.egom-partner-form {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 26px 26px 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.egom-partner-form__section {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--egom-accent);
	margin: 18px 0 10px;
}
.egom-partner-form__section:first-child { margin-top: 0; }
.egom-partner-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.egom-partner-field { display: flex; flex-direction: column; gap: 5px; }
.egom-partner-field--full { grid-column: 1 / -1; }
.egom-partner-field > span:first-child { font-size: 13px; font-weight: 600; color: #444; }
.egom-partner-hint { font-size: 12px; color: #999; }
.egom-partner-field input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid #dcdcdc;
	border-radius: 9px;
	font-size: 14px;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.egom-partner-field input:focus {
	outline: none;
	border-color: var(--egom-accent);
	box-shadow: 0 0 0 3px rgba(233, 92, 211, 0.16);
}
.egom-partner-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 18px 0 6px;
	font-size: 13.5px;
	color: #555;
	line-height: 1.4;
}
.egom-partner-consent input { margin-top: 2px; }
.egom-partner-submit {
	margin-top: 16px;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 10px;
	background: var(--egom-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: filter 0.15s;
}
.egom-partner-submit:hover { filter: brightness(0.93); }
.egom-partner-errors {
	background: #fdecef;
	border: 1px solid #f5c2cd;
	color: #a3243b;
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
}
.egom-partner-errors ul { margin: 0; padding-left: 18px; }
.egom-partner-success {
	background: #eafaf0;
	border: 1px solid #b8e7c9;
	color: #1f7a44;
	border-radius: 12px;
	padding: 22px 24px;
	text-align: center;
}
.egom-partner-success p { margin: 8px 0 0; }
.egom-partner-note {
	background: #faf6fa;
	border: 1px solid #eed9ea;
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 14.5px;
	color: #555;
}
.egom-partner-note--pending { background: #fff7e8; border-color: #f3dca8; color: #8a6400; }
.egom-partner-note--ok { background: #eafaf0; border-color: #b8e7c9; color: #1f7a44; }

@media (max-width: 600px) {
	.egom-partner-form__grid { grid-template-columns: 1fr; }
}

/* ====== Halasztott fizetés értesítő (kosár/pénztár) ====== */
.egom-deferred-notice {
	display: flex;
	align-items: center;
	gap: 14px;
	background: linear-gradient(135deg, rgba(233, 92, 211, 0.10), rgba(233, 92, 211, 0.03));
	border: 1px solid rgba(233, 92, 211, 0.35);
	border-left: 5px solid var(--egom-accent);
	border-radius: 12px;
	padding: 16px 18px;
	margin: 0 0 22px;
}
.egom-deferred-notice__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--egom-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.egom-deferred-notice__title {
	font-weight: 700;
	font-size: 15.5px;
	color: #b5249b;
	margin-bottom: 3px;
}
.egom-deferred-notice__text { font-size: 14px; color: #555; line-height: 1.45; }
.egom-deferred-due { margin-top: 12px; font-size: 14.5px; }

/* ====== Social proof popup (bal alsó) ====== */
.egom-social {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 9998;
	max-width: 320px;
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}
.egom-social.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.egom-social__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
	padding: 11px 34px 11px 11px;
	text-decoration: none;
	color: #222;
}
.egom-social__thumb {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	overflow: hidden;
	background: #f7f7f8;
	display: flex;
	align-items: center;
	justify-content: center;
}
.egom-social__thumb img { width: 100%; height: 100%; object-fit: contain; }
.egom-social__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.egom-social__line { font-size: 13px; color: #555; }
.egom-social__line strong { color: #222; }
.egom-social__prod {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--egom-accent);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}
.egom-social__ago { font-size: 11px; color: #aaa; }
.egom-social__close {
	position: absolute;
	top: 7px;
	right: 9px;
	font-size: 17px;
	line-height: 1;
	color: #bbb;
	cursor: pointer;
}
.egom-social__close:hover { color: #666; }

@media (max-width: 480px) {
	.egom-social { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}

/* ====== Hírlevél feliratkozás ([egom_newsletter]) ====== */
.egom-newsletter {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 22px 24px;
	max-width: 560px;
}
.egom-newsletter__title { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 4px; }
.egom-newsletter__subtitle { font-size: 14px; color: #777; margin-bottom: 14px; }
.egom-newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.egom-newsletter__name,
.egom-newsletter__email {
	flex: 1 1 160px;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	font-size: 14px;
}
.egom-newsletter__name:focus,
.egom-newsletter__email:focus {
	outline: none;
	border-color: var(--egom-accent);
	box-shadow: 0 0 0 3px rgba(233, 92, 211, 0.16);
}
.egom-newsletter__btn {
	flex: 0 0 auto;
	padding: 12px 22px;
	border: none;
	border-radius: 10px;
	background: var(--egom-accent);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: filter 0.15s;
}
.egom-newsletter__btn:hover { filter: brightness(0.93); }
.egom-newsletter__btn:disabled { opacity: 0.6; cursor: default; }
.egom-newsletter__msg { margin-top: 12px; font-size: 14px; }
.egom-newsletter__msg.is-ok { color: #1f7a44; }
.egom-newsletter__msg.is-err { color: #c0392b; }

/* ====== Admin partner státusz jelvény ====== */
.egom-pstatus {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
}
.egom-pstatus--pending { background: #fff3d6; color: #8a6400; }
.egom-pstatus--approved { background: #d8f3e3; color: #1f7a44; }
.egom-pstatus--rejected { background: #fbe0e4; color: #a3243b; }

/* Social popup ár sor */
.egom-social__price { font-size: 12.5px; color: #444; }
.egom-social__price strong { color: #222; }
.egom-social__price em { font-style: normal; font-size: 11px; color: #999; }

/* ====== Szép lapozó (natív WooCommerce + AJAX szűrő lapozó) ====== */
.woocommerce nav.woocommerce-pagination {
	text-align: center;
	margin: 34px 0 10px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	border: none !important;
	margin: 0;
	padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: none !important;
	margin: 0;
	overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #e7e0e6;
	color: #444;
	font-weight: 600;
	font-size: 14.5px;
	line-height: 1;
	text-decoration: none;
	transition: all 0.15s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--egom-accent);
	color: var(--egom-accent);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(233, 92, 211, 0.18);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--egom-accent);
	border-color: var(--egom-accent);
	color: #fff;
	box-shadow: 0 4px 12px rgba(233, 92, 211, 0.35);
}
.woocommerce nav.woocommerce-pagination ul li span.dots {
	background: transparent;
	border: none;
	box-shadow: none;
	color: #aaa;
}

/* --------------------------------------------------------------------------
   Szűrő: asztali nézetben ne legyen saját görgetősáv a listákban.
   Korábban az egérgörgő a belső listát görgette, és a látogatónak át kellett
   vinnie az egeret a termékoszlopra, hogy az oldal továbbmenjen.
   (A fájl végén van, hogy biztosan felülírja a fenti max-height szabályokat.)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
	.egom-filter .egom-filter__options,
	.egom-filter .egom-filter__bucket-opts,
	.egom-filter .egom-filter__scroll {
		max-height: none;
		overflow: visible;
	}
}

/* --------------------------------------------------------------------------
   Gyűjtőoldalak (Akciós / Új termékek / Egom ajánlata)
   -------------------------------------------------------------------------- */
/* A gyűjtőoldalak listája az Elementor tartalom ALÁ kerül, így nem örökli sem a
   szekció-konténer szélességét, sem az Elementor rács-osztályait. Ezért itt magunk
   adjuk meg a konténert és a rácsot – ugyanolyan szélességgel (1140px) és
   oszlopszámmal, mint a shop oldalon. Enélkül a termékek teljes szélességben,
   egymás alatt, óriási képekkel jelentek meg. */
.egom-landing {
	margin: 26px auto 0;
	max-width: 1140px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}
.egom-landing ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.egom-landing ul.products::before,
.egom-landing ul.products::after { content: none; }
.egom-landing ul.products > li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	min-width: 0;
}
/* Soronként legfeljebb 3 termék – a 4 oszlop zsúfoltnak bizonyult. */
@media (min-width: 768px) {
	.egom-landing ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Üres állapotnál ne törje szét a rácsot a szöveg. */
.egom-landing ul.products > li.egom-filter__empty-li { grid-column: 1 / -1; }

/* A shop kártya-kinézete egy konkrét Elementor elemhez van kötve (elem-azonosító
   szerinti szabályok), ezért ide nem öröklődik át. Az alábbiakkal ugyanazt a
   megjelenést állítjuk elő: rózsaszín keret, középre zárt tartalom, azonos
   betűméretek és gomb. */
.egom-landing ul.products > li.product {
	border: 1px solid var(--egom-accent);
	background: #fff;
	padding: 10px;
	text-align: center;
	font-size: 15px;
	color: #828282;
}
.egom-landing ul.products > li.product a { text-decoration: none; }
.egom-landing ul.products > li.product .woocommerce-loop-product__title,
.egom-landing ul.products > li.product h2 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--egom-accent);
	padding: 8px 0;
	margin: 0 0 14px;
	text-align: center;
}
.egom-landing ul.products > li.product .price {
	font-size: 18px;
	color: #000;
	margin: 0 0 9px;
	justify-content: center;
}
.egom-landing ul.products > li.product .button,
.egom-landing ul.products > li.product .added_to_cart {
	background: var(--egom-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 10px 15px;
	border: none;
	border-radius: 3px;
	display: block;
	text-align: center;
}
/* A csillagos értékelés és a „Kiemelt" jelvény ne lógjon ki. */
.egom-landing ul.products > li.product .star-rating { margin: 0 auto 8px; }
.egom-landing__empty {
	text-align: center;
	color: #666;
	font-size: 15px;
	padding: 34px 20px 12px;
}
.egom-landing__cta { text-align: center; padding-bottom: 30px; }
.egom-landing__cta .button {
	background: var(--egom-accent);
	color: #fff;
	border-radius: 50px;
	padding: 13px 32px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
}
/* Lapozó – a shop lapozójának megjelenését követi. A téma stílusa ide nem ér el,
   ezért felsorolásjelekkel, egymás alatt jelent meg. */
.egom-landing .woocommerce-pagination {
	margin: 34px 0 10px;
	text-align: center;
	border: none;
}
.egom-landing .woocommerce-pagination ul,
.egom-landing .woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
}
.egom-landing .woocommerce-pagination li {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
	display: block;
}
.egom-landing .woocommerce-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--egom-accent);
	border-radius: 10px;
	background: var(--egom-accent);
	color: #fff;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.15s;
}
/* Az aktuális oldal fordított színnel, hogy látszódjon, hol tartunk. */
.egom-landing .woocommerce-pagination .page-numbers.current,
.egom-landing .woocommerce-pagination a.page-numbers:hover {
	background: #fff;
	color: var(--egom-accent);
}
.egom-landing .woocommerce-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: #999;
	min-width: 20px;
	padding: 0 2px;
}

/* --------------------------------------------------------------------------
   Link nélküli social ikonok elrejtése.
   Az Instagram és a TikTok ikonhoz nem volt megadva cím, így kattintásra
   sehova nem vittek. A lábléc fizetési ikonjai (visa, mastercard…) szintén
   elementor-social-icon elemek, de azok DÍSZÍTŐ elemek – azokat nem bántjuk.
   Ha a hivatkozás bekerül az Elementorban, az ikon magától újra megjelenik.
   -------------------------------------------------------------------------- */
a.elementor-social-icon-instagram:not([href]),
a.elementor-social-icon-tiktok:not([href]),
a.elementor-social-icon-instagram[href="#"],
a.elementor-social-icon-tiktok[href="#"] { display: none !important; }
.elementor-grid-item:has(> a.elementor-social-icon-instagram:not([href])),
.elementor-grid-item:has(> a.elementor-social-icon-tiktok:not([href])) { display: none !important; }

/* --------------------------------------------------------------------------
   Terméklista: soronként 3 termék.
   Korábban széles képernyőn 4-re emeltük, de zsúfoltnak bizonyult – az Elementor
   saját 3 oszlopos beállítása marad érvényben minden képernyőméreten.
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Mobil fejléc: a hamburger ikon egy vonalba a többi ikonnal.
   Az Elementorban a menü külön elemként ül, saját (magasabb) dobozban, ezért a
   középre igazítás 10 képponttal lejjebb tette, mint a kereső/kosár/profil
   ikonokat. A -10px optikai korrekció ezt hozza egy vonalba; az elrendezést nem
   befolyásolja, mert csak eltolás (position: relative).
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	header.elementor-location-header .elementor-menu-toggle {
		position: relative;
		top: -10px;
	}
}

/* --------------------------------------------------------------------------
   Kezdőlapi banner-karusszel: a teljes felirat legyen látható.
   A képek fekvők (1535×1024), a diák viszont keskeny, magas dobozok (315×695)
   voltak, „cover" kitöltéssel – így a kép két oldala levágódott, és a feliratok
   (pl. „LEGYÉL EGOM PARTNER – Regisztráció!") kilógtak. A dia mostantól a kép
   arányát veszi fel, a kép pedig teljes egészében belefér.
   A diák csak háttérképet tartalmaznak (nincs bennük szöveg vagy gomb),
   ezért a magasság módosítása nem tol el semmit.
   -------------------------------------------------------------------------- */
body.home .elementor-slides .swiper-slide {
	aspect-ratio: 1535 / 1024;
	height: auto !important;
	min-height: 0 !important;
}
body.home .elementor-slides .swiper-slide-bg {
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

/* --------------------------------------------------------------------------
   Mennyiségi kedvezmény doboz a terméklapon
   -------------------------------------------------------------------------- */
.egom-tiers {
	background: #faf6fa;
	border: 1px solid #f0e2ee;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 0 0 18px;
	font-size: 14px;
}
.egom-tiers__title {
	display: block;
	font-weight: 700;
	color: var(--egom-accent);
	margin-bottom: 6px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.egom-tiers ul { margin: 0; padding: 0 0 0 2px; list-style: none; }
.egom-tiers li { margin: 3px 0; color: #444; }
.egom-tier__save { color: #2e7d32; font-weight: 600; }

/* --------------------------------------------------------------------------
   Gombok: a felirat soha ne vágódjon le.
   A partner regisztrációs gomb `white-space: nowrap` volt, ezért mobilon a
   „PARTNER REGISZTRÁCIÓ ELKÜLDÉSE" jobb széle levágódott. A termékkártyák
   „Opciók választása" gombja is kilóghat keskeny kijelzőn vagy megnövelt
   rendszerbetűméret mellett. Mindkettőt engedjük tördelni.
   -------------------------------------------------------------------------- */
.egom-partner-form button,
.egom-partner-form input[type="submit"],
.egom-partner-form .button,
ul.products li.product .button,
ul.products li.product .added_to_cart,
.egom-landing ul.products li.product .button {
	white-space: normal !important;
	overflow-wrap: anywhere;
	hyphens: auto;
	max-width: 100%;
	box-sizing: border-box;
	line-height: 1.25;
}
/* Nagyon keskeny kijelzőn kisebb betű, hogy biztosan kiférjen. */
@media (max-width: 400px) {
	ul.products li.product .button,
	ul.products li.product .added_to_cart {
		font-size: 13px;
		padding-left: 8px;
		padding-right: 8px;
	}
}

/* Minimum rendelés / kiszerelés tájékoztató a terméklapon */
.egom-order-info {
	background: #f7f7f9;
	border-left: 3px solid var(--egom-accent);
	padding: 9px 14px;
	margin: 0 0 16px;
	font-size: 14px;
	color: #444;
	border-radius: 0 8px 8px 0;
}

/* --------------------------------------------------------------------------
   Lábléc terméklista (újonnan érkezett / akciós)
   -------------------------------------------------------------------------- */
.egom-footer-products { display: flex; flex-wrap: wrap; gap: 26px; }
.egom-footer-products__block { min-width: 150px; }
.egom-footer-products__title {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 15px;
}
.egom-footer-products ul { list-style: none; margin: 0 0 8px; padding: 0; }
.egom-footer-products li { margin: 0 0 6px; }
.egom-footer-products a { text-decoration: none; font-size: 13.5px; opacity: 0.85; }
.egom-footer-products a:hover { opacity: 1; color: var(--egom-accent); }
.egom-footer-products__more { font-size: 13px; font-weight: 600; color: var(--egom-accent); }

/* Partner oldal – bejelentkezve csak az állapotüzenet kell.
   A regisztrációs űrlaphoz tervezett szürke kártya ilyenkor üresen keretezné
   a rövid üzenetet, ezért a KÖZVETLEN szülő konténer díszítését levesszük.
   A ">" láncolat fontos: csak a doboz saját konténerét találja el, a fölötte
   lévő szekciókat nem. */
.egom-partner-box--bare { max-width: none; }
.e-con:has(> .elementor-widget-shortcode > .elementor-widget-container > .elementor-shortcode > .egom-partner-box--bare),
.e-con:has(> .elementor-widget-shortcode > .elementor-shortcode > .egom-partner-box--bare) {
	background: none !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* Gyorsnézet – visszajelzés sikeres kosárba tétel után */
.egom-qv-added {
	margin: 16px 0 0;
	padding: 12px 16px;
	border-radius: 10px;
	background: #eafaf0;
	border: 1px solid #b8e7c9;
	color: #1f7a44;
	font-size: 14.5px;
	font-weight: 600;
}
.egom-qv-added a {
	color: #1f7a44;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ------------------------------------------------------------------
   Mobil fejléc és legördülő menü – lila
   A fejlécnek négy szekciója van, mobilon az 1e29edf4 látszik. Ez és a
   benne lévő menü UGYANAZT az Elementor globális színt használja
   (--e-global-color-b8d1d84), ezért elég a változót a szekción belül
   felülírni: a sáv és a lenyíló menü együtt vált színt. A választott
   árnyalat a desktop fejlécsávok színe, hogy egységes maradjon.
   ------------------------------------------------------------------ */
header.elementor-140 .elementor-element.elementor-element-1e29edf4 {
	--e-global-color-b8d1d84: #650965;
}
header.elementor-140 .elementor-element.elementor-element-41fc89ae .elementor-nav-menu--dropdown a:hover,
header.elementor-140 .elementor-element.elementor-element-41fc89ae .elementor-nav-menu--dropdown a:focus,
header.elementor-140 .elementor-element.elementor-element-41fc89ae .elementor-nav-menu--dropdown a.elementor-item-active,
header.elementor-140 .elementor-element.elementor-element-41fc89ae .elementor-nav-menu--dropdown a.highlighted {
	background-color: #4e074e;
}
