.mte-reservas {
	--mte-green: #16845f;
	--mte-green-soft: #e8f6ef;
	--mte-red: #b42318;
	--mte-red-soft: #fdebea;
	--mte-ink: #152033;
	--mte-muted: #667085;
	--mte-line: #dbe4ec;
	--mte-surface: #ffffff;
	color: var(--mte-ink);
	font-family: inherit;
}

.mte-reservas * {
	box-sizing: border-box;
}

.mte-booking-shell {
	background: #f8fbf9;
	border: 1px solid var(--mte-line);
	padding: clamp(18px, 3vw, 30px);
	width: 100%;
}

.mte-booking-toolbar {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.mte-booking-kicker {
	color: var(--mte-green);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.mte-booking-toolbar h2 {
	color: var(--mte-ink);
	font-size: 34px;
	line-height: 1.1;
	margin: 0;
}

.mte-service-filter {
	display: grid;
	gap: 6px;
	min-width: min(260px, 100%);
}

.mte-service-filter span,
.mte-booking-form span {
	color: #344054;
	font-size: 13px;
	font-weight: 800;
}

.mte-service-filter select,
.mte-booking-form input,
.mte-booking-form textarea {
	background: #ffffff;
	border: 1px solid #c9d3df;
	border-radius: 6px;
	color: var(--mte-ink);
	font: inherit;
	min-height: 42px;
	padding: 9px 11px;
	width: 100%;
}

.mte-slot-list {
	display: grid;
	gap: 24px;
}

.mte-day-group h3 {
	color: var(--mte-ink);
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 12px;
}

.mte-day-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mte-slot-card {
	background: var(--mte-surface);
	border: 1px solid var(--mte-line);
	border-left: 5px solid var(--mte-green);
	display: grid;
	gap: 12px;
	padding: 16px;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mte-slot-card.is-open {
	border-left-color: var(--mte-green);
}

.mte-slot-card.is-full {
	border-left-color: var(--mte-red);
}

.mte-slot-card:hover {
	box-shadow: 0 12px 30px rgba(21, 32, 51, .09);
	transform: translateY(-1px);
}

.mte-slot-topline {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.mte-slot-topline > span:first-child {
	color: var(--mte-muted);
	font-size: 13px;
	font-weight: 800;
}

.mte-availability {
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 9px;
	white-space: nowrap;
}

.mte-availability.is-green {
	background: var(--mte-green-soft);
	color: var(--mte-green);
}

.mte-availability.is-red {
	background: var(--mte-red-soft);
	color: var(--mte-red);
}

.mte-slot-card h4 {
	color: var(--mte-ink);
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
}

.mte-slot-meta {
	color: var(--mte-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 8px 12px;
}

.mte-progress {
	background: #edf2f6;
	border-radius: 999px;
	height: 9px;
	overflow: hidden;
}

.mte-progress span {
	background: var(--mte-green);
	display: block;
	height: 100%;
	width: var(--mte-fill);
}

.mte-slot-card.is-full .mte-progress span {
	background: var(--mte-red);
}

.mte-slot-notes {
	color: var(--mte-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.mte-booking-button,
.mte-submit-button {
	align-items: center;
	background: var(--mte-green);
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 900;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	text-decoration: none;
	width: 100%;
}

.mte-booking-button:hover,
.mte-submit-button:hover {
	background: #116a4d;
	color: #ffffff;
}

.mte-booking-button.is-disabled {
	background: #f2f4f7;
	color: #98a2b3;
	cursor: not-allowed;
}

.mte-booking-form {
	border-top: 1px solid var(--mte-line);
	display: none;
	gap: 12px;
	margin-top: 2px;
	padding-top: 14px;
}

.mte-slot-card.is-form-open .mte-booking-form {
	display: grid;
}

.mte-form-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mte-booking-form label {
	display: grid;
	gap: 6px;
}

.mte-public-notice {
	border: 1px solid;
	font-weight: 800;
	margin: 0 0 18px;
	padding: 12px 14px;
}

.mte-public-notice.is-success {
	background: var(--mte-green-soft);
	border-color: #a9dec5;
	color: var(--mte-green);
}

.mte-public-notice.is-error {
	background: var(--mte-red-soft);
	border-color: #f5b8b3;
	color: var(--mte-red);
}

.mte-empty-state {
	background: #ffffff;
	border: 1px dashed var(--mte-line);
	padding: 24px;
	text-align: center;
}

.mte-empty-state h3 {
	color: var(--mte-ink);
	font-size: 22px;
	margin: 0 0 8px;
}

.mte-empty-state p {
	color: var(--mte-muted);
	margin: 0;
}

@media (max-width: 1040px) {
	.mte-day-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.mte-booking-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.mte-booking-toolbar h2 {
		font-size: 26px;
	}

	.mte-day-grid,
	.mte-form-grid {
		grid-template-columns: 1fr;
	}

	.mte-slot-card {
		padding: 14px;
	}

	.mte-slot-topline {
		align-items: flex-start;
		flex-direction: column;
	}
}
