.must-patient-strip-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.mpg-strip {
	overflow: hidden;
	width: 100%;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-y;
}
.mpg-strip.mpg-dragging {
	cursor: grabbing;
}
.mpg-track {
	display: flex;
	gap: 20px;
	width: max-content;
	will-change: transform;
}
.mpg-dir-left {
	animation: mpg-scroll-left var(--mpg-duration, 60s) linear infinite;
}
.mpg-dir-right {
	animation: mpg-scroll-right var(--mpg-duration, 60s) linear infinite;
}
.mpg-track.mpg-paused,
.mpg-strip:hover .mpg-track,
.mpg-strip.mpg-dragging .mpg-track {
	animation-play-state: paused;
}
@keyframes mpg-scroll-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes mpg-scroll-right {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}
.mpg-card {
	position: relative;
	width: 378px;
	height: 504px;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	flex-shrink: 0;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.35s, transform 0.35s;
}
.mpg-card:hover {
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
	transform: translateY(-6px) scale(1.01);
}
.mpg-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease;
	pointer-events: none;
}
.mpg-card:hover img {
	transform: scale(1.06);
}
.mpg-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	transition: opacity 0.3s;
}
.mpg-card:hover .mpg-card-overlay {
	opacity: 1;
}
.mpg-view-icon {
	width: 62px;
	height: 62px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transform: scale(0.75);
	transition: transform 0.3s;
	backdrop-filter: blur(6px);
	background: rgba(255, 255, 255, 0.15);
}
.mpg-card:hover .mpg-view-icon {
	transform: scale(1);
}
.mpg-pause-badge {
	position: absolute;
	top: 14px;
	right: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.92);
	color: #111;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: 999px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
	pointer-events: none;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.25s, transform 0.25s;
	z-index: 10;
}
.must-patient-strip-wrap:hover .mpg-pause-badge,
.must-patient-strip-wrap.mpg-drag-active .mpg-pause-badge {
	opacity: 1;
	transform: translateY(0);
}
.mpg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}
.mpg-lightbox.mpg-open {
	visibility: visible !important;
	opacity: 1 !important;
}
.mpg-lb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.90);
	cursor: pointer;
}
.mpg-lb-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
.mpg-lb-img-wrap {
	max-width: 82vw;
	max-height: 86vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mpg-lb-img {
	max-width: 82vw;
	max-height: 86vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 16px 60px rgba(0, 0, 0, 0.75);
	display: block;
	transition: opacity 0.18s ease;
}
.mpg-lb-close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 46px;
	height: 46px;
	background: #fff !important;
	border: none !important;
	color: #111 !important;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s;
	z-index: 5;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	outline: none !important;
	text-decoration: none !important;
}
.mpg-lb-close:hover {
	background: #f0f0f0 !important;
	color: #111 !important;
	transform: scale(1.1) rotate(90deg);
}
.mpg-lb-prev,
.mpg-lb-next {
	position: relative;
	width: 52px;
	height: 52px;
	background: #fff !important;
	border: none !important;
	color: #111 !important;
	font-size: 22px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	flex-shrink: 0;
	z-index: 2;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
	outline: none !important;
	text-decoration: none !important;
}
.mpg-lb-prev:hover,
.mpg-lb-next:hover {
	background: #f5f5f5 !important;
	color: #111 !important;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}
.mpg-lb-counter {
	position: fixed;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.1em;
	white-space: nowrap;
	z-index: 3;
	background: rgba(0, 0, 0, 0.5);
	padding: 5px 16px;
	border-radius: 20px;
	backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
	.mpg-card {
		width: 280px;
		height: 374px;
	}
}
@media (max-width: 600px) {
	.mpg-card {
		width: 200px;
		height: 267px;
		border-radius: 0;
	}
	.mpg-lb-prev,
	.mpg-lb-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.mpg-lb-close {
		width: 40px;
		height: 40px;
		font-size: 17px;
		top: 14px;
		right: 14px;
	}
	.mpg-pause-badge {
		display: none;
	}
}

/* Single-album treatments (e.g. arm lift): one card, no marquee clone */
.must-patient-strip-wrap.mpg-static .mpg-track {
	animation: none !important;
	justify-content: center;
	width: 100%;
}
.must-patient-strip-wrap.mpg-static .mpg-strip {
	cursor: default;
}
.mpg-album-count {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 2;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 28px;
	text-align: center;
	pointer-events: none;
}
