/**
 * Стили карточки товара (view41.inc.php, компонент 41).
 * Вынесено из stylesheet.css, custom.css и responsive.css.
 */

 .main-content {
	background-color: #F7F8FA;
 }
 
 .top-row {
	display: none;
 }
/* контейнер страницы товара (шаблон boom/9/Header.html) */
.container--product-page {
	box-sizing: border-box;
	max-width: 1336px !important;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

@media only screen and (max-width: 768px) {
	.container--product-page {
		padding-left: 0;
		padding-right: 0;
	}
	#content {
		padding-right: 0;
		padding-left: 0;
	}
}

.product-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 851px) 413px;
	column-gap: 24px;
	row-gap: 12px;
	align-items: start;
	width: 100%;
}

.product-gallery,
.product-about--desktop,
.product-faq {
	grid-column: 1;
	min-width: 0;
	max-width: 851px;
}

.product-page__info {
	grid-column: 2;
	grid-row: 1 / -1;
	width: 413px;
	max-width: 100%;
	min-width: 0;
	align-self: start;
}

.product-about--mobile {
	display: none;
}

.product-about {
	box-sizing: border-box;
	width: 100%;
	padding: 16px;
	border-radius: 20px;
	background-color: #fff;
}

.product-about__title {
	margin: 0;
	font-family: Gilroy, sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 24px;
	text-transform: none;
	letter-spacing: normal;
}

.product-about__text {
	margin: 12px 0 0;
	font-family: Gilroy, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.product-about__text-part + .product-about__text-part {
	margin-top: 16px;
}

.product-faq__list {
	margin-top: 12px;
}

.product-faq__item + .product-faq__item {
	margin-top: 8px;
}

.product-faq__trigger {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #EDEEF2;
	border-radius: 12px;
	background-color: #fff;
	cursor: pointer;
	text-align: left;
	overflow: hidden;
	transition: border-color 0.2s;
}

.product-faq__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	padding: 0 16px;
}

.product-faq__question {
	flex: 1 1 auto;
	font-family: Gilroy, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: inherit;
}

.product-faq__icon {
	display: block;
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	margin-left: 12px;
	border-left: 2px solid #A1A7AD;
	border-bottom: 2px solid #A1A7AD;
	border-radius: 1px;
	transform: rotate(-45deg);
	transition: transform 0.25s ease;
}

.product-faq__item.is-open .product-faq__icon {
	transform: rotate(135deg);
}

.product-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.product-faq__item.is-open .product-faq__panel {
	grid-template-rows: 1fr;
}

.product-faq__panel-inner {
	overflow: hidden;
	min-height: 0;
}

