.product-single {
	display: flex;
	align-items: stretch;
	gap: 40px;
}

.product-gallery {
	position: relative;
	flex: 1.4 1 0;
	max-width: 500px;
	min-width: 280px;
	aspect-ratio: 1 / 1;
	align-self: flex-start;
	background: #fff;
	border-radius: 20px;
	padding: 20px 20px 18px;
	display: flex;
	flex-direction: column;
}

.product-swiper {
	width: 100%;
	flex: 1;
	min-height: 0;
}
.product-gallery__fav {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 8px;
	border: none;
	border-radius: 10px;
	background: rgba(239, 239, 239, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.product-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-swiper img {
	max-width: 92%;
	max-height: 92%;
	object-fit: contain;
}

.product-gallery__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
	padding: 0 2px;
}

.product-gallery__arrow {
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}
.product-gallery__arrow--next svg {
	transform: rotate(180deg);
}

.product-gallery__arrow--next svg path,
.product-gallery__arrow--prev svg path {
	fill: rgba(144, 144, 144);
}

.product-gallery__arrow--next:hover svg path,
.product-gallery__arrow--prev:hover svg path {
	fill: rgba(33, 33, 33, 1);
}

.related-slider__arrow svg path {
	fill: rgba(144, 144, 144);
}
.related-slider__arrow svg path:hover {
	fill: rgba(33, 33, 33, 1);
}

.product-gallery__pagination {
	position: static !important;
	display: flex;
	align-items: center;
	gap: 6px;
	width: auto !important;
}
.product-gallery__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e2e2e2;
	opacity: 1;
	margin: 0 !important;
	transition:
		width 0.2s ease,
		border-radius 0.2s ease;
}
.product-gallery__pagination .swiper-pagination-bullet-active {
	width: 20px;
	border-radius: 4px;
	background: rgba(255, 179, 0, 1);
}

.product-specs {
	flex: 1;
	background: transparent;
	border-radius: 16px;
	padding-right: 40px;
}
.product-specs__title {
	margin-bottom: 10px;
}
.product-specs .pcard__badge--hit {
	margin-bottom: 6px;
}

.product-specs__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: #1b5fe0;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 14px;
}

.product-specs__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-specs__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: var(--text-small);
}
.product-specs__row:first-child {
	padding-top: 0;
}

.product-specs__label {
	color: rgba(112, 112, 112, 1);
	white-space: nowrap;
}

.product-specs__value {
	color: rgba(0, 0, 0, 1);
	font-weight: 500;
	text-align: right;
}

.product-specs__row--multiline {
	align-items: flex-start;
}
.product-specs__row--multiline .product-specs__value {
	max-width: 62%;
	line-height: 1.5;
}

.product-specs__more {
	display: inline-block;
	font-weight: 500;
	font-style: normal;
	font-size: var(--text-medium);
	line-height: 150%;
	letter-spacing: 0;
	text-decoration-line: none;
	text-decoration-style: solid;
	text-underline-offset: 0;
	text-decoration-thickness: auto;
	color: rgba(45, 45, 45, 1);
	border-bottom: 1px solid;
}
.product-specs .product-specs__more {
	margin-top: 10px;
}

.product-specs .product-specs__more:hover,
.breadcrumbs__link:hover {
	color: var(--accent);
}

.product-buy {
	flex: 1 1 0;
	max-width: 436px;
	min-width: 260px;
	align-self: flex-start;
	flex-shrink: 0;
	background: rgba(33, 33, 33, 1);
	border-radius: 16px;
	padding: 40px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-buy__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 20px;
	margin-bottom: 12px;
	border: 1px solid rgba(45, 45, 45, 1);
	background: rgba(255, 255, 255, 0.02);
	border-radius: 20px;
}

.product-buy__label {
	font-weight: 500;
	font-style: normal;
	font-size: var(--title-small);
	letter-spacing: 0;
	color: rgba(255, 255, 255, 1);
}

.product-buy__price {
	font-weight: 600;
	font-style: normal;
	font-size: var(--title-medium);
	letter-spacing: 0;
	color: rgba(255, 179, 0, 1);
	white-space: nowrap;
}
.product-buy__currency {
	color: #8a94a6;
	font-weight: 400;
	font-size: var(--text-medium);
}

.product-buy__stock {
	font-weight: 500;
	font-style: normal;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(29, 123, 0, 1);
}

.product-buy .product-buy__stock {
	margin: 5px 0 20px 0;
	text-align: center;
}

