.bjo-braces-showcase,
.bjo-braces-showcase * {
	box-sizing: border-box;
}

.bjo-braces-showcase {
	--bjo-blue: #0B3D66;
	--bjo-white: #ffffff;
	--bjo-showcase-min-height: 640px;
	position: relative;
	width: 100%;
	padding: 0;
	background: transparent;
	color: var(--bjo-blue);
	font-family: "Lato", Arial, sans-serif;
	overflow: visible;
}

.bjo-braces-showcase__inner {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
}

/* Desired showroom layout: image left, tabs and details right. */
.bjo-braces-showcase__shell {
	display: grid;
	grid-template-columns: minmax(340px, 44%) minmax(0, 56%);
	min-height: var(--bjo-showcase-min-height);
	margin-top: 0;
	border: 1px solid rgba(11, 61, 102, 0.16);
	border-radius: 30px;
	background: var(--bjo-white);
	box-shadow: 0 24px 64px rgba(11, 61, 102, 0.11);
	overflow: hidden;
}

.bjo-braces-showcase__media-stack {
	position: relative;
	min-width: 0;
	min-height: var(--bjo-showcase-min-height);
	background: rgba(11, 61, 102, 0.05);
	overflow: hidden;
}

.bjo-braces-showcase__media-panel {
	position: absolute;
	inset: 0;
	margin: 0;
	animation: bjoShowcaseFade 260ms ease both;
}

.bjo-braces-showcase__media-panel[hidden] {
	display: none !important;
}

.bjo-braces-showcase__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: var(--bjo-showcase-min-height);
	object-fit: cover;
	object-position: center;
}

.bjo-braces-showcase__image.bjo-position-top {
	object-position: center top;
}

.bjo-braces-showcase__image.bjo-position-bottom {
	object-position: center bottom;
}

.bjo-braces-showcase__image.bjo-position-left {
	object-position: left center;
}

.bjo-braces-showcase__image.bjo-position-right {
	object-position: right center;
}

.bjo-braces-showcase__selected {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 110px;
	padding: 24px 36px 25px;
	background: var(--bjo-blue);
	color: var(--bjo-white);
}

.bjo-braces-showcase__selected-label {
	font-family: "Fredoka", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.8;
}

.bjo-braces-showcase__selected-title {
	margin-top: 10px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(24px, 2.2vw, 31px);
	font-weight: 700;
	line-height: 1.15;
}

.bjo-braces-showcase__right {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	min-width: 0;
	min-height: var(--bjo-showcase-min-height);
	background: var(--bjo-white);
}

.bjo-braces-showcase__tabs {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(11, 61, 102, 0.14);
	background: var(--bjo-white);
}

.bjo-braces-showcase__tab {
	appearance: none;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 16px;
	width: 100%;
	min-height: 78px;
	margin: 0;
	padding: 18px 30px;
	border: 0;
	border-bottom: 1px solid rgba(11, 61, 102, 0.12);
	border-radius: 0;
	background: var(--bjo-white);
	color: var(--bjo-blue);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.bjo-braces-showcase__tab:last-child {
	border-bottom: 0;
}

.bjo-braces-showcase__tab:hover,
.bjo-braces-showcase__tab:focus-visible {
	background: rgba(11, 61, 102, 0.045);
	outline: none;
}

.bjo-braces-showcase__tab:focus-visible {
	box-shadow: inset 0 0 0 3px rgba(11, 61, 102, 0.2);
}

.bjo-braces-showcase__tab.is-active {
	background: var(--bjo-blue);
	color: var(--bjo-white);
}

.bjo-braces-showcase__tab-number {
	font-family: "Fredoka", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	opacity: 0.92;
}

.bjo-braces-showcase__tab-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 600;
	line-height: 1.28;
}

.bjo-braces-showcase__tab-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.bjo-braces-showcase__tab-arrow svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bjo-braces-showcase__content-panels {
	position: relative;
	min-width: 0;
	background: var(--bjo-white);
}

