/* Values badges — minimal chips, no card layout overrides. */

.roomify-pv-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
	box-sizing: border-box;
	position: static;
	width: auto;
	max-width: 100%;
	pointer-events: none;
}

.roomify-pv-badge {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
}

.roomify-pv-badge span,
.roomify-pv-badge a {
	display: inline-block;
	padding: 2px 6px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.3;
	text-decoration: none;
	text-transform: none;
	color: inherit;
	opacity: 0.85;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 2px;
	box-shadow: none;
	backdrop-filter: none;
}

.roomify-pv-badge a {
	pointer-events: auto;
}

.roomify-pv-badge a:hover {
	opacity: 1;
}

/* Loop: sits under title in normal flow — never absolute, never forces card position */
.roomify-pv-badges--loop {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: auto !important;
	margin: 4px 0 0;
}

/* Single / shortcode */
.roomify-pv-badges--single,
.roomify-pv-badges--shortcode {
	margin: 0 0 10px;
}

.roomify-pv-badges--single .roomify-pv-badge a,
.roomify-pv-badges--shortcode .roomify-pv-badge a {
	pointer-events: auto;
}