/* !important removed on 2026-07-28 (plugin version 0.1.121).
   Until 0.1.120 this stylesheet could not hold a value without it: the theme's
   reset.css and the Elementor kits were printed later, so they won every tie.
   Since the enqueue moved to priority 30 this file is printed last, and an
   equal-specificity rule wins on source order alone.

   The only !important left are the ones aimed at the language switcher — a
   third-party widget that sets its own, so this is not a race we win by
   ordering. Everything else is plain CSS again.

   Guard: _project/harness/structuretest.php checks the enqueue priority. If
   that ever drops back to the default, these rules quietly lose. */

/* SPECIFICITY, NOT !important (2026-07-28).
   The interactive elements below repeat their own class —
   `.abc-favorite-button.abc-favorite-button` — which matches exactly the same
   nodes at 0-2-0 instead of 0-1-0.

   Why it is needed: Elementor's kit styles buttons as `.elementor-kit-127
   button` (0-1-1). Loading later does not help against a HIGHER specificity, so
   a plain single-class rule lost its padding, width and radius to the kit — the
   heart button rendered 60px wide with 10px 30px padding.

   Repeating the class is deliberate over !important: it wins the same fight but
   stays overridable, so nobody has to escalate again later. */

.abc-favorite-button.abc-favorite-button,
.abc-favorites-header,
.abc-favorites-list-wrap,
.abc-favorites-inquiry {
	--abc-favorites-accent: var(--e-global-color-accent, #b0203f);
}

.abc-favorite-button.abc-favorite-button,
.abc-favorites-header__toggle.abc-favorites-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 0;
	background: transparent;
	background-image: none;
	color: #646970;
	box-shadow: none;
	cursor: pointer;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

/* Inside a WP Grid Builder card the heart must stay ON TOP and CLICKABLE.
   WPGB makes the whole card lead to the property with a link stretched over
   it — `position: absolute; inset: 0` — and that overlay is painted after the
   card content, so it covers the button. The click then lands on the overlay,
   never on the heart: the JS handler asks event.target.closest() for a
   favourite button, gets nothing, stands back, and the visitor is taken to the
   property instead of saving it. No amount of stopPropagation() helps, because
   the button was never the target.

   A stacking context of its own lifts the heart back above the overlay. Kept
   deliberately low (3) so it stays under the off-canvas panel and the header.
   The JS side of this — capture phase plus stopImmediatePropagation — is in
   assets/js/favorites.js; both are needed, they fix different halves.
   (Ferenc 2026-07-26: "wenn ich das bei wp gridbuilder einbinde macht er
   automatisch ein klick auf die property".) */
.abc-favorite-button.abc-favorite-button {
	position: relative;
	z-index: 3;
}

.abc-favorite-button.abc-favorite-button:hover,
.abc-favorite-button.abc-favorite-button:focus-visible,
.abc-favorite-button.abc-favorite-button.is-saved,
.abc-favorites-header__toggle.abc-favorites-header__toggle:hover,
.abc-favorites-header__toggle.abc-favorites-header__toggle:focus-visible,
.abc-favorites-header.is-open .abc-favorites-header__toggle.abc-favorites-header__toggle {
	color: var(--abc-favorites-accent);
	transform: translateY(-1px);
	outline: none;
}

.abc-favorite-button__icon.abc-favorite-button__icon,
.abc-favorites-header__icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
}

.abc-favorite-button__icon svg,
.abc-favorites-header__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abc-favorite-button.is-saved .abc-favorite-button__icon svg {
	fill: currentColor;
}

.abc-favorite-button--icon.abc-favorite-button--icon {
	flex-direction: column;
	gap: 0;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	padding: 0;
	margin: 0;
	line-height: 0;
	border-radius: 0;
}

.abc-favorite-button--align-left.abc-favorite-button--align-left {
	display: flex;
	margin-right: auto;
}

.abc-favorite-button--align-center.abc-favorite-button--align-center {
	display: flex;
	margin-right: auto;
	margin-left: auto;
}

.abc-favorite-button--align-right.abc-favorite-button--align-right {
	display: flex;
	margin-left: auto;
}

.abc-favorite-button--text.abc-favorite-button--text {
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
}

