/* ===== RAIBA-IMMO BUILD-MARKER: CSS v6.9.9 ===== */
/**
 * Raiba Immo Slider – Design.
 *
 * Token-System über CSS-Variablen (per Elementor überschreibbar).
 * Vier Karten-Stile: classic (Basis), overlay, split, minimal.
 * Typo erbt standardmäßig die globale Schrift (font-family: inherit).
 */

.vr-wrapper {
	/* Farb-Token (Defaults; Elementor setzt sie auf {{WRAPPER}}) */
	--vr-accent:        #FF6600;
	--vr-price:         #002D67;
	--vr-title:         #1b2530;
	--vr-text:          #6b7280;
	--vr-stat:          var(--vr-accent);
	--vr-card-bg:       #ffffff;
	--vr-page:          transparent;
	--vr-line:          #edeff2;
	--vr-radius:        14px;
	--vr-img-h:         240px;
	--vr-ribbon-bg:     var(--vr-accent);
	--vr-ribbon-text:   #ffffff;
	--vr-overlay-color: #0b1a2b;
	--vr-overlay-op:    .55;
	--vr-btn-bg:        transparent;
	--vr-btn-color:     var(--vr-accent);
	--vr-btn-bg-h:      var(--vr-accent);
	--vr-btn-color-h:   #ffffff;
	--vr-btn-border:    var(--vr-accent);
	--vr-btn-bw:        2px;
	--vr-btn-radius:    10px;
	--vr-btn-pad:       13px 18px;
	--vr-nav-color:     #1b2530;
	--vr-nav-bg:        #ffffff;
	--vr-dot:           #cfd4da;
	--vr-dot-active:    var(--vr-accent);

	position: relative;
	width: 100%;
	padding: 4px;
	background: var(--vr-page);
	font-family: inherit;               /* erbt die globale Schrift */
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.vr-wrapper *,
.vr-wrapper *::before,
.vr-wrapper *::after { box-sizing: border-box; }

/* ---------------------------------------------------------------- Karte */
.vr-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: var(--vr-card-min-h, 500px);
	background: var(--vr-card-bg);
	border-radius: var(--vr-radius);
	border: 1px solid var(--vr-line);
	box-shadow: 0 6px 22px rgba(16, 24, 40, .06);
	overflow: hidden;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.vr-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(16, 24, 40, .14);
}
.vr-card[data-href] { cursor: pointer; }

/* ---------------------------------------------------------------- Medien */
.vr-media {
	position: relative;
	height: var(--vr-img-h);
	flex: none;
	overflow: hidden;
	background: #f2f3f5;
}
.vr-nested-slider { height: 100%; }
.vr-media .swiper-slide { height: 100% !important; }
.vr-img-link { display: block; height: 100%; }
.vr-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.vr-zoom .vr-card:hover .vr-media img { transform: scale(1.06); }

/* dezenter Scrim – nur bei Overlay sichtbar */
.vr-scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to top,
		color-mix(in srgb, var(--vr-overlay-color) calc(var(--vr-overlay-op) * 100%), transparent) 0%,
		color-mix(in srgb, var(--vr-overlay-color) calc(var(--vr-overlay-op) * 60%), transparent) 34%,
		transparent 66%
	);
	opacity: 0;
	transition: opacity .3s ease;
}

/* Badge (Pill = fließender Chip im Text / Ribbon = Eck-Banner auf dem Bild) */
.vr-pill {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--vr-ribbon-bg);
	color: var(--vr-ribbon-text);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-shadow: none;
	box-shadow: 0 2px 8px rgba(16,24,40,.14);
}
.vr-pill--neutral { background: #46505c; }

.vr-badge-ribbon .vr-pill {
	position: absolute;
	top: 20px;
	left: -42px;
	right: auto;
	z-index: 3;
	margin: 0;
	border-radius: 0;
	transform: rotate(-45deg);
	width: 160px;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.vr-badge-none .vr-pill { display: none; }

/* Bild-Navigation (innerhalb der Karte) */
.vr-img-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(12, 18, 28, .42);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	transition: opacity .3s ease, background .2s ease;
}
.vr-img-nav:hover { background: rgba(12, 18, 28, .72); }
.vr-img-nav--prev { left: 10px; }
.vr-img-nav--next { right: 10px; }
.vr-card:hover .vr-img-nav { opacity: 1; }
.vr-img-nav svg { width: 16px; height: 16px; }
.vr-img-nav.swiper-button-disabled { opacity: 0 !important; }

/* Platzhalter ohne Bild (kein externer Request) */
.vr-noimg {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 100%;
	color: #b3b8bf;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* ---------------------------------------------------------------- Inhalt */
.vr-content {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 24px 24px;
	z-index: 2;
}

.vr-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	min-height: 18px;
}
.vr-eyebrow .vr-pin { width: 15px; height: 15px; fill: var(--vr-accent); flex: none; }
.vr-loc {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--vr-title);
}
.vr-tag {
	margin-left: auto;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--vr-accent);
	border: 1px solid color-mix(in srgb, var(--vr-accent) 40%, transparent);
	padding: 2px 8px;
	border-radius: 4px;
}

