.rooms-repeater .room-list-item {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 16px;
	margin-bottom: 16px;
	background: #fff;
}

.room-row-grid {
	display: grid;
	grid-template-columns: 120px 1fr 32px;
	gap: 16px;
	align-items: start;
}

.room-cover-wrapper {
	width: 120px;
	text-align: center;
}

.room-cover-preview,
.room-cover-placeholder {
	width: 120px;
	height: 90px;
	object-fit: cover;
	border-radius: 4px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #bbb;
	font-size: 24px;
	margin-bottom: 8px;
}

.room-row-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 8px;
}

.room-row-fields .fm-input {
	margin-bottom: 8px;
}

.room-row-fields .fm-input-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
}

.room-row-close {
	text-align: right;
}

.room-row-close .delete {
	color: #d9534f;
}

.room-row-toggles {
	display: flex;
	gap: 20px;
	align-items: center;
}

.fm-input-checkbox {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.fm-input-desc {
	display: block;
	font-size: 11px;
	color: #888;
	margin-top: 2px;
}

/* Single-listing display (Listeo_Rooms_Display) */
.listeo-rooms-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 20px 0;
}

.listeo-rooms-availability-check {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 12px;
	margin: 12px 0 20px;
	padding: 14px;
	background: #f9f9f9;
	border-radius: 8px;
}

.listeo-rooms-availability-field .fm-input-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
}

.listeo-rooms-availability-message {
	font-size: 13px;
	color: #666;
}

.listeo-rooms-availability-message.is-error {
	color: #d9534f;
}

/* ------------------------------------------------------------------
 * Room card — shared between the [listeo_rooms] display grid and the
 * booking widget's "Choose Your Room" step (picker mode).
 * ------------------------------------------------------------------ */
.listeo-room-card {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.listeo-room-card--picker {
	cursor: pointer;
}

.listeo-room-card.is-selected,
.listeo-room-card--picker:has(.listeo-room-card-radio:checked) {
	border-color: #2b6fef;
	box-shadow: 0 0 0 1px #2b6fef;
}

.listeo-room-card-radio-wrap {
	display: block;
	margin: 0;
	cursor: pointer;
}

.listeo-room-card-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.listeo-room-card-inner {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px;
}

.listeo-room-card-image {
	flex: 0 0 110px;
	width: 110px;
	height: 110px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}

.listeo-room-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.listeo-room-card-body {
	flex: 1 1 auto;
	min-width: 0;
}

.listeo-room-card-heading {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 6px;
}

.listeo-room-name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.listeo-room-tagline {
	color: #888;
	font-size: 14px;
}

.listeo-room-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.listeo-room-tag {
	background: #f1f2f4;
	color: #444;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
}

.listeo-room-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 14px;
	color: #333;
	margin-bottom: 6px;
}

.listeo-room-meta i {
	color: #888;
	margin-right: 4px;
}

.listeo-room-detail-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: #666;
	margin-bottom: 4px;
}

.listeo-room-detail-row strong {
	color: #333;
	font-weight: 600;
	margin-right: 4px;
}

.listeo-room-description {
	font-size: 13px;
	color: #666;
	margin: 8px 0 0;
}

.listeo-room-badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.listeo-room-availability-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #888;
}

.listeo-room-availability-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
}

.listeo-room-availability-status.is-available {
	color: #2e9e5b;
}

.listeo-room-availability-status.is-available .listeo-room-availability-dot {
	background: #2e9e5b;
}

.listeo-room-availability-status.is-unavailable {
	color: #d9534f;
}

.listeo-room-availability-status.is-unavailable .listeo-room-availability-dot {
	background: #d9534f;
}

.listeo-room-instant-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #eaf1ff;
	color: #2b6fef;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
}

.listeo-room-card-side {
	flex: 0 0 auto;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.listeo-room-price {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
}

.listeo-room-price-unit {
	font-size: 12px;
	font-weight: 400;
	color: #888;
}

.listeo-room-reserve-btn {
	background: #2b6fef;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.listeo-room-reserve-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.listeo-room-reserve-btn i {
	margin-right: 4px;
}

/* ------------------------------------------------------------------
 * Booking widget step wrapper (Listeo_Rooms_Booking_Integration)
 * ------------------------------------------------------------------ */
.listeo-rooms-booking-step {
	margin-bottom: 20px;
}

.listeo-rooms-step-badge {
	display: inline-block;
	background: #eaf1ff;
	color: #2b6fef;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.listeo-rooms-step-title {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
}

.listeo-rooms-step-subtitle {
	margin: 0 0 16px;
	color: #888;
	font-size: 14px;
}

.listeo-rooms-picker-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.listeo-rooms-step1-next {
	background: #2b6fef;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 22px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}

.listeo-rooms-step1-next:disabled {
	background: #cdd6e6;
	cursor: not-allowed;
}

.listeo-rooms-selected-room-summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f6f8fc;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 18px;
	font-weight: 600;
}

.listeo-rooms-selected-room-price {
	color: #2b6fef;
}

.listeo-rooms-step2-back {
	background: none;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	color: #555;
	margin-left: 12px;
}