.bjo-braces-showcase__content-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	padding: clamp(36px, 4.5vw, 56px);
	overflow: hidden;
	animation: bjoShowcaseFade 260ms ease both;
}

.bjo-braces-showcase__content-panel[hidden] {
	display: none !important;
}

@keyframes bjoShowcaseFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bjo-braces-showcase__large-number {
	position: absolute;
	top: 24px;
	right: 28px;
	color: rgba(11, 61, 102, 0.055);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(88px, 10vw, 142px);
	font-weight: 700;
	line-height: 0.9;
	pointer-events: none;
}

.bjo-braces-showcase__treatment-title {
	position: relative;
	max-width: 520px;
	margin: 0;
	padding-right: 52px;
	color: var(--bjo-blue);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(31px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.bjo-braces-showcase__rule {
	width: 72px;
	height: 3px;
	margin-top: 22px;
	background: var(--bjo-blue);
}

.bjo-braces-showcase__description {
	position: relative;
	max-width: 590px;
	margin-top: 24px;
	font-size: 15.5px;
	line-height: 1.82;
}

.bjo-braces-showcase__description p {
	margin: 0 0 1em;
}

.bjo-braces-showcase__description p:last-child {
	margin-bottom: 0;
}

.bjo-braces-showcase__description a {
	color: inherit;
	font-weight: 700;
	text-underline-offset: 3px;
}

@media (max-width: 1024px) {


	.bjo-braces-showcase__shell {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.bjo-braces-showcase__media-stack {
		min-height: 430px;
	}

	.bjo-braces-showcase__image {
		min-height: 430px;
	}

	.bjo-braces-showcase__right {
		min-height: 0;
	}

	.bjo-braces-showcase__tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bjo-braces-showcase__tab {
		grid-template-columns: 36px minmax(0, 1fr) 38px;
		min-height: 76px;
		padding: 18px 22px;
		border-right: 1px solid rgba(11, 61, 102, 0.12);
	}

	.bjo-braces-showcase__tab:nth-child(2n) {
		border-right: 0;
	}

	.bjo-braces-showcase__content-panel {
		min-height: 390px;
	}
}

@media (max-width: 767px) {





	.bjo-braces-showcase__shell {
		border-radius: 24px;
	}

	.bjo-braces-showcase__media-stack,
	.bjo-braces-showcase__image {
		min-height: 320px;
		height: 320px;
	}

	.bjo-braces-showcase__selected {
		min-height: 88px;
		padding: 18px 22px 20px;
	}

	.bjo-braces-showcase__selected-label {
		font-size: 10px;
	}

	.bjo-braces-showcase__selected-title {
		font-size: 24px;
	}

	.bjo-braces-showcase__tabs {
		grid-template-columns: 1fr;
	}

	.bjo-braces-showcase__tab,
	.bjo-braces-showcase__tab:nth-child(2n) {
		grid-template-columns: 32px minmax(0, 1fr) 34px;
		min-height: 68px;
		padding: 16px 18px;
		border-right: 0;
	}

	.bjo-braces-showcase__tab-title {
		font-size: 18px;
	}

	.bjo-braces-showcase__tab-arrow {
		width: 32px;
		height: 32px;
	}

	.bjo-braces-showcase__content-panel {
		min-height: 0;
		padding: 30px 24px 34px;
	}

	.bjo-braces-showcase__large-number {
		top: 16px;
		right: 18px;
		font-size: 84px;
	}

	.bjo-braces-showcase__treatment-title {
		padding-right: 54px;
		font-size: 29px;
	}

	.bjo-braces-showcase__description {
		font-size: 15px;
		line-height: 1.75;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bjo-braces-showcase__tab,
	.bjo-braces-showcase__media-panel,
	.bjo-braces-showcase__content-panel {
		animation: none;
		transition: none;
	}
}