.product-buy__row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.product-buy__stepper {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}
.description__text {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 40px;
}
.product-buy__step,
.product-buy__qty {
	width: 30px;
	height: 38px;
	border: none;
	border-radius: 5px;
	background: rgba(45, 45, 45, 1);
	color: rgb(255, 255, 255);
	font-size: var(--text-small);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.product-buy__step {
	font-size: var(--text-medium);
}
.product-buy__qty {
	font-weight: 600;
	cursor: default;
	width: 53px;
}

.product-buy__cart {
	flex: 1;
	border: none;
	border-radius: 5px;
	background: rgba(255, 179, 0, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	padding: 12px 50px;

	font-weight: 700;
	font-style: normal;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
	border: 1.5px solid var(--accent);
	transition:
		background 0.2s,
		transform 0.1s;
}
.product-buy__step,
.product-buy__qty {
	transition:
		background 0.2s,
		transform 0.1s;
}
.product-buy__cart:hover {
	background: transparent;
	border: 1.5px solid var(--accent);
	color: var(--accent);
}
.product-buy__step:hover {
	background-color: var(--accent);
}
.product-buy__vat {
	margin: 20px 0 0 0;
	font-weight: 400;
	font-style: normal;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	color: rgba(112, 112, 112, 1);
}

.related-slider {
	padding: 40px 0;
}

.related-slider__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.related-slider__title {
	font-size: 28px;
}

.related-slider__controls {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
	padding-top: 6px;
}

.related-slider__arrow {
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	color: rgba(33, 33, 33, 1);
}
.related-slider__arrow--next svg {
	transform: rotate(180deg);
}
.related-slider__arrow.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

.related-slider__pagination {
	position: static !important;
	display: flex;
	align-items: center;
	gap: 6px;
	width: auto !important;
}
.related-slider__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e2e2e2;
	opacity: 1;
	margin: 0 !important;
	transition:
		width 0.2s ease,
		border-radius 0.2s ease;
}
.related-slider__pagination .swiper-pagination-bullet-active {
	width: 20px;
	border-radius: 4px;
	background: rgba(255, 179, 0, 1);
}

.related-slider__swiper {
	width: 100%;
	overflow: hidden;
}
.related-slider__swiper .swiper-slide {
	height: auto;
	display: flex;
}
.related-slider__swiper .swiper-slide .pcard {
	width: 100%;
}

/* Адаптивные стили */

@media (max-width: 1400px) {
	.product-specs {
		padding-right: 0;
	}
	.product-single {
		gap: 28px;
	}
	.product-buy {
		padding: 20px;
	}

	.product-gallery {
		max-width: 360px;
	}
}

@media (max-width: 1300px) {
	.product-single {
		flex-wrap: wrap;
	}
	.product-gallery {
		flex: 1 1 320px;
		max-width: 450px;
	}
	.product-specs {
		flex: 1 1 320px;
	}
	.product-buy {
		flex: 1 1 100%;
		max-width: 100%;
		order: 3;
	}

	.product-buy__row {
		justify-content: center;
	}

	.product-buy__cart {
		flex: initial;
	}

	.product-buy__top {
		justify-content: center;

		gap: 20px;
	}
}

@media (max-width: 991px) {
	.product-single {
		gap: 28px;
	}
	.product-gallery {
		max-width: 100%;
		padding: 16px 16px 14px;
	}
	.product-specs {
		padding-right: 20px;
	}
	.product-specs__row {
		font-size: 15px;
	}
	.product-specs__more {
		font-size: 17px;
	}
	.product-buy {
		width: 100%;
		padding: 28px;
	}
	.product-buy__label {
		font-size: var(--text-big);
	}
	.product-buy__price {
		font-size: 28px;
	}
	.product-buy__currency {
		font-size: var(--text-small);
	}
	.product-buy__stock {
		font-size: 15px;
	}
	.product-buy__cart {
		padding: 12px 32px;
	}
	.product-buy__vat {
		font-size: 15px;
	}
	.related-slider {
		padding: 30px 0;
	}
	.related-slider__title {
		font-size: var(--title-small);
	}

}

@media (max-width: 768px) {
	.product-single {
		flex-direction: column;
		gap: 16px;
	}
	.product-gallery {
		max-width: 100%;
		padding: 14px 14px 12px;
	}
	.product-specs {
		flex: inherit;
		width: 100%;
		padding-right: 0;
	}
	.product-specs__row {
		gap: 5px;
		font-size: 14px;
	}
	.product-specs__more {
		font-size: var(--text-small);
	}
	.product-buy {
		max-width: 100%;
		padding: 20px;
	}
	.product-buy__top {
		padding: 5px 16px;
	}
	.product-buy__label {
		font-size: var(--text-medium);
	}
	.product-buy__price {
		font-size: var(--title-small);
	}
	.product-buy__currency {
		font-size: 14px;
	}
	.product-buy__stock {
		font-size: 14px;
	}
	.product-buy__stepper .product-buy__step,
	.product-buy__stepper .product-buy__qty {
		height: 34px;
		width: 28px;
	}
	.product-buy__qty {
		width: 46px;
	}
	.product-buy__cart {
		padding: 12px 20px;
		font-size: 15px;
	}
	.product-buy__vat {
		font-size: 14px;
	}
	.related-slider {
		padding: 24px 0;
	}
	.related-slider__head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: var(--text-small);
	}
	.related-slider__controls {
		align-self: flex-end;
	}
	.related-slider__title {
		font-size: 22px;
	}

	.page-head__title {
		font-size: var(--title-small);
	}
	.breadcrumbs__link {
		font-size: 14px;
	}
	.breadcrumbs__current {
		font-size: 14px;
	}
	.product-specs__title {
		font-size: 23px;
	}
}