.abc-favorite-button__label.abc-favorite-button__label,
.abc-favorites-header__label {
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.abc-favorite-button__label.abc-favorite-button__label:empty,
.abc-favorites-header__label:empty {
	display: none;
}

.abc-favorites-header {
	position: relative;
	display: inline-flex;
}

.abc-favorites-header__toggle.abc-favorites-header__toggle {
	position: relative;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border-radius: 0;
	line-height: 0;
}

.abc-favorites-header__count {
	position: absolute;
	top: -3px;
	right: -4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 999px;
	background: var(--abc-favorites-accent);
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
}

.abc-favorites-header__count[hidden] {
	display: none;
}

.abc-favorites-header--offcanvas .abc-favorites-header__count {
	top: -5px;
	right: -7px;
	min-width: 14px;
	height: 14px;
	padding: 0 3px;
	font-size: 8px;
}

.abc-favorites-header__label {
	display: none;
}

.abc-favorites-header__menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 60;
	width: min(330px, calc(100vw - 24px));
	padding: 10px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(16, 24, 40, 0.14);
	box-sizing: border-box;
}

.abc-favorites-header__menu[hidden] {
	display: none;
}

.abc-favorites-header__items {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.abc-favorites-header__item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 10px;
	align-items: center;
	padding: 6px;
	border-radius: 8px;
	color: #18181b;
	text-decoration: none;
}

.abc-favorites-header__item:hover,
.abc-favorites-header__item:focus-visible {
	background: #f5f5f5;
	color: #18181b;
	outline: none;
}

.abc-favorites-header__thumb {
	display: block;
	overflow: hidden;
	width: 56px;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	background: #f3f4f6;
}

