.fs-produktdetail {
	background: #fff;
	color: #535353;
	font-family: 'Open Sans', sans-serif;
}

.fs-produktdetail__container {
	max-width: 1364px;
	margin: 0 auto;
	padding: 0 20px;
}

.fs-produktdetail__hero {
	background: #f0f0f0;
	padding: 150px 0 38px;
}

.fs-produktdetail__hero-kicker {
	margin: 0 0 12px;
	font-size: 35px;
	font-weight: 300;
	line-height: 1.36;
	color: #535353;
}

.fs-produktdetail__hero-title {
	margin: 0;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.36;
	color: #535353;
}

.fs-produktdetail__breadcrumb {
	margin: 32px 0 0;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.36;
}

.fs-produktdetail__main {
	margin-top: 74px;
	display: grid;
	grid-template-columns: 398px minmax(0, 1fr);
	gap: 154px;
}

.fs-pd-gallery {
	position: relative;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
	padding: 0 0 28px;
}

.fs-pd-gallery__zoom {
	position: absolute;
	top: 15px;
	right: 14px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	z-index: 2;
}

.fs-pd-gallery__main {
	border: 0;
	background: #f0f0f0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 438px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fs-pd-gallery__main-image {
	max-width: 92%;
	max-height: 92%;
	object-fit: contain;
}

.fs-pd-gallery__thumbs {
	display: flex;
	gap: 10px;
	padding: 36px 16px 0;
}

.fs-pd-gallery__thumb {
	flex: 1 1 0;
	height: 134px;
	border: 1px solid transparent;
	background: #f0f0f0;
	padding: 0;
	cursor: pointer;
}

.fs-pd-gallery__thumb.is-active {
	border-color: #535353;
}

.fs-pd-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fs-pd-gallery__quality-note {
	margin: 28px 18px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.36;
}

.fs-pd-gallery__article-list {
	list-style: none;
	margin: 22px 0 0;
	padding: 0 18px;
}

.fs-pd-gallery__article-list li {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 14px;
	font-size: 18px;
	font-weight: 400;
}

.fs-pd-gallery__article-icon {
	width: 49px;
	height: 49px;
	border-radius: 999px;
	background: #f0f0f0;
	flex-shrink: 0;
	position: relative;
}

.fs-pd-gallery__article-icon::after {
	content: "";
	position: absolute;
	inset: 15px;
	border: 1px solid #a8a8a8;
	border-radius: 2px;
}

.fs-pd-content__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-bottom: 38px;
}

.fs-pd-chip {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 300;
}

.fs-pd-content__label {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.36;
}

.fs-pd-content__name {
	margin: 10px 0 34px;
	font-size: 35px;
	font-weight: 700;
	line-height: 1.36;
}

.fs-pd-content__heading {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.36;
}

.fs-pd-content__description {
	margin: 14px 0 30px;
	max-width: 540px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.36;
}

.fs-pd-content__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 42px;
}

.fs-pd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 26px;
	border-radius: 21px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.36;
	border: 1px solid #535353;
	color: #535353;
	background: #fff;
}

.fs-pd-btn--outline-red {
	border-color: #e30613;
	color: #e30613;
}

.fs-pd-btn--download {
	border-color: #e30613;
	color: #e30613;
}

.fs-pd-btn.is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

.fs-pd-accordions {
	margin-bottom: 24px;
}

.fs-pd-accordions details {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	margin-bottom: 10px;
}

.fs-pd-accordions summary {
	list-style: none;
	padding: 24px 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.fs-pd-accordions summary::after {
	content: "";
	width: 12px;
	height: 12px;
	border-right: 2px solid #535353;
	border-bottom: 2px solid #535353;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-top: -5px;
}

.fs-pd-accordions details[open] summary::after {
	transform: rotate(225deg);
	margin-top: 2px;
}

.fs-pd-accordions summary::-webkit-details-marker {
	display: none;
}

.fs-pd-accordions p {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 400;
}

.fs-pd-variants {
	margin-top: 10px;
}

.fs-pd-variant-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #ededed;
}

.fs-pd-variant-row__sku {
	margin: 0 0 5px;
	font-size: 18px;
	font-weight: 700;
}

.fs-pd-variant-row__desc {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
}

.fs-pd-variant-row__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.fs-pd-qty-label {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.36;
	color: #535353;
}

.fs-pd-qty {
	height: 30px;
	min-width: 112px;
	background: #e8e8e8;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
}