.product-faq__answer {
	padding: 8px 16px 16px;
	font-family: Gilroy, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.product-faq__answer p {
	margin: 0 0 8px;
}

.product-faq__answer p:last-child {
	margin-bottom: 0;
}

.product-faq__answer a {
	color: inherit;
	text-decoration: underline;
}

.product-faq__steps {
	margin: 0 0 8px;
	padding-left: 20px;
}

.product-faq__steps li + li {
	margin-top: 4px;
}

.product-faq__note {
	font-size: 14px;
	line-height: 20px;
}

.product-page__tabs {
	width: 100%;
}

/* галерея Swiper */
.product-gallery {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	box-sizing: border-box;
	width: 100%;
	padding: 16px;
	background-color: #fff;
	border-radius: 16px;
	max-width: 851px;
	max-height: 464px;
}


.product-gallery__thumbs-wrap {
	position: relative;
	flex: 0 0 88px;
	width: 88px;
	height: 432px;
	overflow: visible;
}

.product-gallery__thumbs-wrap .product-gallery__thumbs {
	flex: none;
	width: 100%;
	height: 100%;
}

.product-gallery__thumbs-wrap--nav .product-gallery__thumbs {
	box-sizing: border-box;
	/*padding-top: 32px;*/
	/*padding-bottom: 32px;*/
}

.product-gallery__thumbs {
	flex: 0 0 88px;
	width: 88px;
	height: 432px;
	margin: 0;
	overflow: hidden;
}

.product-gallery__thumbs-nav {
	position: absolute;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background-color: #F7F8FA;
	cursor: pointer;
	transition: opacity 0.2s, background-color 0.25s ease;
}

.product-gallery__thumbs-nav--prev:hover,
.product-gallery__thumbs-nav--next:hover {
	background-color: #EDEEF2;
}

.product-gallery__thumbs-nav--prev {
	top: 0;
	box-shadow: 0 -3px 0 0 #fff, 0 8px 0 0 #fff;
}

.product-gallery__thumbs-nav--next {
	bottom: 0;
	box-shadow: 0 3px 0 0 #fff, 0 -8px 0 0 #fff;
}

.product-gallery__thumbs-nav.swiper-button-disabled {
	opacity: 0;
	cursor: default;
	pointer-events: none;
}

.product-gallery__thumbs-nav-icon {
	display: block;
	width: 8px;
	height: 8px;
	box-sizing: border-box;
	border-left: 2px solid #A1A7AD;
	border-bottom: 2px solid #A1A7AD;
	border-radius: 1px;
}

.product-gallery__thumbs-nav--prev .product-gallery__thumbs-nav-icon {
	transform: rotate(135deg);
	margin-top: 3px;
}

.product-gallery__thumbs-nav--next .product-gallery__thumbs-nav-icon {
	transform: rotate(-45deg);
	margin-bottom: 3px;
}

.product-gallery__thumbs--hidden {
	display: none;
}

.product-gallery__thumbs .swiper-slide {
	width: 88px;
	height: 88px;
	flex-shrink: 0;
}

.product-gallery__thumb {
	box-sizing: border-box;
	width: 88px;
	height: 88px;
	padding: 2px;
	border: 2px solid #F2F3F7;
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.2s, border-width 0.2s;
}

.product-gallery__thumbs .swiper-slide-thumb-active .product-gallery__thumb {
	border: 2px solid #FF0032;
}

.product-gallery__thumb img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
}

.product-gallery__thumb-video {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	font-family: 'ProximaNovaRegular', Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #36283a;
	text-transform: uppercase;
	background-color: #F2F3F7;
	border-radius: 8px;
}

.product-gallery__main-wrap {
	flex: 1;
	min-width: 0;
}

.product-gallery__pagination {
	display: none;
}

.product-gallery__main {
	/* flex: 0 0 715px; */
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 432px;
	box-sizing: border-box;
	padding: 0 24px;
	overflow: hidden;
}

.product-gallery__main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 432px;
	box-sizing: border-box;
}

.product-gallery__zoom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.product-gallery__main .swiper-zoom-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.product-gallery__zoom img,
.product-gallery__main .swiper-zoom-container img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	cursor: zoom-in;
}

.product-gallery__main .swiper-slide-zoomed .swiper-zoom-container img {
	cursor: grab;
}

.product-gallery__main .swiper-slide-zoomed .swiper-zoom-container:active img {
	cursor: grabbing;
}

.product-gallery__video {
	width: 100%;
	height: 100%;
}

.product-gallery__video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* schema.org — скрытые поля */
.micro-name,
.micro-availability,
.micro-price {
	display: none;
}

/* блок характеристик справа */
.right-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background-color: transparent;
	padding: 0;
	min-height: auto;
	position: relative;
	font-family: Gilroy, sans-serif;
	color: inherit;
}

.product-info-card,
.product-buy-card,
.product-delivery-card {
	box-sizing: border-box;
	padding: 16px;
	background-color: #fff;
	border-radius: 20px;
}

.product-info-card__title {
	margin: 0;
	font-family: Gilroy, sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 32px;
	color: inherit;
	text-transform: none;
	letter-spacing: normal;
}

.product-info-card__code {
	margin: 4px 0 0;
	font-family: Gilroy, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: inherit;
}

.product-info-card__code span {
	font-weight: inherit;
	color: inherit;
}

.product-buy-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.product-buy-card__price-col {
	flex: 1 1 auto;
	min-width: 0;
}

.product-buy-card__price {
	font-family: Gilroy, sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 32px;
	color: inherit;
}

.product-buy-card__price-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

.product-buy-card__price-old {
	font-family: Gilroy, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #A1A7AD;
	text-decoration: line-through;
}

.product-buy-card__discount {
	font-family: Gilroy, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #00A8AE;
}

.product-buy-card__stock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	height: 28px;
	padding: 0 12px;
	border-radius: 8px;
	background-color: #F7F8FA;
	font-family: Gilroy, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #626C77;
	white-space: nowrap;
}