.abc-favorites-header__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abc-favorites-header__text {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.abc-favorites-header__text strong,
.abc-favorites-header__text small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.abc-favorites-header__text strong {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
}

.abc-favorites-header__text small,
.abc-favorites-header__empty {
	color: #71717a;
	font-size: 12px;
	line-height: 1.3;
}

.abc-favorites-header__empty {
	padding: 12px;
}

.abc-favorites-header__all.abc-favorites-header__all {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 9px 12px;
	border-radius: 8px;
	background: var(--abc-favorites-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.abc-favorites-header__all.abc-favorites-header__all:hover,
.abc-favorites-header__all.abc-favorites-header__all:focus-visible {
	background: var(--abc-favorites-accent);
	background: color-mix(in srgb, var(--abc-favorites-accent) 88%, #000);
	color: #fff;
	outline: none;
}

.abc-favorites-header__all.abc-favorites-header__all[hidden] {
	display: none;
}

.abc-favorites-offcanvas-open {
	overflow: hidden;
}

.abc-favorites-offcanvas-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	background: rgba(24, 24, 27, 0.56);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.abc-favorites-header.is-offcanvas-open .abc-favorites-offcanvas-backdrop {
	opacity: 1;
}

.abc-favorites-offcanvas-backdrop[hidden] {
	display: none;
}

.abc-favorites-offcanvas {
	position: fixed;
	inset: 0 0 0 auto;
	z-index: 2147483647;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: 35vw;
	min-width: 430px;
	max-width: 590px;
	height: 100vh;
	height: 100dvh;
	background: #fff;
	box-shadow: -22px 0 70px rgba(16, 24, 40, 0.18);
	opacity: 0.98;
	transform: translate3d(112%, 0, 0);
	transition:
		transform 0.82s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.58s ease,
		box-shadow 0.82s ease;
	will-change: transform;
}

.abc-favorites-header.is-offcanvas-open .abc-favorites-offcanvas {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.abc-favorites-offcanvas[hidden] {
	display: none;
}

.abc-favorites-header.is-offcanvas-preparing .abc-favorites-offcanvas {
	opacity: 0.98;
	transform: translate3d(112%, 0, 0);
}

.abc-favorites-header.is-offcanvas-preparing .abc-favorites-offcanvas-backdrop {
	opacity: 0;
}

body.abc-favorites-offcanvas-open .wm-language-switcher,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls-legacy-dropdown,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls-legacy-dropdown-click,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls-statics-shortcode_actions,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls-sub-menu,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls-current-language > ul,
body.abc-favorites-offcanvas-open .wm-language-switcher .wpml-ls > ul > li > ul {
	z-index: 1 !important;
}

body.abc-favorites-offcanvas-open .wm-language-switcher {
	visibility: hidden !important;
	pointer-events: none !important;
}

.abc-favorites-offcanvas__head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 16px;
	padding: 30px 30px 20px;
	border-bottom: 1px solid #e4e4e7;
}

.abc-favorites-offcanvas__head h2 {
	margin: 0;
	color: #18181b;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.15;
}

.abc-favorites-offcanvas__close.abc-favorites-offcanvas__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-color: transparent;
	background-image: none;
	box-shadow: none;
	color: #18181b;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.16s ease;
}

.abc-favorites-offcanvas__close.abc-favorites-offcanvas__close:hover,
.abc-favorites-offcanvas__close.abc-favorites-offcanvas__close:focus-visible {
	background: transparent;
	background-color: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--abc-favorites-accent);
	outline: none;
}

.abc-favorites-offcanvas__list {
	display: grid;
	align-content: start;
	gap: 0;
	min-height: 0;
	padding: 0 30px;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.abc-favorites-offcanvas__item {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 16px 28px 16px 0;
	border: 0;
	border-bottom: 1px solid #e4e4e7;
	border-radius: 0;
	background: #fff;
}

.abc-favorites-offcanvas__thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	background: #f3f4f6;
}

.abc-favorites-offcanvas__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abc-favorites-offcanvas__text {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.abc-favorites-offcanvas__text a {
	color: #18181b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.abc-favorites-offcanvas__text small {
	color: #71717a;
	font-size: 12px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.abc-favorites-offcanvas__remove {
	position: absolute;
	top: 14px;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	background-color: transparent;
	background-image: none;
	box-shadow: none;
	color: #71717a;
	font: inherit;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.16s ease;
}

.abc-favorites-offcanvas__remove:hover,
.abc-favorites-offcanvas__remove:focus-visible {
	background: transparent;
	background-color: transparent;
	background-image: none;
	box-shadow: none;
	color: var(--abc-favorites-accent);
	outline: none;
}

.abc-favorites-offcanvas__empty {
	padding: 18px 0;
	color: #71717a;
	font-size: 14px;
}

.abc-favorites-offcanvas__footer {
	display: grid;
	gap: 12px;
	max-height: 48dvh;
	padding: 20px 30px 30px;
	border-top: 1px solid #e4e4e7;
	overflow-y: auto;
}

.abc-favorites-offcanvas__link.abc-favorites-offcanvas__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border: 1px solid #18181b;
	border-radius: 8px;
	background: transparent;
	background-color: transparent;
	background-image: none;
	color: #18181b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.16s ease, color 0.16s ease;
}

.abc-favorites-offcanvas__link.abc-favorites-offcanvas__link:hover,
.abc-favorites-offcanvas__link.abc-favorites-offcanvas__link:focus-visible {
	background: #18181b;
	background-color: #18181b;
	color: #fff;
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.abc-favorites-offcanvas,
	.abc-favorites-offcanvas-backdrop {
		transition-duration: 0.01ms;
	}
}

.abc-favorites-offcanvas__request.abc-favorites-offcanvas__request {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border: 1px solid var(--abc-favorites-accent);
	border-radius: 8px;
	background: var(--abc-favorites-accent);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.abc-favorites-offcanvas__request.abc-favorites-offcanvas__request:hover,
.abc-favorites-offcanvas__request.abc-favorites-offcanvas__request:focus-visible {
	background: color-mix(in srgb, var(--abc-favorites-accent) 88%, #000);
	outline: none;
}

.abc-favorites-offcanvas__form[hidden] {
	display: none;
}

.abc-favorites-offcanvas .abc-favorites-inquiry {
	padding: 4px 0 0;
	border: 0;
	background: transparent;
}

.abc-favorites-list-wrap {
	display: grid;
	gap: 18px;
}

.abc-favorites-list-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 4px;
	border-bottom: 1px solid #e4e4e7;
}

.abc-favorites-list-toolbar__text {
	display: grid;
	gap: 3px;
}

.abc-favorites-list-toolbar h2 {
	margin: 0;
	color: #18181b;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}

.abc-favorites-list-toolbar span {
	color: #71717a;
	font-size: 13px;
	line-height: 1.3;
}

.abc-favorites-list-toolbar__share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	padding: 9px 13px;
	border: 1px solid var(--abc-favorites-accent);
	border-radius: 8px;
	background: var(--abc-favorites-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	list-style: none;
}

.abc-favorites-list-toolbar__share:hover,
.abc-favorites-list-toolbar__share:focus-visible {
	border-color: var(--abc-favorites-accent);
	background: var(--abc-favorites-accent);
	background: color-mix(in srgb, var(--abc-favorites-accent) 88%, #000);
	color: #fff;
	outline: none;
}

.abc-favorites-list-toolbar__share::-webkit-details-marker,
.abc-favorites-action::-webkit-details-marker {
	display: none;
}

.abc-favorites-list-toolbar__share svg,
.abc-favorites-action svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abc-favorites-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 18px;
}

.abc-favorites-list__empty {
	grid-column: 1 / -1;
	padding: 22px 0;
	color: #71717a;
	font-size: 15px;
}

.abc-favorites-card {
	overflow: visible;
	border: 1px solid #e4e4e7;
	border-radius: 8px;
	background: #fff;
}

.abc-favorites-card__image {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.abc-favorites-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
}

.abc-favorites-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abc-favorites-card__body {
	display: grid;
	gap: 9px;
	padding: 14px;
}

.abc-favorites-card__title {
	color: #18181b;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.abc-favorites-card__title:hover,
.abc-favorites-card__title:focus-visible {
	color: var(--abc-favorites-accent);
	outline: none;
}

.abc-favorites-card__meta {
	color: #71717a;
	font-size: 13px;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.abc-favorites-card__actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 7px;
	padding-top: 3px;
}

.abc-favorites-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 34px;
	padding: 7px 8px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #18181b;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	list-style: none;
}

.abc-favorites-action:hover,
.abc-favorites-action:focus-visible {
	border-color: var(--abc-favorites-accent);
	color: var(--abc-favorites-accent);
	outline: none;
}

.abc-favorites-share,
.abc-favorites-pdf {
	position: relative;
	display: block;
}

.abc-favorites-share__menu,
.abc-favorites-pdf__menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 30;
	display: grid;
	min-width: 150px;
	padding: 8px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(16, 24, 40, 0.14);
}

.abc-favorites-share__menu a,
.abc-favorites-share__menu button,
.abc-favorites-pdf__menu a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 9px 10px;
	border: 0;
	border-radius: 7px;
	background: #fff;
	color: #18181b;
	font: inherit;
	font-size: 12px;
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.abc-favorites-share__menu a:hover,
.abc-favorites-share__menu a:focus-visible,
.abc-favorites-share__menu button:hover,
.abc-favorites-share__menu button:focus-visible,
.abc-favorites-pdf__menu a:hover,
.abc-favorites-pdf__menu a:focus-visible {
	background: #f5f5f5;
	color: var(--abc-favorites-accent);
	outline: none;
}

.abc-favorites-card__remove {
	justify-self: start;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--abc-favorites-accent);
	font: inherit;
	font-size: 13px;
	cursor: pointer;
}

.abc-favorites-inquiry {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid #e4e4e7;
	border-radius: 8px;
	background: #fff;
}

.abc-favorites-inquiry__head {
	display: grid;
	gap: 4px;
}

.abc-favorites-inquiry__head h3 {
	margin: 0;
	color: #18181b;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}

.abc-favorites-inquiry__head p {
	margin: 0;
	color: #71717a;
	font-size: 13px;
	line-height: 1.4;
}

.abc-favorites-inquiry__fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.abc-favorites-inquiry__field {
	display: grid;
	gap: 6px;
	color: #18181b;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}

.abc-favorites-inquiry__field--full {
	grid-column: 1 / -1;
}

.abc-favorites-inquiry__control {
	position: relative;
	display: block;
}

.abc-favorites-inquiry__icon {
	position: absolute;
	left: 12px;
	top: 50%;
	z-index: 1;
	display: inline-flex;
	width: 17px;
	height: 17px;
	color: #71717a;
	transform: translateY(-50%);
	pointer-events: none;
}

.abc-favorites-inquiry__control--textarea .abc-favorites-inquiry__icon {
	top: 13px;
	transform: none;
}

.abc-favorites-inquiry__icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abc-favorites-inquiry__field input,
.abc-favorites-inquiry__field textarea {
	width: 100%;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #18181b;
	font: inherit;
	font-size: 14px;
	line-height: 1.35;
}

.abc-favorites-inquiry__field input {
	min-height: 40px;
	padding: 9px 11px 9px 39px;
}

.abc-favorites-inquiry__field textarea {
	min-height: 96px;
	padding: 10px 11px 10px 39px;
	resize: vertical;
}

.abc-favorites-inquiry__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.abc-favorites-inquiry__privacy {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	color: #52525b;
	font-size: 12px;
	line-height: 1.45;
}

.abc-favorites-inquiry__privacy input {
	width: 16px;
	height: 16px;
	margin: 1px 0 0;
	accent-color: var(--abc-favorites-accent);
	cursor: pointer;
}

.abc-favorites-inquiry__field input:focus,
.abc-favorites-inquiry__field textarea:focus {
	border-color: var(--abc-favorites-accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(176, 32, 63, 0.12);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--abc-favorites-accent) 18%, transparent);
}

/* Takes the site's Elementor colours, with the old accent as the fallback for
   any page where those globals are not defined — a plain WordPress theme, or the
   admin preview. Written as var(global, fallback) so neither case needs its own
   rule. (Ferenc 2026-07-26.) */
.abc-favorites-inquiry__submit.abc-favorites-inquiry__submit {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 10px 15px;
	border: 1px solid var(--e-global-color-34d064f, var(--abc-favorites-accent));
	border-radius: 8px;
	background-color: var(--e-global-color-34d064f, var(--abc-favorites-accent));
	color: var(--e-global-color-7b473b5, #fff);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

/* Minimally LIGHTER on hover, not darker: mixing 8 % white keeps the brand
   colour recognisable and works whatever that colour turns out to be — a fixed
   lighter shade would break the moment the Elementor global changes. */
.abc-favorites-inquiry__submit.abc-favorites-inquiry__submit:hover,
.abc-favorites-inquiry__submit.abc-favorites-inquiry__submit:focus-visible {
	border-color: color-mix(in srgb, var(--e-global-color-34d064f, var(--abc-favorites-accent)) 92%, #fff);
	background-color: color-mix(in srgb, var(--e-global-color-34d064f, var(--abc-favorites-accent)) 92%, #fff);
	color: var(--e-global-color-7b473b5, #fff);
	outline: none;
}

/* WhatsApp sits UNDER the main button and stays visibly secondary: black
   outline, black text, no fill. Deliberately not WhatsApp green — green next to
   the brand button would read as the primary action, and the ordinary send is
   still the primary one. */
.abc-favorites-inquiry__submit--wa.abc-favorites-inquiry__submit--wa,
.abc-favorites-inquiry__submit--wa.abc-favorites-inquiry__submit--wa:disabled {
	margin-top: 8px;
	border-color: #000;
	background-color: transparent;
	color: #000;
}

.abc-favorites-inquiry__submit--wa.abc-favorites-inquiry__submit--wa:hover,
.abc-favorites-inquiry__submit--wa.abc-favorites-inquiry__submit--wa:focus-visible {
	border-color: #000;
	background-color: rgba(0, 0, 0, .06);
	color: #000;
}

.abc-favorites-inquiry__btnico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.abc-favorites-inquiry__btnico svg {
	width: 17px;
	height: 17px;
	display: block;
}

.abc-favorites-inquiry__submit.abc-favorites-inquiry__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.abc-favorites-inquiry__status {
	color: #71717a;
	font-size: 13px;
	line-height: 1.4;
}

.abc-favorites-inquiry__status.is-success {
	color: #157347;
}

.abc-favorites-inquiry__status.is-error {
	color: var(--abc-favorites-accent);
}

@media (max-width: 767px) {
	.abc-favorites-offcanvas {
		width: min(94vw, 520px);
		min-width: 0;
	}

	.abc-favorites-offcanvas__item {
		grid-template-columns: 60px minmax(0, 1fr);
	}

	.abc-favorites-offcanvas__footer {
		max-height: 52dvh;
	}

	.abc-favorites-offcanvas .abc-favorites-inquiry__fields {
		grid-template-columns: 1fr;
	}

	.abc-favorites-offcanvas .abc-favorites-inquiry__submit.abc-favorites-inquiry__submit {
		width: 100%;
	}

	.abc-favorites-header__menu {
		position: fixed;
		top: 64px;
		right: 12px;
		left: 12px;
		width: auto;
		max-height: calc(100dvh - 82px);
		overflow-y: auto;
	}

	.abc-favorites-list-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.abc-favorites-list-toolbar__share {
		width: 100%;
	}

	.abc-favorites-card__actions {
		grid-template-columns: 1fr;
	}

	.abc-favorites-inquiry__fields {
		grid-template-columns: 1fr;
	}

	.abc-favorites-inquiry__submit.abc-favorites-inquiry__submit {
		width: 100%;
	}

	.abc-favorites-share__menu,
	.abc-favorites-pdf__menu {
		left: 0;
		right: auto;
	}
}
