/* WCPC Room Page widgets — front-end styles.
   Palette pulled from wcpc.community: primary #34657F, panel #E5E9F3,
   accent amber #FFB549, text #54595F / #7A7A7A. Accent is overridable per
   widget via the --wcpc-accent custom property (set by Elementor controls). */

.wcpc-amenities,
.wcpc-specs,
.wcpc-tags,
.wcpc-booking {
	--wcpc-accent: #34657F;
	--wcpc-ink: #54595F;
	--wcpc-muted: #7A7A7A;
	--wcpc-surface: #E5E9F3;
	--wcpc-line: #DFE4EE;
	font-family: inherit;
	color: var(--wcpc-ink, #54595F);
}

/* Editor placeholder */
.wcpc-rp-placeholder {
	border: 1px dashed #9fb4c4;
	border-radius: 8px;
	padding: 18px;
	text-align: center;
	color: #34657F;
	background: #E5E9F3;
	font-size: 14px;
}

/* ---------- Amenities ---------- */
.wcpc-amenities {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
}
.wcpc-amenity {
	display: flex;
	gap: 13px;
	align-items: flex-start;
}
.wcpc-amenity__ic {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 10px;
	background: var(--wcpc-surface, #E5E9F3);
	display: grid;
	place-items: center;
	color: var(--wcpc-accent, #34657F);
	font-size: 20px;
}
.wcpc-amenity__txt b {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: var(--wcpc-ink, #54595F);
}
.wcpc-amenity__txt span {
	font-size: 13px;
	color: var(--wcpc-muted, #7A7A7A);
}

/* ---------- Specs ---------- */
.wcpc-specs {
	width: 100%;
}
.wcpc-spec {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 2px;
	border-bottom: 1px solid var(--wcpc-line, #DFE4EE);
	font-size: 15px;
}
.wcpc-spec:last-child {
	border-bottom: none;
}
.wcpc-spec__k {
	color: var(--wcpc-muted, #7A7A7A);
}
.wcpc-spec__v {
	font-weight: 500;
	color: var(--wcpc-ink, #54595F);
	text-align: right;
}

/* ---------- Tags ---------- */
.wcpc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.wcpc-tag {
	display: inline-block;
	background: var(--wcpc-surface, #E5E9F3);
	color: var(--wcpc-accent, #34657F);
	font-size: 13.5px;
	font-weight: 500;
	padding: 7px 15px;
	border-radius: 8px;
	text-decoration: none;
}
a.wcpc-tag:hover {
	filter: brightness(0.96);
}

/* ---------- Booking card ---------- */
.wcpc-booking {
	background: #fff;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(52, 101, 127, 0.08), 0 10px 26px rgba(52, 101, 127, 0.10);
}
.wcpc-booking__head {
	background: none;
	color: var(--wcpc-muted, #7A7A7A);
	padding: 18px 20px 0;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: left;
}
.wcpc-booking__body {
	padding: 14px 20px 20px;
}
.wcpc-booking__price {
	display: flex;
	align-items: baseline;
	gap: 3px;
}
.wcpc-booking__amt {
	font-size: 34px;
	font-weight: 800;
	color: var(--wcpc-ink, #54595F);
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.wcpc-booking__per {
	font-size: 15px;
	font-weight: 600;
	color: var(--wcpc-muted, #7A7A7A);
}
.wcpc-booking__note-rate {
	font-size: 12.5px;
	color: var(--wcpc-muted, #7A7A7A);
	text-transform: none;
	letter-spacing: 0;
	margin-top: 2px;
}
.wcpc-booking__rate {
	display: flex;
	flex-direction: column;
	margin-bottom: 12px;
}
.wcpc-booking__rk {
	font-size: 13px;
	color: var(--wcpc-muted, #7A7A7A);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.wcpc-booking__rv {
	font-size: 26px;
	font-weight: 700;
	color: var(--wcpc-ink, #54595F);
	line-height: 1.1;
}
.wcpc-booking__rv--lg {
	font-size: 34px;
	color: var(--wcpc-accent, #34657F);
}
.wcpc-booking__rv small {
	font-size: 15px;
	font-weight: 400;
	color: var(--wcpc-muted, #7A7A7A);
}
.wcpc-booking__toggle {
	display: flex;
	background: none;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 9px;
	overflow: hidden;
	padding: 0;
	margin: 14px 0 16px;
}
.wcpc-booking__toggle button {
	flex: 1;
	border: none;
	background: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	color: var(--wcpc-muted, #7A7A7A);
	padding: 9px;
	border-radius: 0;
	cursor: pointer;
}
.wcpc-booking__toggle button:not(.is-on):hover {
	background: #fff;
	color: var(--wcpc-accent, #34657F);
	box-shadow: inset 0 0 0 2px var(--wcpc-accent, #34657F);
}
.wcpc-booking__toggle button.is-on {
	background: var(--wcpc-accent, #34657F);
	color: #fff;
	box-shadow: none;
}
.wcpc-booking__stats {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}
.wcpc-booking__stat {
	flex: 1;
	display: block;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 10px;
	padding: 9px 8px;
	text-align: center;
}
.wcpc-booking__stat .k {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--wcpc-muted, #7A7A7A);
}
.wcpc-booking__stat .v {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--wcpc-ink, #54595F);
	margin-top: 2px;
}
.wcpc-booking__callout {
	background: #F3F7FB;
	border: 1px solid #DFE9F2;
	color: #3C4655;
	font-size: 12.5px;
	padding: 11px 12px;
	border-radius: 10px;
	margin: 16px 0;
}
.wcpc-btn {
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	padding: 12px 18px;
	border-radius: 9px;
	border: 1px solid var(--wcpc-accent, #34657F) !important;
	margin-top: 9px;
}
/* Backgrounds/colors are !important: the theme styles button / button:hover
   (e.g. reset.css button:hover { background:#cc3366 }) and wins otherwise,
   flashing the button red on hover. */
.wcpc-btn--primary {
	background: var(--wcpc-accent, #34657F) !important;
	color: #fff !important;
}
.wcpc-btn--primary:hover {
	background: var(--wcpc-accent, #34657F) !important;
	color: #fff !important;
	filter: brightness(0.93);
}
.wcpc-btn--ghost {
	background: #fff !important;
	color: var(--wcpc-accent, #34657F) !important;
}
.wcpc-btn--ghost:hover {
	background: var(--wcpc-surface, #E5E9F3) !important;
	color: var(--wcpc-accent, #34657F) !important;
}
.wcpc-booking__avail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 9px;
	border: 1px dashed var(--wcpc-accent, #34657F);
	background: var(--wcpc-surface, #E5E9F3);
	border-radius: 10px;
	padding: 10px 12px;
	margin: 16px 0 4px;
	text-decoration: none;
	cursor: pointer;
}
.wcpc-booking__avail .l {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--wcpc-accent, #34657F);
}
.wcpc-booking__avail .l i {
	font-size: 15px;
}
.wcpc-booking__avail .chev {
	color: var(--wcpc-accent, #34657F);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
.wcpc-booking__avail:hover {
	background: #DCE3F0;
}
.wcpc-booking__help {
	text-align: center;
	font-size: 13px;
	color: var(--wcpc-muted, #7A7A7A);
	margin-top: 12px;
}
.wcpc-booking__help a {
	color: var(--wcpc-accent, #34657F);
	font-weight: 500;
}

/* ---------- Gallery mosaic ---------- */
.wcpc-gallery {
	display: grid;
	gap: 12px;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	height: 460px;
}
.wcpc-gallery .wcpc-gtile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: #e9e9e9;
}
.wcpc-gallery .wcpc-gtile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}
.wcpc-gallery .wcpc-gtile:hover img {
	transform: scale(1.04);
}
.wcpc-gallery > .wcpc-gtile:first-child {
	grid-row: 1 / 3;
}
.wcpc-gallery a:nth-child(n + 6) {
	display: none;
}
.wcpc-gtile.has-more::after {
	content: "+" attr(data-more) " more";
	position: absolute;
	inset: 0;
	background: rgba(15, 16, 18, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.02em;
	cursor: pointer;
}
.wcpc-gallery--n1 {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
.wcpc-gallery--n1 > .wcpc-gtile:first-child {
	grid-row: auto;
}
.wcpc-gallery--n2 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
}
.wcpc-gallery--n2 > .wcpc-gtile:first-child {
	grid-row: auto;
}
.wcpc-gallery--n3 {
	grid-template-columns: 1.4fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.wcpc-gallery--n4 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.wcpc-gallery--n4 > .wcpc-gtile:first-child {
	grid-row: auto;
}
@media (max-width: 760px) {
	.wcpc-gallery,
	.wcpc-gallery--n3,
	.wcpc-gallery--n4 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 200px;   /* dedicated track for the full-width hero tile */
		grid-auto-rows: 140px;       /* thumbnail rows flow below */
		height: auto !important;
	}
	.wcpc-gallery > .wcpc-gtile:first-child {
		grid-column: 1 / 3;
		grid-row: 1;
		height: auto;                /* fill the 200px hero track instead of
		                                overflowing a 140px row and overlapping
		                                the thumbnails below */
	}
}

/* ---------- Room nav (sticky in-page jump bar) ---------- */
.wcpc-roomnav {
	--wcpc-accent: #34657F;
	background: #fff;
}
.wcpc-roomnav--sticky {
	position: sticky;
	top: 0;
	z-index: 30;
}
.wcpc-roomnav__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
}
.wcpc-roomnav.is-center .wcpc-roomnav__inner {
	justify-content: center;
}
.wcpc-roomnav.is-left .wcpc-roomnav__inner {
	justify-content: flex-start;
}
.wcpc-roomnav__link {
	font-family: "Open Sans", "Open Sans Variable", -apple-system, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #54595F;
	background: #fff;
	border: 1px solid rgba(52, 101, 127, 0.12);
	padding: 10px 16px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.wcpc-roomnav .wcpc-roomnav__link:hover {
	color: var(--wcpc-accent, #34657F);
	border-color: var(--wcpc-accent, #34657F);
	box-shadow: inset 0 0 0 1px var(--wcpc-accent, #34657F);
}
.wcpc-roomnav__link.is-active {
	background: var(--wcpc-accent, #34657F);
	color: #fff;
	border-color: var(--wcpc-accent, #34657F);
}
.wcpc-roomnav__cta {
	margin-left: auto;
	background: var(--wcpc-accent, #34657F);
	color: #fff;
	font-family: "Open Sans", "Open Sans Variable", -apple-system, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 10px 16px;
	border: 1px solid var(--wcpc-accent, #34657F);
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
}
.wcpc-roomnav .wcpc-roomnav__cta:hover {
	color: #fff;
	filter: brightness(0.94);
}
.wcpc-roomnav.is-center .wcpc-roomnav__cta {
	margin-left: 8px;
}
@media (max-width: 760px) {
	.wcpc-roomnav__inner {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
	}
	.wcpc-roomnav__cta {
		margin-left: 8px;
	}
}

/* ---------- Room cards (matches site wcpc-card) ---------- */
.wcpc-rooms {
	--wcpc-accent: #34657F;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
.wcpc-spaces .wcpc-room-card,
a.wcpc-room-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(52, 101, 127, 0.12);
	border-radius: 5px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.wcpc-room-card:hover {
	box-shadow: 0 10px 30px rgba(52, 101, 127, 0.14);
	transform: translateY(-3px);
}
.wcpc-room-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e9edf3;
}
.wcpc-room-card__media img,
.wcpc-room-card__noimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wcpc-room-card__noimg {
	background: linear-gradient(135deg, #d7deea, #c2cdde);
}
.wcpc-room-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
}
.wcpc-room-card__title {
	font-family: "Open Sans", "Open Sans Variable", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wcpc-accent, #34657F);
}
.wcpc-room-card__fields {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 2px;
}
.wcpc-room-card__field {
	display: flex;
	gap: 6px;
	font-size: 15px;
}
.wcpc-room-card__field .k {
	color: #7A7A7A;
}
.wcpc-room-card__field .v {
	color: #333333;
	font-weight: 500;
}
.wcpc-room-card__sep {
	height: 1px;
	background: rgba(52, 101, 127, 0.12);
}
@media (max-width: 860px) {
	.wcpc-rooms {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 540px) {
	.wcpc-rooms {
		grid-template-columns: 1fr !important;
	}
}

/* card enrichment (tags, amenities, meta, member rate) */
.wcpc-room-card__cat {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: rgba(255, 255, 255, 0.92);
	color: var(--wcpc-accent, #34657F);
	padding: 5px 11px;
	border-radius: 4px;
}
.wcpc-room-card__meta {
	font-size: 13.5px;
	color: #7A7A7A;
}
.wcpc-room-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.wcpc-room-card__tag {
	background: #E5E9F3;
	color: #34657F;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 4px;
}
.wcpc-room-card__amen {
	display: flex;
	gap: 12px;
	color: #7A7A7A;
	font-size: 17px;
}
.wcpc-room-card__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}
.wcpc-room-card__price .lbl {
	display: block;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #7A7A7A;
}
.wcpc-room-card__price .amt {
	font-family: "Open Sans", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #34657F;
	line-height: 1;
}
.wcpc-room-card__price .amt small {
	font-size: 13px;
	font-weight: 400;
	color: #7A7A7A;
}
.wcpc-room-card__price .mem {
	display: block;
	font-size: 12.5px;
	font-weight: 500;
	color: #4B9560;
	margin-top: 3px;
}
.wcpc-room-card__view {
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	background: #34657F;
	padding: 9px 13px;
	border-radius: 4px;
	white-space: nowrap;
}

/* ---------- Spaces browser (filterable listing) ---------- */
.wcpc-spaces { --wcpc-accent: #34657F; }
.wcpc-spaces__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(52, 101, 127, 0.12);
	margin-bottom: 6px;
}
.wcpc-spaces__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.wcpc-spaces__chip {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #54595F;
	background: #fff;
	border: 1px solid rgba(52, 101, 127, 0.12);
	padding: 9px 15px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.wcpc-spaces__chip:hover {
	color: var(--wcpc-accent, #34657F);
	border-color: rgba(52, 101, 127, 0.4);
}
.wcpc-spaces__chip.is-on {
	background: var(--wcpc-accent, #34657F);
	color: #fff;
	border-color: var(--wcpc-accent, #34657F);
}
.wcpc-spaces__tools {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}
.wcpc-spaces__guest {
	width: 110px;
	height: 40px;
	border: 1px solid rgba(52, 101, 127, 0.12);
	border-radius: 4px;
	padding: 0 12px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #54595F;
}
.wcpc-spaces__sort {
	height: 40px;
	border: 1px solid rgba(52, 101, 127, 0.12);
	border-radius: 4px;
	padding: 0 10px;
	font-family: "Roboto", sans-serif;
	font-size: 13.5px;
	color: #54595F;
	background: #fff;
}
.wcpc-spaces__count {
	font-size: 13px;
	color: #7A7A7A;
	white-space: nowrap;
}
.wcpc-spaces__empty {
	text-align: center;
	color: #7A7A7A;
	padding: 46px 0;
}
.wcpc-spaces__empty a {
	color: var(--wcpc-accent, #34657F);
	cursor: pointer;
	text-decoration: underline;
}
@media (max-width: 760px) {
	.wcpc-spaces__bar { flex-direction: column; align-items: stretch; }
	.wcpc-spaces__chips { flex-wrap: nowrap; overflow-x: auto; }
	.wcpc-spaces__tools { margin-left: 0; }
}

/* ---------- Spaces browser: date availability mode ---------- */
.wcpc-spaces__date {
	height: 40px;
	border: 1px solid rgba(52, 101, 127, 0.12);
	border-radius: 4px;
	padding: 0 12px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #54595F;
	background: #fff;
}
.wcpc-spaces__date:focus { outline: none; border-color: var(--wcpc-accent, #34657F); }

.wcpc-spaces__datebar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	background: #E5E9F3;
	border-radius: 5px;
	padding: 10px 14px;
	margin: 0 0 16px;
	font-size: 13.5px;
	color: var(--wcpc-accent, #34657F);
}
.wcpc-spaces__datelabel { font-weight: 600; }
.wcpc-spaces__legend { display: flex; gap: 14px; align-items: center; color: #54595F; font-size: 12.5px; }
.wcpc-spaces__leg { display: inline-flex; align-items: center; gap: 5px; }
.wcpc-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.wcpc-dot.is-open { background: #4B9560; }
.wcpc-dot.is-limited { background: #FFB549; }
.wcpc-dot.is-booked { background: #9AA3AB; }
.wcpc-spaces__hide { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; font-size: 12.5px; color: #54595F; user-select: none; }
.wcpc-spaces__hide input { cursor: pointer; }
.wcpc-spaces__dateclear { margin-left: auto; color: #7A7A7A; font-size: 12.5px; cursor: pointer; text-decoration: underline; }
.wcpc-spaces__dateclear:hover { color: var(--wcpc-accent, #34657F); }

/* availability badge on a room card */
.wcpc-room-card__avail {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 99px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
	white-space: nowrap;
}
.wcpc-room-card__avail.is-available { background: #4B9560; color: #fff; }
.wcpc-room-card__avail.is-limited { background: #FFB549; color: #5a3d05; }
.wcpc-room-card__avail.is-booked { background: #606971; color: #fff; }
.wcpc-room-card__avail.is-unknown { background: rgba(255, 255, 255, 0.92); color: #7A7A7A; }
.wcpc-room-card__avail.is-checking { background: rgba(255, 255, 255, 0.92); color: #7A7A7A; }

.wcpc-room-card.is-booked { opacity: 0.62; }
.wcpc-room-card.is-booked:hover { opacity: 0.85; }
.wcpc-room-card.is-booked .wcpc-room-card__view { background: #9AA3AB; }
.wcpc-room-card__view.is-req { background: #4B9560; }

/* ---------- Lightbox ---------- */
.wcpc-lb {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(10, 11, 13, 0.93);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}
.wcpc-lb.is-open {
	opacity: 1;
	visibility: visible;
}
.wcpc-lb img {
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 6px;
}
.wcpc-lb__btn {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
}
.wcpc-lb__btn:hover {
	background: rgba(255, 255, 255, 0.2);
}
.wcpc-lb__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.wcpc-lb__next { right: 18px; top: 50%; transform: translateY(-50%); }
.wcpc-lb__close { top: 18px; right: 18px; }
.wcpc-lb__count {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.05em;
}
.wcpc-lb[data-single="1"] .wcpc-lb__prev,
.wcpc-lb[data-single="1"] .wcpc-lb__next,
.wcpc-lb[data-single="1"] .wcpc-lb__count {
	display: none;
}

/* ---------- Spaces search (hero deep-link form) ---------- */
.wcpc-spaces-search {
	--wcpc-accent: #34657F;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 6px 24px rgba(21, 38, 58, 0.10);
}
/* Form controls (<input>/<select>/<button>) get !important borders: theme +
   Elementor reset rules style native controls with high specificity / their own
   !important, which otherwise win and produce a heavy or pink/default border. */
.wcpc-ssearch__field {
	flex: 1 1 150px;
	min-width: 140px;
	display: flex;
	flex-direction: column;
}
.wcpc-ssearch__field label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wcpc-muted, #7A7A7A);
	margin: 0 0 5px 2px;
}
.wcpc-ssearch__field input,
.wcpc-ssearch__field select {
	height: 46px;
	border: 1px solid var(--wcpc-line, #DFE4EE) !important;
	border-radius: 7px;
	padding: 0 12px;
	font-family: inherit;
	font-size: 15px;
	color: var(--wcpc-ink, #54595F);
	background: #fff;
}
.wcpc-ssearch__field input:focus,
.wcpc-ssearch__field select:focus { outline: none; border-color: var(--wcpc-accent, #34657F) !important; }
.wcpc-ssearch__submit { height: 46px; white-space: nowrap; flex: 0 0 auto; }
@media (max-width: 760px) {
	.wcpc-spaces-search { flex-direction: column; align-items: stretch; }
	.wcpc-ssearch__field { flex-basis: auto; }
	.wcpc-ssearch__submit { width: 100%; }
}

/* ---------- Pricing table ---------- */
.wcpc-ptable-wrap { --wcpc-accent: #34657F; overflow-x: auto; }
.wcpc-ptable {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 12px;
	overflow: hidden;
}
.wcpc-ptable th,
.wcpc-ptable td {
	padding: 14px 18px;
	text-align: left;
	font-size: 15px;
	border-bottom: 1px solid var(--wcpc-line, #DFE4EE);
}
.wcpc-ptable thead th {
	background: var(--wcpc-accent, #34657F);
	color: #fff;
	font-weight: 600;
}
.wcpc-ptable tbody tr:last-child td { border-bottom: none; }
.wcpc-ptable tbody tr:hover { background: var(--wcpc-surface, #E5E9F3); }
.wcpc-ptable__num { text-align: right; }
.wcpc-ptable td.wcpc-ptable__num { font-weight: 600; color: var(--wcpc-accent, #34657F); }
.wcpc-ptable__name a { color: var(--wcpc-ink, #54595F); font-weight: 600; text-decoration: none; }
.wcpc-ptable__name a:hover { color: var(--wcpc-accent, #34657F); }
.wcpc-ptable__cap { color: var(--wcpc-muted, #7A7A7A); font-size: 13.5px; }
.wcpc-ptable td.wcpc-ptable__mem { color: #5a6b2f; }

/* ---------- Capacity chart ---------- */
.wcpc-capchart {
	--wcpc-accent: #34657F;
	background: #fff;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 12px;
	padding: 22px 24px;
}
.wcpc-caprow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.wcpc-caprow:last-child { margin-bottom: 0; }
.wcpc-caprow__nm {
	width: 160px;
	flex: none;
	font-size: 14px;
	font-weight: 600;
	color: var(--wcpc-ink, #54595F);
	text-decoration: none;
}
.wcpc-caprow__nm:hover { color: var(--wcpc-accent, #34657F); }
.wcpc-caprow__bar {
	flex: 1;
	height: 26px;
	background: var(--wcpc-surface, #E5E9F3);
	border-radius: 6px;
	overflow: hidden;
}
.wcpc-caprow__bar span {
	display: block;
	height: 100%;
	border-radius: 6px;
	background: var(--wcpc-accent, #34657F);
	background: linear-gradient(90deg, color-mix(in srgb, var(--wcpc-accent, #34657F) 55%, #fff), var(--wcpc-accent, #34657F));
}
.wcpc-caprow__val {
	width: 96px;
	flex: none;
	text-align: right;
	font-size: 13px;
	color: var(--wcpc-muted, #7A7A7A);
}
@media (max-width: 760px) {
	.wcpc-caprow__nm { width: 100px; font-size: 13px; }
	.wcpc-caprow__val { width: 64px; }
}

/* ---------- Spaces browser: boxed filter bar (mockup style) ---------- */
/* Overrides the earlier borderless .wcpc-spaces__bar with a white card. */
.wcpc-spaces__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 14px;
	padding: 16px;
	margin: 0 0 16px;
	background: #fff;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(21, 38, 58, 0.08);
}
.wcpc-spaces__field {
	flex: 1 1 150px;
	min-width: 140px;
	display: flex;
	flex-direction: column;
}
.wcpc-spaces__field > label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wcpc-muted, #7A7A7A);
	margin: 0 0 5px 2px;
}
.wcpc-spaces__field .wcpc-spaces__date,
.wcpc-spaces__field .wcpc-spaces__guest {
	width: 100%;
	height: 44px;
	border: 1px solid var(--wcpc-line, #DFE4EE) !important;
	border-radius: 5px;
	padding: 0 12px;
	font-family: inherit;
	font-size: 15px;
	color: var(--wcpc-ink, #54595F);
	background: #fff;
}
.wcpc-spaces__field .wcpc-spaces__date:focus,
.wcpc-spaces__field .wcpc-spaces__guest:focus {
	outline: none;
	border-color: var(--wcpc-accent, #34657F) !important;
	box-shadow: 0 0 0 3px rgba(52, 101, 127, 0.18);
}
.wcpc-spaces__results {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--wcpc-muted, #7A7A7A);
}
@media (max-width: 760px) {
	.wcpc-spaces__bar { gap: 10px; }
	.wcpc-spaces__field { flex-basis: calc(50% - 5px); }
}

/* ---------- Enhanced dropdowns (match staging speaker-page filters) ---------- */
/* Native fallback: styled <select> shown until JS enhances it. */
.wcpc-enh-select {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	border: 1px solid var(--wcpc-accent, #34657F) !important;
	border-radius: 5px;
	background-color: transparent;
	color: var(--wcpc-accent, #34657F);
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	padding: 11px 36px 11px 14px;
	cursor: pointer;
	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='%2334657F' 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 12px center;
}
.wcpc-enh-select.is-enhanced { display: none; }

.wcpc-filter-dropdown { position: relative; width: 100%; }
/* Trigger is a <div role="button"> (see room-page.js) so theme/Elementor
   global <button> styles can't recolor it — no !important needed. */
.wcpc-filter-dropdown__trigger {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 14px;
	border: 1px solid var(--wcpc-accent, #34657F);
	border-radius: 5px;
	background: transparent;
	color: var(--wcpc-accent, #34657F);
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
	box-shadow: none;
	-webkit-user-select: none;
	user-select: none;
	transition: border-color 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
}
.wcpc-filter-dropdown__trigger:hover { background: rgba(52, 101, 127, 0.06); }
.wcpc-filter-dropdown__trigger:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(52, 101, 127, 0.35); }
.wcpc-filter-dropdown__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wcpc-filter-dropdown__chevron { flex: none; display: inline-flex; transition: transform 120ms ease-out; }
.wcpc-filter-dropdown.is-open .wcpc-filter-dropdown__chevron { transform: rotate(180deg); }
.wcpc-filter-dropdown__panel {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 100%;
	margin: 0;
	padding: 4px;
	list-style: none;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(15, 34, 46, 0.10);
	z-index: 1000;
	max-height: 280px;
	overflow-y: auto;
}
.wcpc-filter-dropdown__panel[hidden] { display: none; }
.wcpc-filter-dropdown__option {
	display: flex;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 3px;
	color: var(--wcpc-ink, #54595F);
	font-size: 14px;
	cursor: pointer;
}
.wcpc-filter-dropdown__option:hover,
.wcpc-filter-dropdown__option.is-active { background: rgba(52, 101, 127, 0.08); }
.wcpc-filter-dropdown__option.is-selected { color: var(--wcpc-accent, #34657F); font-weight: 500; }

/* ---------- Room setups (tabbed gallery / stacked cards) ---------- */
.wcpc-setups {
	--wcpc-accent: #34657F;
	--wcpc-ink: #54595F;
	--wcpc-muted: #7A7A7A;
	--wcpc-surface: #E5E9F3;
	--wcpc-line: #DFE4EE;
	font-family: inherit;
	color: var(--wcpc-ink, #54595F);
}

/* Tabs row */
.wcpc-setups__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}
.wcpc-setups__tab {
	appearance: none;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	background: #fff;
	color: var(--wcpc-ink, #54595F);
	font: inherit;
	font-size: 14px;
	line-height: 1.2;
	padding: 9px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: background .15s, color .15s, border-color .15s;
}
.wcpc-setups__tab:hover { border-color: var(--wcpc-accent, #34657F); }
.wcpc-setups__tab.is-on {
	background: var(--wcpc-accent, #34657F);
	border-color: var(--wcpc-accent, #34657F);
	color: #fff;
}

/* Panels — only the active one shows */
.wcpc-setups__panel { display: none; }
.wcpc-setups__panel.is-on {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

/* Photo viewer */
.wcpc-setups__gallery {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: var(--wcpc-surface, #E5E9F3);
}
.wcpc-setups__main {
	display: block;
	cursor: zoom-in;
}
.wcpc-setups__main img {
	display: block;
	width: 100%;
	height: 340px;
	object-fit: cover;
}
.wcpc-setups__gallery--empty {
	display: grid;
	place-items: center;
	height: 180px;
	color: var(--wcpc-muted, #7A7A7A);
	font-size: 14px;
	border: 1px dashed #9fb4c4;
}
.wcpc-setups__thumbs {
	display: flex;
	gap: 6px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.85);
}
.wcpc-setups__thumb {
	flex: 1 1 0;
	height: 52px;
	min-width: 0;
	border: 2px solid transparent;
	border-radius: 7px;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	padding: 0;
	transition: border-color .15s;
}
.wcpc-setups__thumb:hover { border-color: rgba(52, 101, 127, 0.45); }
.wcpc-setups__thumb.is-on { border-color: var(--wcpc-accent, #34657F); }

/* Info block */
.wcpc-setups__head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}
.wcpc-setups__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--wcpc-ink, #54595F);
}
.wcpc-setups__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 11px;
	border-radius: 999px;
	white-space: nowrap;
}
.wcpc-setups__badge--cap {
	background: var(--wcpc-surface, #E5E9F3);
	color: var(--wcpc-accent, #34657F);
}
.wcpc-setups__badge--default {
	background: rgba(45, 122, 90, 0.12);
	color: #2D7A5A;
}
.wcpc-setups__badge--default + .wcpc-setups__badge--cap { margin-left: 0; }
.wcpc-setups__head .wcpc-setups__badge--cap { margin-left: auto; }
.wcpc-setups__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--wcpc-muted, #7A7A7A);
}

/* Stacked-cards layout */
.wcpc-setups__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.wcpc-setups__card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--wcpc-line, #DFE4EE);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}
.wcpc-setups__card .wcpc-setups__gallery { border-radius: 0; }
.wcpc-setups__card .wcpc-setups__main img { height: 180px; }
.wcpc-setups__more {
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: rgba(15, 34, 46, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: 999px;
	pointer-events: none;
}
.wcpc-setups__cardbody { padding: 14px 16px 16px; }
.wcpc-setups__card .wcpc-setups__name { font-size: 16px; }
.wcpc-setups__card .wcpc-setups__head .wcpc-setups__badge--cap { margin-left: 0; }

@media (min-width: 768px) {
	.wcpc-setups__panel.is-on {
		grid-template-columns: 1.35fr 1fr;
		align-items: center;
		gap: 28px;
	}
}
@media (max-width: 767px) {
	.wcpc-setups__cards { grid-template-columns: 1fr; }
	.wcpc-setups__main img { height: 260px; }
}