.product-buy-card__stock--out {
	color: #A1A7AD;
}

.product-buy-card__actions {
	margin-top: 20px;
}

.product-buy-card__qty {
	display: none !important;
}

.product-buy-card__buttons {
	display: flex;
	gap: 12px;
}

.product-buy-card__btn {
	box-sizing: border-box;
	flex: 1 1 0;
	width: calc(50% - 6px);
	min-width: 0;
	height: 48px;
	padding: 0 12px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.product-buy-card__btn:hover,
.product-buy-card__btn:focus {
	outline: none;
}

.product-buy-card__btn--one-click {
	background-color: #F7F8FA;
	font-family: Gilroy, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: inherit;
	transition: opacity 0.25s ease;
}

.product-buy-card__btn--one-click:hover,
.product-buy-card__btn--one-click:focus {
	opacity: 0.8;
}

.product-buy-card__btn--cart {
	background-color: #FF0032;
	font-family: Gilroy, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	transition: opacity 0.25s ease;
}

.product-buy-card__btn--cart:hover,
.product-buy-card__btn--cart:focus {
	opacity: 0.8;
}

.product-delivery-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.product-delivery-card__title {
	margin: 0;
	font-family: Gilroy, sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: inherit;
	text-transform: none;
	letter-spacing: normal;
}

.product-delivery-card__city {
	flex: 0 0 auto;
	font-family: Gilroy, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #0089FF;
	text-decoration: none;
}

.product-delivery-card__city:hover,
.product-delivery-card__city:focus {
	color: #0089FF;
	text-decoration: underline;
}

.product-delivery-card__options {
	margin-top: 16px;
}

.product-delivery-card__row {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: Gilroy, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

.product-delivery-card__row + .product-delivery-card__row {
	margin-top: 4px;
}

.product-delivery-card__label,
.product-delivery-card__value {
	flex: 0 0 auto;
}

.product-delivery-card__label {
	color: #626C77;
}

.product-delivery-card__divider {
	flex: 1 1 auto;
	min-width: 8px;
	height: 1px;
	align-self: flex-end;
	margin-bottom: 4px;
	background-image: repeating-linear-gradient(to right, #EDEEF2 0, #EDEEF2 5px, transparent 5px, transparent 10px);
	background-size: 10px 1px;
	background-repeat: repeat-x;
	background-position: left bottom;
}

.product-delivery-card__value {
	color: inherit;
}

.right-info ul {
	font-family: Gilroy, sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: inherit;
}
.right-info .manufacturers,
.right-info .gold {
	font-family: 'ProximaNovaLight', Arial, Helvetica, sans-serif;
	color: #E3000F;
}
.right-info .stock {
	text-transform: uppercase;
	color: #36283a;
	line-height: 38px;
}
.right-info .stock i {
	color: #1fe41a;
	margin-right: 6px;
	font-size: 7px;
	position: relative;
	top: -2px;
}
.right-info .stock.minus i {
	color: #ed0a0a;
}

/* блок цены и покупки */
#product .checkbox,
#product .radio {
	margin-top: 0;
}
#product h2.price {
	font-family: Gilroy, sans-serif;
	font-size: 28px;
	color: inherit;
	letter-spacing: 0;
}
#product .price-old {
	font-family: Gilroy, sans-serif;
	font-size: 16px;
	color: #A1A7AD;
	letter-spacing: 0;
	line-height: 20px;
	text-decoration: line-through;
	margin-left: 0;
}
#product .price-ul {
	background-color: transparent;
	padding: 0;
}
#product .price-ul .row {
	margin-bottom: 10px;
}
#product .found-cheaper a {
	font-family: 'ProximaNovaLight', Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #E3000F;
	text-transform: uppercase;
	text-decoration: underline;
	cursor: pointer;
}
#product .found-cheaper a:hover {
	text-decoration: none;
}
#product .number {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0 42px 0 0;
}
#product .frame-change-count {
	width: 110px;
}
#product .btn-plus {
	float: right;
	position: relative;
	left: 24px;
}
#product .btn-plus button,
#product .btn-minus button {
	width: 44px;
	height: 54px;
	cursor: pointer;
	display: inline-block;
	border: 0;
	outline: none;
	transition-delay: 0;
	transition-duration: .4s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0, 0, 1, 1);
	background-color: #E3000F;
}
#product .btn-plus button {
	line-height: 5px;
	text-align: center;
}
#product .btn-minus {
	float: left;
}
#product .btn-minus button {
	text-align: center;
	line-height: 0;
}
#product .btn-plus button span,
#product .btn-minus button span {
	display: inline-block;
	font-size: 18px;
	color: #fff;
}
#product input.plus-minus {
	border: 0;
	background: #fafafa;
	width: 46px;
	height: 54px;
	position: absolute;
	top: 0;
	outline: none;
	font-size: 18px;
	text-align: center;
	border-radius: 0;
	padding: 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	color: #E3000F;
}
#product .btn-plus button:hover,
#product .btn-minus button:hover {
	transition-delay: 0;
	transition-duration: .2s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0, 0, 1, 1);
	background-color: #ffd205;
}
#product #button-cart:not(.product-buy-card__btn) {
	border: none;
	background-color: #E3000F;
	color: #ffffff;
	height: 54px;
	line-height: 36px;
	font-weight: normal;
	font-family: 'ProximaNovaLight', Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 0;
	margin: 0 18px 0 0;
}
#product #button-cart:not(.product-buy-card__btn) i {
	position: relative;
	top: -1px;
	left: -4px;
	font-size: 15px;
}
#product #button-cart:not(.product-buy-card__btn):hover {
	background-color: #ffd205;
	color: #ffffff;
	text-decoration: none;
	transition-delay: 0;
	transition-duration: .2s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0, 0, 1, 1);
}
#product .buy-in-click {
	text-align: center;
	position: relative;
	text-transform: uppercase;
	top: 10px;
}
#product .buy-in-click i,
#product .buy-in-click a {
	color: #E3000F;
}
#product .buy-in-click a {
	text-decoration: underline;
	font-family: 'ProximaNovaRegular', Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#product .buy-in-click a:hover {
	text-decoration: none;
	cursor: pointer;
}

