.productTop {
	display: flex;
	gap: 24px;
}
.productLeft {
	width: 40%;
}
.productMainImage {
	width: 100%;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.productSlideshow {
	display: flex;
	gap: 8px;
}
.productSlide {
	flex: 1;
	height: 83px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.productRight {
	width: 60%;
}
.productSpecs {
	list-style: none;
	padding: 0;
	margin: 0;
}
.productSpecs li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
	display: flex;
	width: 100%;
}
.productSpecs li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: orange;
	font-size: 22px;
	line-height: 1;
}
.productGallery {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 32px 0;
}
.productThumb {
	width: 72px;
	height: 72px;
	background: #cfcfcf;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	overflow: hidden;
}
.productTabs {
	border-top: 1px solid #ddd;
	margin-top: 3em;
}
.productTabButtons {
	display: flex;
	gap: 16px;
	margin-bottom: 12px;
}
.productTabButton {
	background: none;
	border: none;
	padding: 8px 0;
	cursor: pointer;
	font-weight: bold;
	border-bottom: 2px solid transparent;
}
.productTabButtonActive {
	border-color: #324BFF;
	color: #504E64;
	font-weight: bold;
}
.productTabContent {
	display: none;
	max-height: 400px;
	overflow: hidden;
	position: relative;
}
.productTabContent.expanded {
	max-height: none;
}
.productTabContentActive {
	display: block;
}
.productMore {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	text-align: center;
	background-image: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
	height: 60px;
	color: #ED604E;
	font-weight: 700;
	font-size: 18px;
	padding-top: 20px;
	cursor: pointer;
}
.productMore::after,
.productMore::before {
	content: "";
	display: block;
	width: 41%;
	border-top: 2px dashed #ED604E;
	position: absolute;
	top: 58%;
}
.productMore::after {
	left: 0;
}
.productMore::before {
	right: 0;
}
.productMainWrapper {
	position: relative;
	width: 368px;
}
.productSlide img {
	border-radius: 10px;
	overflow: hidden;
}
.productMainImage img {
	border-radius: 10px;
}
.productGalleryTitle, .productRightTitle {
	color: #504E64;
	font-size: 24px;
	font-weight: bold;
	padding: 31px 0;
}
.productSpecs li > div {
	flex: 1;
}
.productSpecsValue {
	font-weight: 700;
}
.productSpecs > li > div {
	height: 20px;
}
.productTop .swiper-button-prev, .productTop .swiper-button-next {
	position: absolute;
	width: 38px;
	height: 38px;
	top: 90%;
	margin: -17px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	background-color: #324bff;
	border-radius: 50%;
}
.productTop .swiper-button-prev {
	left: 0;
}
.productTop .swiper-button-next {
	right: 0;
}
.productGalleryTitle {
	margin: 0;
	padding: 0;
}
.productPriceValue {
	font-size: 24px;
	font-weight: bold;
	color: #324BFF;
	margin-left: 8px;
}
.productPrice {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.productPriceButton {
	border: 0 none;
	background: none;
	font-size: 16px;
	border-bottom: 1px dashed #324BFF;
	color: #324BFF;
}
.productPriceButtonBack {
	border: 1px solid #324BFF;
	background-color: #fff;
	padding: 10px 35px;
	border-radius: 5px;
	color: #324BFF;
	text-decoration: dashed;
}
.productTabButtons > button {
	color: #504E64;
	font-size: 20px;
	font-weight: normal;
}

.icon-arrow-next, .icon-arrow-prev {
	background: url('/local/templates/mirpan2/assets/images/icon-arrow-next.svg') no-repeat;
	background-size: 70% 70%;
	background-position: center center;
}
.icon-arrow-prev {
	transform: scaleX(-1);
}