.fs-pd-qty__btn {
	border: 0;
	background: transparent;
	color: #535353;
	cursor: pointer;
	padding: 0;
	width: 18px;
	height: 18px;
	line-height: 1;
}

.fs-pd-qty__btn:disabled {
	opacity: 0.45;
	cursor: default;
}

.fs-pd-qty__value {
	min-width: 14px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

.fs-pd-btn--cart {
	background: #e30613;
	border-color: #e30613;
	color: #fff;
	min-height: 40px;
	padding: 7px 16px;
	gap: 8px;
	font-weight: 700;
}

.fs-pd-btn--cart svg {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.fs-pd-btn--cart span {
	color: #fff;
	font-weight: 700;
}

.fs-pd-content__custom-note {
	margin-top: 42px;
	font-size: 18px;
	font-weight: 400;
}

.fs-pd-content__custom-cta {
	margin-top: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.fs-pd-content__custom-cta .fs-pd-content__custom-note {
	margin-top: 0;
}

.fs-pd-related {
	margin-top: 118px;
	margin-bottom: 100px;
}

.fs-pd-related__title {
	margin: 0 0 40px;
	font-size: 18px;
	font-weight: 700;
	color: #e30613;
}

.fs-pd-related__viewport {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 32px;
}

.fs-pd-related__arrow {
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.fs-pd-related__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 108px) / 4);
	gap: 36px;
	overflow: hidden;
	scroll-behavior: smooth;
}

.fs-pd-related__card a {
	text-decoration: none;
	color: #535353;
}

.fs-pd-related__card-media {
	height: 265px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.fs-pd-related__card-image {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	display: block;
}

.fs-pd-related__card-title {
	margin: 16px 0 0;
	font-size: 35px;
	font-weight: 300;
	line-height: 1.1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fs-pd-lightbox[hidden] {
	display: none !important;
}

.fs-pd-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.fs-pd-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(83, 83, 83, 0.55);
}

.fs-pd-lightbox__dialog {
	position: relative;
	width: 844px;
	max-width: calc(100vw - 24px);
	margin: 70px auto 0;
}

.fs-pd-lightbox__image-wrap {
	width: 750px;
	height: 750px;
	max-width: calc(100vw - 94px);
	max-height: calc(100vh - 170px);
	margin: 0 auto;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fs-pd-lightbox__image {
	max-width: calc(100% - 60px);
	max-height: calc(100% - 60px);
	object-fit: contain;
}

.fs-pd-lightbox__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: #707070;
	font-size: 36px;
	line-height: 0.8;
	cursor: pointer;
}

.fs-pd-lightbox__footer {
	margin-top: -39px;
	margin-left: 47px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: transparent;
	position: relative;
	z-index: 2;
}

.fs-pd-lightbox__nav {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	border: 0;
	background: #f0f0f0;
	color: #707070;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.fs-pd-lightbox__counter {
	font-size: 18px;
	font-weight: 700;
	color: #676c6e;
}

@media (max-width: 1200px) {
	.fs-produktdetail__main {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.fs-pd-gallery {
		max-width: 520px;
	}
}

@media (max-width: 768px) {
	.fs-produktdetail__hero {
		padding-top: 110px;
	}

	.fs-produktdetail__hero-kicker {
		font-size: 24px;
	}

	.fs-produktdetail__hero-title {
		font-size: 36px;
	}

	.fs-pd-content__name {
		font-size: 28px;
	}

	.fs-pd-content__description,
	.fs-pd-variant-row__desc,
	.fs-pd-variant-row__sku,
	.fs-pd-content__custom-note,
	.fs-pd-qty-label,
	.fs-pd-accordions summary,
	.fs-pd-accordions p,
	.fs-pd-gallery__article-list li,
	.fs-produktdetail__breadcrumb {
		font-size: 16px;
	}

	.fs-pd-related__viewport {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fs-pd-related__arrow {
		display: none;
	}

	.fs-pd-related__track {
		overflow-x: auto;
		padding-bottom: 6px;
		grid-auto-columns: minmax(237px, 70%);
	}

	.fs-pd-related__card-title {
		font-size: 24px;
	}

	.fs-pd-content__custom-cta {
		align-items: flex-start;
	}

	.fs-pd-lightbox__dialog {
		margin-top: 45px;
	}

	.fs-pd-lightbox__close {
		top: -6px;
	}
}