/* преимущества — временно скрыто
#product-advantages.advantages,
#product .advantages {
	background-color: #fafafa;
	padding: 15px 10px;
	margin: 0;
}
#product-advantages.advantages .advantages-item:first-child,
#product-advantages.advantages .advantages-item:nth-child(2),
#product .advantages .advantages-item:first-child,
#product .advantages .advantages-item:nth-child(2) {
	margin-bottom: 24px;
}
#product-advantages.advantages i,
#product .advantages i {
	float: left;
	font-size: 40px;
	color: #E3000F;
}
#product-advantages.advantages i + p,
#product .advantages i + p {
	float: left;
	width: 70%;
	margin-left: 12px;
	margin-bottom: 0;
	color: #0E080F;
}
*/

/* вкладки описания */
.tabs-row,
.product-page__tabs {
	margin: 50px 0 0;
}
.tabs-row > div {
	padding-right: 0;
}
.tabs-row .nav-tabs {
	margin-bottom: 0;
}
.tabs-row .nav-tabs,
.tabs-row .nav-tabs > li.active > a,
.tabs-row .nav-tabs > li.active > a:focus,
.tabs-row .nav-tabs > li.active > a:hover,
.tabs-row .nav-tabs > li > a:hover,
.tabs-row .nav-tabs > li > a {
	border: 0;
}
.tabs-row .nav > li > a:focus,
.tabs-row .nav > li > a:hover {
	background-color: transparent;
}
.tabs-row .nav-tabs > li.active > a,
.tabs-row .nav-tabs > li.active > a:focus,
.tabs-row .nav-tabs > li.active > a:hover {
	background-color: #E3000F;
	border-radius: 0;
	color: #FFFFFF;
}
.tabs-row .nav-tabs > li > a {
	text-transform: uppercase;
	color: #E3000F;
	text-decoration: underline;
	font-family: 'ProximaNovaRegular', Arial, Helvetica, sans-serif;
	font-size: 14px;
	letter-spacing: 1px;
}
.tabs-row .nav-tabs > li > a:hover,
.tabs-row .nav-tabs > li.active > a {
	text-decoration: none;
}
.tabs-row .tab-content {
	background-color: #f6f6f6;
	padding: 50px;
	font-family: 'ProximaNovaLight', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
}
#tab-description p {
	color: #0E080F;
}