.vr-title {
	margin: 0 0 16px;
	font-size: 17px;
	line-height: 1.34;
	font-weight: 600;
	color: var(--vr-title);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vr-title a { color: inherit; text-decoration: none; transition: color .2s ease; }
.vr-title a:hover { color: var(--vr-accent); }

/* Objektnummer (VBS-Stil) */
.vr-objnr {
	margin: -10px 0 15px;
	font-size: 11.5px;
	letter-spacing: .06em;
	color: var(--vr-text);
	font-variant-numeric: tabular-nums;
}

/* Eckdaten */
.vr-stats {
	display: grid;
	grid-template-columns: repeat(var(--vr-stat-cols, 3), 1fr);
	list-style: none;
	margin: 0 0 22px;
	padding: 14px 0;
	border-top: 1px solid var(--vr-line);
	border-bottom: 1px solid var(--vr-line);
}
.vr-stats li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3px;
	padding: 0 6px;
	position: relative;
}
.vr-stats li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 12%;
	height: 76%;
	width: 1px;
	background: var(--vr-line);
}
.vr-stat-ico { display: block; width: 17px; height: 17px; color: var(--vr-stat); margin-bottom: 3px; }
.vr-stat-val { font-size: 15px; font-weight: 800; color: var(--vr-title); line-height: 1.1; }
.vr-stat-lbl { font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--vr-text); }

/* Preis + CTA */
.vr-footer { margin-top: auto; }
.vr-price { margin-bottom: 14px; }
.vr-price-lbl { display: block; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--vr-text); opacity: .7; }
.vr-price-val {
	display: block;
	margin-top: 2px;
	font-size: 22px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--vr-price);
}
.vr-price-sub { display: inline-block; margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--vr-text); }
.vr-price-note { display: block; margin-top: 2px; font-size: 11px; color: var(--vr-text); }

