/* Loads the site's own fonts as a fallback in case they aren't
   already loaded on the page. Harmless duplicate if they are. */
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@400;500;600&display=swap');
.plc-widget {
	--plc-ink: #222222;
	--plc-body: #484848;
	--plc-muted: #adadad;
	--plc-paper: #ffffff;
	--plc-cream: #f8f5f0;
	--plc-line: #ececec;
	--plc-accent: #ab8a62;
	--plc-accent-dark: #222222;
	--plc-unavailable-bg: #f8f5f0;
	--plc-unavailable-text: #adadad;
	--plc-radius: 0px;
	all: initial;
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 100%;
	font-family: 'Barlow', sans-serif;
	color: var(--plc-body);
	margin-top:30px;
}
.plc-widget *,
.plc-widget *::before,
.plc-widget *::after {
	box-sizing: border-box;
	font-family: inherit;
}
.plc-layout {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	flex-wrap: wrap;
}
.plc-calendar-col {
	flex: 1 1 calc(60% - 7.5px);
}
.plc-summary-col {
	flex: 0 0 calc(40% - 7.5px);
	position: sticky;
	top: 12px;
}
.plc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.plc-header h2 {
	font-family: 'Gilda Display', serif;
	font-size: 20px;
	font-weight: 500;
	margin: 0;
	color: var(--plc-ink);
}
.plc-nav-btn {
	background: transparent;
	border: 1px solid rgba(102, 102, 102, 0.25);
	color: var(--plc-accent);
	width: 32px;
	height: 32px;
	border-radius: 100%;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.plc-nav-btn:hover { border-color: var(--plc-accent); color: var(--plc-accent); }
.plc-nav-btn:disabled { opacity: 0.35; cursor: default; }
.plc-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 4px;
}
.plc-weekdays span {
	text-align: center;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: var(--plc-body);
	text-transform: uppercase;
	padding: 4px 0;
	display: block;
}
.plc-days-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}
.plc-day-cell {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--plc-line);
	border-radius: var(--plc-radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	cursor: pointer;
	background: var(--plc-paper);
	transition: border-color 0.15s ease, background 0.15s ease;
	padding: 2px;
}
.plc-day-cell:hover:not(.plc-unavailable):not(.plc-empty):not(.plc-past) {
	border-color: var(--plc-accent);
}
.plc-day-cell.plc-empty {
	border: none;
	cursor: default;
}
.plc-day-cell .plc-day-num {
	font-family: 'Barlow', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: var(--plc-ink);
}
.plc-day-cell .plc-day-price {
	font-family: 'Barlow', sans-serif;
	font-size: 10px;
	color: var(--plc-accent);
	font-weight: 600;
}
.plc-day-cell.plc-unavailable {
	background: var(--plc-unavailable-bg);
	color: var(--plc-unavailable-text);
	cursor: not-allowed;
}
.plc-day-cell.plc-unavailable .plc-day-num { color: var(--plc-unavailable-text); }
.plc-day-cell.plc-unavailable .plc-day-price { display: none; }
/* Past dates: same muted palette as "unavailable", but with a
   diagonal slash through the cell so the two are visually distinct
   at a glance (booked vs. simply already gone). */
.plc-day-cell.plc-past {
	background: var(--plc-unavailable-bg);
	color: var(--plc-unavailable-text);
	cursor: default;
	background-image: linear-gradient(
		to top right,
		transparent calc(50% - 1px),
		var(--plc-unavailable-text) 50%,
		transparent calc(50% + 1px)
	);
}
.plc-day-cell.plc-past .plc-day-num { color: var(--plc-unavailable-text); }
.plc-day-cell.plc-past .plc-day-price { display: none; }
.plc-day-cell.plc-selected {
	background: var(--plc-accent);
	border-color: var(--plc-accent);
}
.plc-day-cell.plc-selected .plc-day-num,
.plc-day-cell.plc-selected .plc-day-price {
	color: #fff;
}
.plc-day-cell.plc-in-range {
	background: #f3ece1;
	border-color: #e3d3ba;
}
.plc-legend {
	display: flex;
	gap: 16px;
	margin-top: 16px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	color: var(--plc-body);
	flex-wrap: wrap;
}
.plc-legend-item { display: flex; align-items: center; gap: 6px; }
.plc-legend-swatch {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	display: inline-block;
}
.plc-status-line {
	margin-top: 10px;
	font-size: 12px;
	color: var(--plc-muted);
	min-height: 16px;
}
/* --- Summary panel (sits beside the calendar) --- */
.plc-summary-panel {
	background: var(--plc-cream);
	border-radius: var(--plc-radius);
	padding: 24px 22px;
}
.plc-summary-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--plc-accent);
	margin: 0 0 14px 0;
}
.plc-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(170, 132, 83, 0.2);
	font-size: 14px;
}
.plc-summary-row:last-of-type {
	border-bottom: none;
}
.plc-summary-label {
	font-family: 'Barlow Condensed', sans-serif;
	text-transform: uppercase;
	color: var(--plc-body);
	font-size: 14px;
}
.plc-summary-value {
	font-family: 'Barlow', sans-serif;
	font-weight: 500;
	color: var(--plc-ink);
	text-align: right;
}
.plc-summary-empty {
	font-size: 14px;
	color: var(--plc-body);
	line-height: 1.6;
}
.plc-summary-total {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(170, 132, 83, 0.35);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.plc-summary-total .plc-summary-label {
	font-size: 14px;
}
.plc-summary-total .plc-summary-value {
	font-family: 'Gilda Display', serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--plc-accent);
}
@media (max-width: 991px) {
	.plc-widget {margin-bottom:30px;}
}
@media (max-width: 640px) {
	.plc-summary-col {
		position: static;
		flex: 1 1 100%;
	}
}