.product-desc-extra {
	margin: 32px auto 0;
	max-width: 1000px;
	text-align: center;
}

.product-desc-extra__image {
	display: inline-block;
	position: relative;
	max-width: 100%;
	cursor: zoom-in;
}

.product-desc-extra__image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.product-desc-extra__text {
	margin: 14px auto 0;
	color: #222;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}

.product-desc-lightbox {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .88);
	cursor: zoom-out;
}

.product-desc-lightbox.is-open {
	display: flex;
}

.product-desc-lightbox__content {
	position: relative;
	max-width: min(1200px, 100%);
	max-height: 100%;
	text-align: center;
	cursor: default;
}

.product-desc-lightbox img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 96px);
	margin: 0 auto;
	object-fit: contain;
}

.product-desc-lightbox__caption {
	margin-top: 10px;
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
}

.product-desc-lightbox__close {
	position: absolute;
	top: -42px;
	right: 0;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font-size: 25px;
	line-height: 30px;
	cursor: pointer;
}