/*
 * Experience detail, booking form and payment layout.
 * Loads after mlp-pages.css and reuses its brand tokens.
 */

/* ------------------------------------------------ breadcrumb + head */

.mlp-crumbs {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	color: var(--mlp-muted);
	padding: 26px 0 8px;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.mlp-crumbs a { color: var(--mlp-cobalt); text-decoration: none; }
.mlp-crumbs a:hover { text-decoration: underline; }

.mlp-event-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: 18px 0 40px;
}

.mlp-event-head .mlp-event-title {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.06;
	color: var(--mlp-cobalt);
	margin: 6px 0 14px;
}

.mlp-event-head .mlp-event-metaline {
	font-family: var(--mlp-font-type);
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--mlp-cobalt);
	margin: 0 0 18px;
}

.mlp-event-intro p {
	font-family: var(--mlp-font-body);
	font-size: 16px;
	line-height: 1.74;
	color: var(--mlp-body);
	margin: 0 0 14px;
}

.mlp-event-head .mlp-event-price {
	font-family: var(--mlp-font-body);
	font-size: 17px;
	font-weight: 600;
	color: var(--mlp-ink);
	margin: 18px 0 22px;
}

.mlp-btn-lg { padding: 15px 38px; font-size: 15px; }
.mlp-btn-block { display: flex; width: 100%; }

/* ------------------------------------------------------------ slider */

.mlp-slider {
	position: relative;
	max-width: 960px;
	margin: 0 auto 54px;
	background: var(--mlp-limestone);
	overflow: hidden;
}

.mlp-slider-track { position: relative; }

.mlp-slide {
	display: none;
	aspect-ratio: 16 / 9;
	background: var(--mlp-limestone);
}

.mlp-slide.is-active { display: block; }

.mlp-slide img,
.mlp-slide video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mlp-slide-embed,
.mlp-slide-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.mlp-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--mlp-cobalt);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(18, 56, 143, 0.18);
	transition: background 0.18s ease;
}

.mlp-slider-arrow:hover { background: #fff; }
.mlp-slider-arrow svg { width: 22px; height: 22px; }
.mlp-slider-arrow.is-prev { left: 16px; }
.mlp-slider-arrow.is-next { right: 16px; }

.mlp-slider-dots {
	display: flex;
	gap: 9px;
	justify-content: center;
	padding: 16px 0 4px;
	background: transparent;
}

.mlp-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(18, 56, 143, 0.26);
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.mlp-dot.is-active {
	background: var(--mlp-cobalt);
	transform: scale(1.25);
}

/* The dot row sits under the frame, so give it a light ground. */
.mlp-slider { background: transparent; }
.mlp-slider .mlp-slider-track { background: var(--mlp-limestone); }

/* ------------------------------------------------- time and location */

.mlp-event-facts {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--mlp-rule);
	padding: 36px 40px 32px;
	margin: 0 0 30px;
}

.mlp-facts-title {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(24px, 2.7vw, 32px);
	color: var(--mlp-cobalt);
	margin: 0 0 22px;
}

.mlp-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px 40px;
	margin: 0 0 26px;
}

.mlp-fact dt {
	font-family: var(--mlp-font-type);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mlp-muted);
	margin-bottom: 6px;
}

.mlp-fact dd {
	font-family: var(--mlp-font-body);
	font-size: 15px;
	line-height: 1.62;
	color: var(--mlp-body);
	margin: 0;
}

.mlp-facts-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------ step ribbon */

.mlp-steps {
	list-style: none;
	margin: 26px 0 8px;
	padding: 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	font-family: var(--mlp-font-body);
	font-size: 13px;
	color: var(--mlp-muted);
}

.mlp-steps li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px 7px 8px;
	border: 1px solid var(--mlp-rule);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
}

.mlp-steps span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(18, 56, 143, 0.12);
	color: var(--mlp-cobalt);
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mlp-steps .is-current { color: var(--mlp-cobalt); border-color: rgba(18, 56, 143, 0.4); }
.mlp-steps .is-current span { background: var(--mlp-cobalt); color: #fff; }
.mlp-steps .is-done span { background: var(--mlp-aqua); color: var(--mlp-cobalt-dark); }

/* ----------------------------------------------------------- alerts */

.mlp-alert {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	line-height: 1.6;
	padding: 13px 16px;
	margin: 0 0 20px;
	border-left: 3px solid var(--mlp-cobalt);
	background: rgba(191, 228, 255, 0.34);
	color: var(--mlp-ink);
}

.mlp-alert.is-error { border-left-color: #B4453A; background: rgba(180, 69, 58, 0.09); }
.mlp-alert.is-info { border-left-color: var(--mlp-sun); background: rgba(244, 213, 78, 0.18); }

/* ----------------------------------------------------- booking form */

.mlp-book-head { max-width: 720px; padding: 10px 0 30px; }

.mlp-book-form { max-width: 780px; margin: 0 0 56px; }

.mlp-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.mlp-hint { font-weight: 400; color: var(--mlp-muted); font-size: 12px; }

.mlp-picker {
	border: 1px solid var(--mlp-rule);
	padding: 20px 20px 8px;
	margin: 8px 0 22px;
	background: rgba(255, 255, 255, 0.5);
}

.mlp-picker legend {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--mlp-ink);
	padding: 0 8px;
}

.mlp-pick {
	display: grid;
	grid-template-columns: 74px 1fr auto;
	gap: 16px;
	align-items: center;
	padding: 14px 12px;
	margin-bottom: 12px;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.74);
	transition: border-color 0.18s ease, background 0.18s ease;
}

