.product-main {
	display: flex;
	align-items: flex-start;
	gap: 36px;
	flex-flow: row wrap;
	margin-bottom: 64px;
}

.product__action {
	width: 287px;
	padding: 16px;
	border-radius: 8px;
	background: var(--white, rgba(255, 255, 255, 1));
	position: sticky;
	top: 0;
}

.product__left {
	flex: 1;
	max-width: calc(100% - 287px - 36px);
}

.product__nav {
	border-radius: 8px 8px 0px 0px;
	background: rgba(255, 255, 255, 1);
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	position: sticky;
	z-index: 50;
	top: 0;
	overflow-x: auto;
}

.product__nav button {
	color: rgba(0, 11, 36, 1);
	font-weight: 600;
	line-height: 40px;
	padding: 0 20px;
	transition: color .3s ease-in-out;
	background: none;
	border: none;
}

.product__nav button:hover {
	color: var(--branded, rgba(100, 141, 229, 1));
}

.product__main {
	display: flex;
	border-radius: 0px 0px 8px 8px;
	background: rgba(255, 255, 255, 1);
	gap: 36px;
	margin-bottom: 64px;
	padding: 20px 36px 20px 20px;
}

.product__main > div {
	flex: 1;
}

.product__images {
	max-width: 432px;
	position: relative;
}

.product__images .statuses {
	position: absolute;
	display: flex;
	flex-flow:row wrap;
	gap: 4px;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 2;
}

.product__images-nav {
	padding: 0 40px;
	position: relative;
}

.swiper-button-next, .swiper-button-prev {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: url("../image/slider-arrow.svg") no-repeat center / 28px 28px, var(--bg, rgba(243, 246, 253, 1));
	margin: 0;
	top: 21px;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	left: 0;
	transform: rotate(180deg);
}

.product__images-nav .swiper-slide {
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid transparent;
	transition: border-color .3s ease-in-out;
}

.product__images-nav .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.product__images-nav .swiper-slide-thumb-active {
	border-color: var(--blue, rgba(195, 214, 255, 1));
}

.product__content-top {
	display: flex;
	align-items: center;
	gap: 0 12px;
	margin-bottom: 36px;
}

.product__content .product-thumb__status {
	margin-bottom: 0;
}

.product__content-model {
	color: var(--inactive, rgba(148, 153, 166, 1));
	font-size: 12px;
}

.product__content .product__action {
	display: none;
	width: 100%;
	position: static;
}

.product__content-chars-wrap {
	margin-bottom: 20px;
}

.product__content-chars__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.product__content-chars__top > span {
	color: var(--black, rgba(25, 35, 58, 1));
	font-size: 17px;
	font-weight: 600;
	line-height: 23px;
}

.product__content-chars-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.product__content-chars-label,
.product__content-chars-value {
	flex: 1;
}

.product__content-chars-label {
	letter-spacing: 0.1px;
	color: var(--black, rgba(25, 35, 58, 1));
}

.product__content-chars-value,
.product__content-chars-value a {
	color: var(--black, rgba(25, 35, 58, 1));
	font-weight: 600;
}

.product__content-chars-value a {
	text-decoration: underline;
}

.product__content-chars-item + .product__content-chars-item {
	margin-top: 8px;
}

.product__content-text .item {
	display: flex;
	align-items: flex-start;
	gap: 0 12px;
	padding: 12px 0;
}

.product__content-text .item:not(:first-child) {
	border-top: 1px solid var(--allocation, rgba(216, 226, 248, 1));
}

.product__content-text .item span {
	flex: 1;
}

.product__right-top {
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0 12px;
}

.product__buttons {
	display: flex;
	align-items: center;
	gap: 0 12px;
}

.product__buttons button {
	position: static;
}

.product-page__price {
	font-size: 24px;
}

.product-page__price.price-text {
	font-size: 12px;
	height: 100%;
	display: flex;
	align-items: center;
	align-self: center;
}

.product-page__price .price-old {
	color: var(--inactive, rgba(148, 153, 166, 1));
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
}

.product-page__price .price-old span:first-child {
	text-decoration-line: line-through;
}

.product-page__price .price-old span.discount {
	text-decoration: none;
	color: var(--white, rgba(255, 255, 255, 1));
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.03px;
	border-radius: 100px;
	background: var(--red, rgba(237, 27, 35, 1));
	padding: 0 4px;
}

.product-page__cart {
	margin-bottom: 16px;
}