#product .text-danger {
	color: #fff;
	background: #d8252d;
	width: auto;
	padding: 4px;
	margin: 10px 0;
	width: 60%;
}

/* разметка с боковой колонкой */
#column-left + #content #product .btn-minus button,
#column-left + #content #product .btn-plus button {
	width: 28px;
}
#column-left + #content #product .btn-plus {
	left: -8px;
}
#column-left + #content #product .number {
	margin: 0 4px 0 0;
}
#column-left + #content #product #button-cart:not(.product-buy-card__btn) {
	margin: 0 12px 0 0;
}
/* #column-left + #content #product .advantages i {
	font-size: 36px;
} */

/* --- responsive --- */

@media only screen and (max-width: 1199px) {
	#column-left + #content #product h2.price {
		font-size: 18px;
	}
	#column-left + #content #product .price-old {
		font-size: 16px;
		line-height: 18px;
	}
	#column-left + #content #product #button-cart:not(.product-buy-card__btn) {
		padding: 10px 6px;
		margin: 0 1px 0 0;
	}
	#column-left + #content #product .number {
		margin: 0 -6px 0 0;
	}
	/* #column-left + #content #product .advantages .advantages-item {
		width: 100%;
		margin-bottom: 12px;
	} */
}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
	#product .number {
		margin: 0 26px 0 0;
	}
	#product #button-cart:not(.product-buy-card__btn) {
		margin: 0 1px 0 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#product .number {
		margin: 0;
	}
	#product #button-cart:not(.product-buy-card__btn) {
		margin: 0 8px 0 0;
	}
	#product .btn-minus button,
	#product .btn-plus button {
		width: 34px;
	}
	#product .btn-plus {
		left: -10px;
	}
	#product input.plus-minus {
		width: 32px;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
	#product .number {
		margin: 0;
		margin-right: -8px;
	}
	#product #button-cart:not(.product-buy-card__btn) {
		margin: 0 3px 0 0;
		font-size: 14px;
		padding: 10px 36px 10px 40px;
	}
	#product h2.price {
		font-size: 16px;
	}
	#product .price-old {
		font-size: 14px;
		line-height: 16px;
	}
}