/* Preis-Störer: runder Akzent-Kreis, Text geneigt (Größe/Farben/Neigung/Schrift via Stil-Tab) */
.vr-stoerer {
	position: absolute;
	z-index: 4;
	width: var(--vr-st-size, 134px);
	height: var(--vr-st-size, 134px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px;
	border-radius: 50%;
	background: var(--vr-st-bg, var(--vr-accent));
	color: var(--vr-st-color, #fff);
	transform: rotate(var(--vr-st-tilt, 7deg));
	box-shadow: 0 6px 18px rgba(16, 24, 40, .28);
	line-height: 1.08;
	text-shadow: none;
	pointer-events: none;
}
.vr-stoerer--tr { top: 16px; right: 16px; }
.vr-stoerer--tl { top: 16px; left: 16px; }
.vr-stoerer--br { bottom: 16px; right: 16px; }
.vr-stoerer--bl { bottom: 16px; left: 16px; }
.vr-st-label { font-size: 11px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; opacity: .95; }
.vr-st-amount { font-size: 20px; font-weight: 800; margin: 3px 0; letter-spacing: -.01em; }
.vr-st-prov { font-size: 9px; font-weight: 500; opacity: .92; line-height: 1.12; max-width: 84%; }

/* Preiszeile: klare Zeile (Trenner liefert bereits die Statistik-Linie darüber) */
.vr-price--bar {
	margin-bottom: 14px;
}
.vr-price--bar .vr-price-lbl { opacity: .7; }
.vr-price--bar .vr-price-val { margin-top: 3px; font-size: 24px; color: var(--vr-price); }
.vr-footer--bar .vr-btn { display: flex; width: 100%; justify-content: center; }

/* Preis-Tag: kompakte Akzent-Pille */
.vr-price--tag {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 14px;
	padding: 7px 14px;
	border-radius: 12px;
	background: var(--vr-accent);
}
.vr-price--tag .vr-price-lbl,
.vr-price--tag .vr-price-note { opacity: 1; color: rgba(255, 255, 255, .82); }
.vr-price--tag .vr-price-val { margin-top: 1px; font-size: 19px; color: #fff; }
.vr-price--tag .vr-price-sub { display: none; }

.vr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: var(--vr-btn-pad, 13px 18px);
	border: var(--vr-btn-bw, 2px) solid var(--vr-btn-border, var(--vr-accent));
	border-radius: var(--vr-btn-radius, 10px);
	background: var(--vr-btn-bg);
	color: var(--vr-btn-color) !important;
	-webkit-text-fill-color: var(--vr-btn-color) !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.vr-btn:hover { background: var(--vr-btn-bg-h); border-color: var(--vr-btn-bg-h); color: var(--vr-btn-color-h) !important; -webkit-text-fill-color: var(--vr-btn-color-h) !important; }
.vr-btn:active { transform: translateY(1px); }
.vr-btn svg { width: 15px; height: 15px; }

/* ---------------------------------------------------------------- Slider-Chrome */
.vr-main-slider { padding: 6px 2px 2px; }
.vr-main-slider > .swiper-wrapper > .swiper-slide { height: auto; padding: 10px; }

.vr-dots {
	position: relative !important;
	inset: auto !important;
	margin-top: 26px;
	text-align: center;
}
.vr-dots .swiper-pagination-bullet { background: var(--vr-dot); opacity: 1; transition: transform .2s, background .2s; }
.vr-dots .swiper-pagination-bullet-active { background: var(--vr-dot-active); transform: scale(1.35); }

.vr-nav {
	position: absolute;
	top: 42%;
	z-index: 6;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--vr-line);
	border-radius: 50%;
	background: var(--vr-nav-bg);
	color: var(--vr-nav-color);
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(16,24,40,.12);
	transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.vr-nav:hover { transform: scale(1.08); background: var(--vr-accent); color: #fff; border-color: var(--vr-accent); }
.vr-nav svg { width: 20px; height: 20px; }
.vr-nav--prev { left: -6px; }
.vr-nav--next { right: -6px; }
.vr-nav.swiper-button-disabled { opacity: .35; cursor: default; }
.vr-nav.swiper-button-disabled:hover { transform: none; background: var(--vr-nav-bg); color: var(--vr-nav-color); border-color: var(--vr-line); }

/* Farben/Hintergründe von Buttons/Pfeilen gegen Theme-/Elementor-Vererbung absichern
   (verhindert z. B. rosa geerbte Link-/Button-Farben, auch als !important gesetzte). */
.vr-wrapper .vr-nav { color: var(--vr-nav-color) !important; background: var(--vr-nav-bg) !important; }
.vr-wrapper .vr-nav:hover { color: #fff !important; background: var(--vr-accent, #FF6600) !important; }
.vr-wrapper .vr-nav.swiper-button-disabled:hover { color: var(--vr-nav-color) !important; background: var(--vr-nav-bg) !important; }
.vr-wrapper .vr-btn,
.vr-wrapper .vr-btn:link,
.vr-wrapper .vr-btn:visited { color: var(--vr-btn-color) !important; -webkit-text-fill-color: var(--vr-btn-color) !important; background: var(--vr-btn-bg) !important; }
.vr-wrapper .vr-btn:hover,
.vr-wrapper .vr-btn:focus { color: var(--vr-btn-color-h) !important; -webkit-text-fill-color: var(--vr-btn-color-h) !important; }
.vr-wrapper:not(.vr-skin-minimal) .vr-btn:hover,
.vr-wrapper:not(.vr-skin-minimal) .vr-btn:focus { background: var(--vr-btn-bg-h) !important; }
.vr-wrapper .vr-map-consent-btn { background: var(--vr-consent-bg, var(--vr-accent, #FF6600)) !important; }
.vr-wrapper .vr-map-consent-btn:hover { background: var(--vr-consent-bg-h, var(--vr-consent-bg, var(--vr-accent, #FF6600))) !important; }
.vr-wrapper .vr-nav,
.vr-wrapper .vr-btn,
.vr-wrapper .vr-filter-reset,
.vr-wrapper .vr-map-consent-btn { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
.vr-wrapper .vr-nav:focus:not(:focus-visible),
.vr-wrapper .vr-btn:focus:not(:focus-visible),
.vr-wrapper .vr-map-consent-btn:focus:not(:focus-visible) { outline: none; }
.vr-wrapper .vr-nav:focus-visible,
.vr-wrapper .vr-btn:focus-visible,
.vr-wrapper .vr-map-consent-btn:focus-visible { outline: 2px solid var(--vr-accent, #FF6600); outline-offset: 2px; }

/* ================================================================ Kategorie-Tabs (VBS-Stil) */
.vr-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2px 6px;
	margin: 0 0 26px;
	border-bottom: 1px solid var(--vr-line);
}
.vr-tab {
	appearance: none;
	-webkit-appearance: none;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 11px 12px;
	margin: 0 6px -1px;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--vr-tab-color, var(--vr-text)) !important;
	cursor: pointer;
	border-bottom: 2px solid transparent !important;
	border-radius: 7px 7px 0 0;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.vr-tab:hover { color: var(--vr-tab-active, var(--vr-title)) !important; }
.vr-tab.is-active {
	color: var(--vr-tab-active, var(--vr-title)) !important;
	background: var(--vr-tab-active-bg, transparent) !important;
	border-bottom-color: var(--vr-tab-accent, var(--vr-accent)) !important;
}
.vr-tabpanels { position: relative; }
.vr-tabpanel { position: relative; }
.vr-tabpanel[hidden] { display: none; }

@media (min-width: 1400px) {
	.vr-nav--prev { left: -18px; }
	.vr-nav--next { right: -18px; }
}

/* ================================================================ SKIN: minimal */
.vr-skin-minimal .vr-card {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	border-bottom: 2px solid transparent;
	background: transparent;
}
.vr-skin-minimal .vr-card:hover { transform: translateY(-3px); box-shadow: none; border-bottom-color: var(--vr-accent); }
.vr-skin-minimal .vr-media { border-radius: 6px; }
.vr-skin-minimal .vr-content { padding: 20px 4px 6px; }
.vr-skin-minimal .vr-stats { border-top: 0; padding-top: 0; margin-bottom: 18px; }
.vr-skin-minimal .vr-price-val { font-weight: 700; }
.vr-skin-minimal .vr-btn { border-width: 0; border-bottom: 2px solid var(--vr-accent); border-radius: 0; background: transparent; color: var(--vr-accent) !important; -webkit-text-fill-color: var(--vr-accent) !important; width: auto; padding: 8px 0; text-transform: none; letter-spacing: .01em; }
.vr-skin-minimal .vr-btn:hover { background: transparent; color: var(--vr-price) !important; -webkit-text-fill-color: var(--vr-price) !important; border-bottom-color: var(--vr-price); }

/* ================================================================ SKIN: split */
.vr-skin-split .vr-card { flex-direction: row; min-height: var(--vr-card-min-h, 300px); }
.vr-skin-split .vr-media { width: 46%; height: auto; min-height: 100%; }
.vr-skin-split .vr-content { width: 54%; justify-content: center; padding: 30px 30px; }
.vr-skin-split .vr-stats { margin-bottom: 20px; }
@media (max-width: 600px) {
	.vr-skin-split .vr-card { flex-direction: column; }
	.vr-skin-split .vr-media { width: 100%; height: var(--vr-img-h); }
	.vr-skin-split .vr-content { width: 100%; }
}

/* ================================================================ SKIN: overlay */
.vr-skin-overlay .vr-card { min-height: var(--vr-card-min-h, 430px); border: 0; }
.vr-skin-overlay .vr-media { position: absolute; inset: 0; height: 100%; }
.vr-skin-overlay .vr-scrim {
	opacity: 1;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, .85) 0%,
		rgba(0, 0, 0, .68) 24%,
		rgba(0, 0, 0, .38) 46%,
		rgba(0, 0, 0, .12) 66%,
		transparent 100%
	);
}
.vr-skin-overlay .vr-content {
	position: relative;
	flex: 0 0 auto;
	margin-top: auto;
	padding: 24px 24px 22px;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}
.vr-skin-overlay .vr-loc,
.vr-skin-overlay .vr-title,
.vr-skin-overlay .vr-price-val { color: #fff; }
.vr-skin-overlay .vr-title a { color: #fff; }
.vr-skin-overlay .vr-title a:hover { color: #fff; opacity: .85; }
.vr-skin-overlay .vr-price-lbl,
.vr-skin-overlay .vr-price-sub,
.vr-skin-overlay .vr-price-note { color: rgba(255,255,255,.82); }
.vr-skin-overlay .vr-tag { color: #fff; border-color: rgba(255,255,255,.5); }
.vr-skin-overlay .vr-stats { display: none; }              /* bewusst reduziert */
.vr-skin-overlay {
	--vr-btn-bg: var(--vr-accent);
	--vr-btn-border: var(--vr-accent);
	--vr-btn-color: #fff;
	--vr-btn-bg-h: #fff;
	--vr-btn-color-h: #002D67;
	--vr-btn-pad: 12px 22px;
}
.vr-skin-overlay .vr-btn { width: auto; align-self: flex-start; }
.vr-skin-overlay .vr-img-nav { display: none; }            /* eine Ansicht, kein Bildwechsel-Chrome */

/* ================================================================ TYPE-Feinschliff */
/* Fokus (Fade) & Stapel (Cards): eine zentrierte, größere Karte */
.vr-type-fade .vr-main-slider,
.vr-type-cards .vr-main-slider { max-width: 900px; margin-inline: auto; }
.vr-type-cards .swiper-slide { border-radius: var(--vr-radius); overflow: hidden; }
.vr-type-cards .vr-card { box-shadow: none; }

/* Coverflow: nicht-aktive Karten leicht zurücknehmen */
.vr-type-coverflow .swiper-slide { transition: opacity .4s ease; }
.vr-type-coverflow .swiper-slide:not(.swiper-slide-active) { opacity: .55; }
.vr-type-coverflow .swiper-slide-active { opacity: 1; }

/* Reduced motion */
/* ================================================================ Mobile / Touch */
@media (hover: none) {
	.vr-img-nav { opacity: 1; }                     /* Touch: Bild-Pfeile dauerhaft sichtbar */
	.vr-card:hover { transform: none; }
}

@media (max-width: 600px) {
	.vr-nav { display: none; }                      /* Wischen + Dots statt Außenpfeile */
	.vr-wrapper .vr-card { min-height: var(--vr-card-min-h, 0); }
	.vr-skin-overlay .vr-card { min-height: var(--vr-card-min-h, 420px); }
	.vr-content { padding: 20px 18px 22px; }
	.vr-price-val { font-size: 21px; }
	.vr-title { font-size: 16px; }
	.vr-stats li { padding: 0 4px; }
	.vr-stat-val { font-size: 14px; }
	.vr-stat-lbl { font-size: 10px; letter-spacing: .02em; }
	.vr-type-fade .vr-main-slider,
	.vr-type-cards .vr-main-slider { max-width: 100%; }
	.vr-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
	.vr-tab { margin: 0 10px -1px; font-size: 14px; white-space: nowrap; flex: none; }
}

@media (prefers-reduced-motion: reduce) {
	.vr-card, .vr-media img, .vr-btn, .vr-nav, .vr-img-nav, .vr-scrim { transition: none !important; }
	.vr-card:hover { transform: none; }
	.vr-zoom .vr-card:hover .vr-media img { transform: none; }
}

/* ================================================================ Immobilien-Suche */
.vr-search-headline { margin: 0 0 20px; color: var(--vr-title); }

.vr-search-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px 16px;
	align-items: end;
	margin-bottom: 30px;
}
.vr-search-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.vr-search-field > span { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--vr-text); }
.vr-search-field select,
.vr-search-field input {
	width: 100%;
	height: 46px;
	padding: 0 12px;
	font: inherit;
	font-size: 15px;
	color: var(--ris-field-text, var(--vr-title)) !important;
	background-color: var(--ris-field-bg, #fff) !important;
	border: 1px solid var(--ris-field-border, var(--vr-line)) !important;
	border-radius: var(--ris-field-radius, 10px);
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.vr-search-field select {
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23888' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}
.vr-search-field select:focus,
.vr-search-field input:focus {
	outline: none;
	border-color: var(--vr-accent);
	box-shadow: 0 0 0 3px rgba(16, 24, 40, .09);
}
.vr-search-submit {
	height: 46px;
	align-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 22px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--ris-btn-text, #fff) !important;
	background: var(--ris-btn-bg, var(--vr-accent)) !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: var(--ris-field-radius, 10px);
	cursor: pointer;
	transition: filter .2s ease, transform .2s ease;
}
.vr-search-submit:hover { filter: brightness(1.08); }
.vr-search-submit:active { transform: translateY(1px); }
.vr-search-submit svg { width: 18px; height: 18px; }

.vr-search-summary { font-size: 14px; font-weight: 600; color: var(--vr-text); margin: 2px 0 18px; }

.vr-search-results {
	display: grid;
	grid-template-columns: repeat(var(--ris-cols, 3), 1fr);
	gap: 24px;
}
.vr-search .vr-card { min-height: 0; }

.vr-search-pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.vr-pager-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border: 1px solid var(--vr-line);
	border-radius: 10px;
	text-decoration: none;
	color: var(--vr-title);
	font-weight: 600;
	font-size: 14px;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.vr-pager-btn:hover { border-color: var(--vr-accent); color: var(--vr-accent); }
.vr-pager-info { font-size: 14px; color: var(--vr-text); }

.vr-search-empty {
	padding: 28px;
	text-align: center;
	border: 1px solid var(--vr-line);
	border-radius: 12px;
	color: var(--vr-text);
}

@media (min-width: 1440px) {
	.vr-search-results { grid-template-columns: repeat(var(--ris-cols-w, 4), 1fr); }
}
@media (max-width: 1024px) {
	.vr-search-results { grid-template-columns: repeat(var(--ris-cols-t, 2), 1fr); }
}
@media (max-width: 600px) {
	.vr-search-results { grid-template-columns: repeat(var(--ris-cols-m, 1), 1fr); }
	.vr-search-form { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ Grid */
.vr-grid {
	display: grid;
	gap: var(--vr-grid-gap, 26px);
	grid-template-columns: repeat(var(--vr-grid-cols, 3), 1fr);
	align-items: stretch;
}
.vr-grid > .swiper-slide { width: auto; height: auto; flex-shrink: 1; }
.vr-grid > .swiper-slide > .vr-card { width: 100%; height: 100%; }
@media (min-width: 1440px) { .vr-grid { grid-template-columns: repeat(var(--vr-grid-cols-w, 4), 1fr); } }
@media (max-width: 1023px) { .vr-grid { grid-template-columns: repeat(var(--vr-grid-cols-t, 2), 1fr); } }
@media (max-width: 767px)  { .vr-grid { grid-template-columns: repeat(var(--vr-grid-cols-m, 1), 1fr); } }

/* ---------------------------------------------------------- Filterleiste */
.vr-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px 12px;
	margin: 0 0 20px;
	padding: 12px 14px;
	background: var(--vr-card-bg, #fff);
	border: 1px solid var(--vr-line, #edeff2);
	border-radius: 12px;
}
.vr-filter-fields { display: flex; flex-wrap: wrap; gap: 10px 12px; flex: 1 1 auto; }
.vr-filter-field { display: flex; flex-direction: column; gap: 4px; min-width: 130px; flex: 1 1 130px; }
.vr-filter-label { font: 600 10px/1.2 inherit; letter-spacing: .05em; text-transform: uppercase; color: var(--vr-text, #6b7280); }
.vr-filter .vr-f {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	padding: 8px 30px 8px 11px;
	border: 1px solid var(--vr-line, #d7dae0);
	border-radius: 8px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23888' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 11px center;
	font: 400 13.5px/1.2 inherit;
	color: var(--vr-title, #1b2530);
	cursor: pointer;
}
.vr-filter .vr-f:focus { outline: none; border-color: var(--vr-accent, #FF6600); box-shadow: 0 0 0 3px rgba(255, 102, 0, .15); }
.vr-filter .vr-f-search { background-image: none; padding-right: 11px; }
.vr-filter-meta { display: flex; align-items: center; gap: 12px; }
.vr-filter-reset {
	padding: 8px 14px;
	border: 1px solid var(--vr-line, #d7dae0);
	border-radius: 8px;
	background: #fff;
	font: 600 12.5px/1.2 inherit;
	color: var(--vr-title, #1b2530);
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}
.vr-filter-reset:hover { border-color: var(--vr-accent, #FF6600); color: var(--vr-accent, #FF6600); }
.vr-filter-count { font: 500 12.5px/1.2 inherit; color: var(--vr-text, #6b7280); white-space: nowrap; }
.vr-filter-noresults {
	padding: 26px;
	text-align: center;
	border: 1px dashed var(--vr-line, #d7dae0);
	border-radius: var(--vr-radius, 14px);
	color: var(--vr-text, #6b7280);
	margin: 0 0 8px;
}
.vr-grid > .swiper-slide.vr-hide { display: none !important; }
@media (max-width: 600px) {
	.vr-filter-field { flex: 1 1 100%; min-width: 0; }
	.vr-filter-meta { width: 100%; justify-content: space-between; }
}

/* ---------------------------------------------------------------- Karte */
.vr-map { position: relative; }
.vr-map-canvas { width: 100%; height: var(--vr-map-h, 500px); border-radius: 14px; overflow: hidden; z-index: 0; background: #e8ecef; }
.vr-map-points { display: none; }
.vr-cat-tabs { margin-bottom: 12px; }
.vr-loadmore-wrap { display: flex; justify-content: center; margin-top: 22px; }
.vr-loadmore { width: auto; min-width: 200px; }

/* Zwei-Klick-Consent-Overlay (Karte erst nach Zustimmung laden) */
.vr-map-consent {
	position: absolute; inset: 0; z-index: 5;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 24px;
	background-image: linear-gradient(135deg, #eef1f4 0%, #e6eaef 100%);
	border-radius: 14px;
}
.vr-map-consent-inner { max-width: 440px; }
.vr-map-consent-ico { width: 40px; height: 40px; color: var(--vr-accent, #FF6600); margin: 0 auto 12px; display: block; }
.vr-map-consent-title { font-size: 17px; font-weight: 800; color: var(--vr-title, #1b2530); margin-bottom: 6px; }
.vr-map-consent-text { font-size: 13.5px; line-height: 1.5; color: var(--vr-text, #4b5563); margin: 0 0 16px; }
.vr-map-consent-btn {
	display: inline-block; cursor: pointer;
	padding: 11px 22px; border: 0; border-radius: 10px;
	background: var(--vr-consent-bg, var(--vr-accent, #FF6600));
	color: var(--vr-consent-color, #fff) !important;
	-webkit-text-fill-color: var(--vr-consent-color, #fff);
	font: 700 14px/1 inherit;
	transition: filter .15s ease, background .15s ease, color .15s ease;
}
.vr-map-consent-btn:hover {
	background: var(--vr-consent-bg-h, var(--vr-consent-bg, var(--vr-accent, #FF6600)));
	color: var(--vr-consent-color-h, var(--vr-consent-color, #fff)) !important;
	-webkit-text-fill-color: var(--vr-consent-color-h, var(--vr-consent-color, #fff));
	filter: brightness(.96);
}

/* Kurzer Gesten-Hinweis über der Karte */
.vr-map-hint {
	position: absolute; inset: 0; z-index: 450;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none;
	background: rgba(17, 24, 39, .42); color: #fff;
	font-size: 15px; font-weight: 600; text-align: center; padding: 16px;
	opacity: 0; transition: opacity .18s ease;
	border-radius: 14px;
}
.vr-map-hint.is-visible { opacity: 1; }
.vr-map-empty {
	padding: 24px; text-align: center;
	border: 1px dashed var(--vr-line, #d7dae0); border-radius: var(--vr-radius, 14px);
	color: var(--vr-text, #6b7280); margin-top: 12px;
}
.vr-map .leaflet-popup-content-wrapper { padding: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 30px rgba(16, 24, 40, .18); }
.vr-map .leaflet-popup-content { margin: 0; width: 220px !important; }
.vr-map-popup .vr-mp-img { display: block; }
.vr-map-popup .vr-mp-img img { display: block; width: 100%; height: 120px; object-fit: cover; }
.vr-map-popup .vr-mp-body { padding: 10px 12px 12px; font-family: inherit; }
.vr-map-popup .vr-mp-loc { font-size: 12px; color: var(--vr-text, #6b7280); margin-bottom: 2px; }
.vr-map-popup .vr-mp-title { display: block; font-weight: 700; font-size: 15px; color: var(--vr-title, #1b2530); text-decoration: none; line-height: 1.25; }
.vr-map-popup .vr-mp-title:hover { color: var(--vr-accent, #FF6600); }
.vr-map-popup .vr-mp-price { margin: 6px 0 10px; }
.vr-map-popup .vr-mp-price-lbl { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--vr-text, #6b7280); }
.vr-map-popup .vr-mp-price-val { font-weight: 800; font-size: 17px; color: var(--vr-price, #002D67); }
.vr-map-popup .vr-mp-btn {
	display: inline-block; margin-top: 2px; padding: 8px 14px;
	border-radius: var(--vr-btn-radius, 10px);
	background: var(--vr-btn-bg-h, #FF6600);
	color: var(--vr-btn-color-h, #fff) !important;
	-webkit-text-fill-color: var(--vr-btn-color-h, #fff);
	font-weight: 600; font-size: 13px; text-decoration: none;
}

/* Cluster-Nadel (mehrere Objekte am selben Ort) */
.vr-cluster-wrap { background: none !important; border: none !important; }
.vr-cluster {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--vr-accent, #FF6600); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 16px; line-height: 1;
	border: 3px solid #fff; box-shadow: 0 4px 12px rgba(16, 24, 40, .35);
	cursor: pointer; transition: transform .12s ease;
}
.vr-cluster-wrap:hover .vr-cluster { transform: scale(1.08); }

/* Objektliste über der Karte */
.vr-map-list[hidden] { display: none; }
.vr-map-list { position: absolute; inset: 0; z-index: 1000; display: flex; }
.vr-map-list-backdrop { position: absolute; inset: 0; background: rgba(16, 24, 40, .35); }
.vr-map-list-card {
	position: relative; margin: auto; width: min(360px, 92%); max-height: calc(100% - 28px);
	background: #fff; border-radius: 14px; box-shadow: 0 20px 50px rgba(16, 24, 40, .35);
	display: flex; flex-direction: column; overflow: hidden;
}
.vr-map-list-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 12px 16px; border-bottom: 1px solid var(--vr-line, #edeff2); flex: 0 0 auto;
}
.vr-map-list-title { font-weight: 700; font-size: 15px; color: var(--vr-title, #1b2530); }
.vr-map-list-close { border: 0; background: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--vr-text, #6b7280); padding: 0 2px; }
.vr-map-list-close:hover { color: var(--vr-title, #1b2530); }
.vr-map-list-body { overflow-y: auto; padding: 6px; }
.vr-mlist-item {
	display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
	padding: 12px; border-radius: 10px; text-decoration: none;
	border-bottom: 1px solid var(--vr-line, #edeff2);
}
.vr-mlist-item:last-child { border-bottom: 0; }
a.vr-mlist-item:hover { background: #f6f8fa; }
.vr-mlist-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vr-mlist-title { font-weight: 700; font-size: 14px; color: var(--vr-title, #1b2530); line-height: 1.3; }
.vr-mlist-loc { font-size: 12px; color: var(--vr-text, #6b7280); }
.vr-mlist-facts { font-size: 12px; color: var(--vr-text, #6b7280); }
.vr-mlist-price { flex: 0 0 auto; font-weight: 800; font-size: 14px; color: var(--vr-price, #002D67); white-space: nowrap; text-align: right; }

/* ============================================================================
   Plugin-eigene Buttons gegen die generische Theme-Button-Regel absichern.
   Das Theme (theme.css) stylt [type=button],[type=submit],button generisch in
   #c36 (Basis 0,1,0; Hover 0,2,0 mit background:#c36 - Attribut+Pseudoklasse). Diese drei Klassen lagen
   ohne Absicherung bei 0,1,0 und verloren dagegen. Der "html body"-Präfix hebt
   sie auf 0,1,2 -> schlägt die Theme-Regel, bleibt aber UNTER den Elementor-
   Farb-/Rahmen-Steuerungen der Widgets (0,2,0 und höher), sodass deren Werte
   weiterhin greifen. Kein globaler Reset - nur die eigenen Button-Klassen. */
html body .vr-filter-reset { background: #fff; border: 1px solid var(--vr-line, #d7dae0); color: var(--vr-title, #1b2530); }
html body .vr-filter-reset:hover { background: #fff; border-color: var(--vr-accent, #FF6600); color: var(--vr-accent, #FF6600); }
html body .vr-btn { background: var(--vr-btn-bg); border: var(--vr-btn-bw, 2px) solid var(--vr-btn-border, var(--vr-accent)); }
html body .vr-btn:hover { background: var(--vr-btn-bg-h); border-color: var(--vr-btn-bg-h); }
html body .vr-map-consent-btn { border: 0; }