.product-page__add-to-cart {
	width: 100%;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	line-height: 52px;
	padding: 0 15px;
	font-size: 17px;
	font-weight: 500;
}

.product__right-text > p {
	margin-bottom: 10px;
}

.product__right-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.product__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
	margin-bottom: 20px;
}

.product__title span {
	color: var(--inactive);
}

.product-info-block:not(:last-child) {
	margin-bottom: 64px;
}

.product__characteristics-chars {
	transition: height .3s ease-in-out;
}

.product-shorted-block {
	overflow: hidden;
	transition: height .3s ease-in-out;
}

.product-shorted-block + .product__block-more {
	margin-top: 24px;
}

.product__characteristics-item {
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px 8px 12px;
}

.product__characteristics-item:nth-child(2n - 1) {
	background: var(--light, rgba(233, 239, 251, 1));
}

.product__characteristics-item:nth-child(n + 6) {
	display: none;
}

.product-shorted-block.full .product__characteristics-item:nth-child(n + 6) {
	display: flex;
}

.product__characteristics-label,
.product__characteristics-value {
	flex: 1;
}

.product__characteristics-value a,
.product__characteristics-value {
	font-weight: 600;
	color: var(--black);
}

.product__characteristics-value a {
	text-decoration: underline;
}

.product__block-more {
	display: flex;
	align-items: center;
	justify-content: center;
}

.block_more {
	color: var(--branded, rgba(100, 141, 229, 1));
	font-size: 17px;
	font-weight: 600;
	line-height: 23px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
}

.block_more img {
	transform: rotate(90deg);
	transition: transform .3s ease-in-out;
}

.product__block-content {
	font-size: 17px;
	max-height: 624px;
	overflow: hidden;
}

.product__block-content.full {
	max-height: 100%;
}

.product__block-content img {
	display: block;
	width: 100% !important;
	border-radius: 16px;
	max-width: 100%;
}

.product__block-content :is(h1,h2,h3,h4,h5,h6) {
	font-size: 21px;
}

.product__faq {
	margin-bottom: 0;
}

.product__faq.guarantee__faq .panel-title a:before {
	content: none;
}

.product__block-faq .panel-default:nth-child(n + 5) {
	display: none;
}
.product__block-faq.full .product__block-faq .panel-default:nth-child(n + 5) {
	display: block;
}

#related_products {
	margin-bottom: 64px;
}

.related_products {
	margin-bottom: 0;
}

.product__block-complect {
	display: flex;
	align-items: center;
	gap: 0 32px;
}

.complect__left,
.complect__right {
	flex: 1;
}

.complect__right {
	font-size: 17px;
	line-height: 23px;
}

.product__fixed {
	display: none;
}

@media (max-width: 1199px) {
	.product__action {
		display: none;
	}

	.product__left {
		max-width: unset;
	}

	.product__content .product__action {
		display: block;
		padding: 0;
		margin-bottom: 20px;
	}
}

@media (max-width: 650px) {

	.product__main {
		padding: 16px;
		flex-direction: column;
	}

	.product__images {
		width: 100%;
	}

	.product__left {
		flex: unset;
		width: 100%;
	}

	.product__images-main img {
		width: 100%;
		height: auto;
	}

	.product__nav {
		top: 76px;
	}

	.product__nav button {
		font-size: 14px;
		padding: 0 8px;
	}

	.swiper-button-next, .swiper-button-prev {
		top: 8px;
	}

	.product__images-main {
		margin-bottom: 20px;
	}


	.product__content-chars__top > .url,
	.product__content-chars__top > span {
		font-size: 14px;
	}

	.product__title {
		font-size: 20px;
	}

	.product__block-content {
		font-size: 16px;
	}

	.product__block-video iframe {
		height: 194px;
	}

	.product__block-complect {
		flex-direction: column;
		gap: 32px;
	}

	.complect__left, .complect__right {
		flex: unset;
		width: 100%;
	}

	.complect__left img {
		width: 100%;
	}

	#related div.heading {
		padding-right: 40px;
		line-height: 1.3;
	}

	.product-info-block:not(:last-child) {
		margin-bottom: 52px;
	}

	.product__fixed {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		bottom: 58px;
		z-index: 897;
		width: 100%;
		background: var(--white, rgba(255, 255, 255, 1));
		padding: 8px 15px;
		gap: 80px;
	}

	.fly-block {
		bottom: 144px;
	}

	.product__fixed .product-page__add-to-cart {
		font-size: 15px;
	}
 }