@media only screen and (max-width: 992px) {
	#product #button-cart:not(.product-buy-card__btn) {
		font-size: 14px;
		padding: 10px 4px 10px 8px;
	}
	#product .price-old {
		line-height: 22px;
	}
	#product h2.price {
		font-size: 22px;
	}
	/* #product .advantages .advantages-item {
		margin-bottom: 20px;
	} */
	#column-left + #content #product h2.price {
		font-size: 14px;
	}
	#column-left + #content #product .price-old {
		font-size: 13px;
		line-height: 15px;
	}
	#column-left + #content #product .found-cheaper a {
		font-size: 11px;
	}
	#column-left + #content #product .price-ul .row {
		margin-bottom: 0;
	}
	#column-left + #content #product .btn-minus button,
	#column-left + #content #product .btn-plus button {
		width: 20px;
	}
	#column-left + #content #product .btn-minus button i,
	#column-left + #content #product .btn-plus button i {
		font-size: 12px;
	}
	#column-left + #content #product .btn-plus {
		left: -24px;
	}
	#column-left + #content #product .number {
		margin: 0 -23px 0 0;
	}
	/* #product .advantages i {
		font-size: 24px;
	}
	#product .advantages i + p {
		width: 75%;
	} */
	#product h2.price {
		font-size: 20px;
	}
	#product .price-old {
		font-size: 16px;
		line-height: 20px;
	}
	.product-page__layout {
		grid-template-columns: minmax(0, 1fr) min(323px, 100%);
	}
	.product-page__info {
		width: 100%;
		max-width: 323px;
	}

	/* overflow на планшете (769–992): row, grid, вложенный carousel */
	.container--product-page > .row {
		margin-left: 0;
		margin-right: 0;
	}

	.container--product-page > .row > #content.col-sm-12 {
		padding-left: 0;
		padding-right: 0;
	}

	.container--product-page,
	.product-page,
	.product-page__layout {
		max-width: 100%;
		min-width: 0;
	}

	.product-gallery,
	.product-about--desktop,
	.product-faq {
		max-width: 100%;
	}

	.product-gallery {
		overflow-x: clip;
		min-width: 0;
	}

	.product-gallery__main-wrap,
	.product-gallery__main {
		overflow: hidden;
		max-width: 100%;
	}

	.product-gallery__main .swiper-slide {
		max-width: 100%;
		box-sizing: border-box;
	}

	.product-gallery__zoom img,
	.product-gallery__main .swiper-zoom-container img {
		max-width: 100% !important;
		width: auto !important;
		height: auto !important;
	}

	.container--product-page > .box-4in1 {
		max-width: 100%;
		overflow-x: clip;
	}

	.container--product-page > .box-4in1 > .container {
		width: 100% !important;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		box-sizing: border-box;
	}

	.container--product-page > .box-4in1 > .container > .row {
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (max-width: 767px) {
	/* #product .advantages .advantages-item {
		margin-bottom: 20px;
		min-height: 40px;
	} */
}

@media only screen and (max-width: 768px) {
	.container--product-page > .row {
		margin-left: 0;
		margin-right: 0;
	}

	.container--product-page,
	.product-page,
	.product-page__layout {
		max-width: 100%;
		min-width: 0;
	}

	#product #button-cart:not(.product-buy-card__btn) {
		font-size: 16px;
		padding: 10px 39px 10px 43px;
		margin-right: 0;
	}
	.product-page__layout {
		grid-template-columns: 1fr;
		column-gap: 0;
	}
	.product-gallery,
	.product-about--desktop,
	.product-faq,
	.product-page__info {
		grid-column: 1;
		grid-row: auto;
		max-width: none;
		width: 100%;
	}
	.product-gallery {
		order: 1;
	}
	.product-page__info {
		order: 2;
	}
	.product-faq {
		order: 3;
	}
	.product-about--desktop {
		display: none;
	}
	.product-about--mobile {
		display: block;
	}
	.product-buy-card {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 200;
		width: auto;
		max-width: none;
		border-radius: 0;
		box-sizing: border-box;
		box-shadow: 0px -4px 28px 4px #7E7F821A;
	}
	#back-top {
		bottom: 140px;
	}
	.product-gallery {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		max-height: fit-content;
		overflow-x: hidden;
	}
	.product-gallery__thumbs-wrap {
		display: none !important;
	}
	.product-gallery__main-wrap {
		width: 100%;
	}
	.product-gallery__main {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 280px;
		padding: 0 12px;
		overflow: hidden;
	}
	.product-gallery__main .swiper-slide {
		width: 100% !important;
		height: auto;
		min-height: 280px;
	}
	.product-gallery__zoom,
	.product-gallery__zoom img {
		max-width: 100%;
	}
	.product-gallery__pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		position: static;
		width: 100%;
		margin-top: 4px;
	}
	.product-gallery__pagination .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
		margin: 0 2px !important;
		border-radius: 50%;
		background-color: #EDEEF2;
		opacity: 1;
		transition: width 0.2s, border-radius 0.2s, background-color 0.2s;
	}
	.product-gallery__pagination .swiper-pagination-bullet-active {
		width: 16px;
		height: 6px;
		border-radius: 8px;
		background-color: #C8C8CC;
		opacity: 1;
	}
	.tabs-row,
	.product-page__tabs {
		margin: 32px 0 0;
	}

	.right-info, 
	.product-page__layout {
		gap: 8px;
	}

	.product-info-card__title {
		font-family: Gilroy, sans-serif;
		font-weight: 700;
		font-size: 22px;
		line-height: 24px;
	}

	.product-about__title {
		font-family: Gilroy, sans-serif;
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
	}

	.product-about__text {
		font-family: Gilroy, sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
	}
}

@media (min-width: 1200px) {
	.right-info {
		min-height: auto;
	}
}

@media (min-width: 1600px) {
	.product-info-card__title,
	.product-buy-card__price {
		font-size: 28px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 360px) {
	#product #button-cart:not(.product-buy-card__btn) {
		font-size: 16px;
		padding: 10px 32px 10px 35px;
		margin-right: 0;
	}
	#product .number {
		margin: 0 40px 0 0;
	}
}

@media only screen and (max-width: 320px) {
	#product #button-cart:not(.product-buy-card__btn) {
		padding: 10px 11px 10px 16px;
	}
}