.mlp-pick.is-chosen {
	border-color: rgba(18, 56, 143, 0.42);
	background: rgba(191, 228, 255, 0.24);
}

.mlp-pick-thumb {
	width: 74px;
	height: 60px;
	overflow: hidden;
	background: var(--mlp-limestone);
}

.mlp-pick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mlp-pick-title {
	font-family: var(--mlp-font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--mlp-ink);
	margin: 0 0 3px;
}

.mlp-pick-meta {
	font-family: var(--mlp-font-type);
	font-size: 11px;
	letter-spacing: 0.07em;
	color: var(--mlp-muted);
	margin: 0 0 3px;
}

.mlp-pick-price {
	font-family: var(--mlp-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--mlp-cobalt);
	margin: 0;
}

.mlp-stepper {
	display: flex;
	align-items: center;
	border: 1px solid var(--mlp-rule);
	background: #fff;
}

.mlp-step-btn {
	width: 36px;
	height: 38px;
	border: 0;
	background: transparent;
	color: var(--mlp-cobalt);
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
}

.mlp-step-btn:hover { background: rgba(18, 56, 143, 0.07); }

.mlp-step-input {
	width: 42px;
	height: 38px;
	border: 0;
	border-left: 1px solid var(--mlp-rule);
	border-right: 1px solid var(--mlp-rule);
	text-align: center;
	font-family: var(--mlp-font-body);
	font-size: 14px;
	color: var(--mlp-ink);
	-moz-appearance: textfield;
	background: #fff;
}

.mlp-step-input::-webkit-outer-spin-button,
.mlp-step-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.mlp-book-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 16px 0 18px;
	border-top: 1px solid var(--mlp-rule);
	font-family: var(--mlp-font-body);
	font-size: 15px;
	color: var(--mlp-body);
}

.mlp-book-total strong {
	font-size: 22px;
	color: var(--mlp-cobalt);
}
/* ---------------------------------------------------- payment step */

.mlp-pay-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
	gap: 40px;
	align-items: start;
	padding-bottom: 56px;
}

.mlp-pay-card {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--mlp-rule);
	padding: 34px 34px 30px;
}

.mlp-pay-card h2 {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: clamp(24px, 2.6vw, 31px);
	color: var(--mlp-cobalt);
	margin: 0 0 18px;
}

.mlp-pay-fields { margin: 4px 0 22px; }

.mlp-pay-fields label {
	display: block;
	font-family: var(--mlp-font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--mlp-ink);
	margin-bottom: 7px;
}

.mlp-pay-slot {
	height: 46px;
	border: 1px solid var(--mlp-rule);
	background: repeating-linear-gradient(
		-45deg,
		rgba(18, 56, 143, 0.04) 0 8px,
		rgba(18, 56, 143, 0.08) 8px 16px
	);
	margin-bottom: 16px;
	position: relative;
}

.mlp-pay-slot-card .mlp-pay-brand {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 22px;
	border-radius: 3px;
	background: rgba(18, 56, 143, 0.16);
}

.mlp-pay-summary { position: sticky; top: 24px; }

.mlp-pay-summary h2 {
	font-family: var(--mlp-font-display);
	font-weight: 400;
	font-size: 25px;
	color: var(--mlp-cobalt);
	margin: 0 0 18px;
}

.mlp-sum-list { list-style: none; margin: 0 0 16px; padding: 0; }

.mlp-sum-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 0;
	border-bottom: 1px solid var(--mlp-rule);
	font-family: var(--mlp-font-body);
	font-size: 14px;
	color: var(--mlp-body);
}

.mlp-sum-name em { font-style: normal; color: var(--mlp-muted); margin-left: 8px; }
.mlp-sum-amt { white-space: nowrap; font-weight: 600; color: var(--mlp-ink); }

.mlp-sum-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: var(--mlp-font-body);
	font-size: 15px;
	color: var(--mlp-body);
	margin: 0 0 20px;
}

.mlp-sum-total strong { font-size: 21px; color: var(--mlp-cobalt); }

.mlp-sum-who {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	line-height: 1.66;
	color: var(--mlp-muted);
	margin: 0 0 14px;
}

.mlp-sum-edit {
	font-family: var(--mlp-font-body);
	font-size: 13px;
	color: var(--mlp-cobalt);
}

.mlp-cta-actions-inline { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* -------------------------------------------------------- responsive */

@media (max-width: 900px) {
	.mlp-pay-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
	.mlp-pay-summary { position: static; }
	.mlp-event-facts { padding: 28px 24px 26px; }
}

@media (max-width: 680px) {
	.mlp-field-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
	.mlp-pick { grid-template-columns: 58px 1fr; row-gap: 12px; }
	.mlp-pick-thumb { width: 58px; height: 50px; }
	.mlp-stepper { grid-column: 1 / -1; justify-self: start; }
	.mlp-slider-arrow { width: 38px; height: 38px; }
	.mlp-slider-arrow.is-prev { left: 8px; }
	.mlp-slider-arrow.is-next { right: 8px; }
	.mlp-event-head { padding: 12px 0 30px; }
	.mlp-pay-card { padding: 26px 22px 24px; }
}