.wavecrest-product {
	width: 100%;
	background: var(--bg-clr);
	color: var(--txt-clr);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wavecrest-product h1,
.wavecrest-product h2,
.wavecrest-product h3 {
	color: var(--txt-clr) !important;
}

.wavecrest-product__contact-card h2 {
	color: var(--pr-clr) !important;
}



.wavecrest-product__overview {
	background: var(--bg-clr);
}

.wavecrest-product__overview-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 62px 2em 105px;
}

.wavecrest-product__topline {
	position: relative;
	display: flex;
	min-height: 89px;
	align-items: flex-start;
	justify-content: center;
}

.wavecrest-product__back {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 10px;
}

.wavecrest-product__back span,
.wavecrest-product__request span {
	display: inline-block;
	font-size: .75em;
	transform: translateY(-2px);
	margin-right: 5px;
}

.wavecrest-product__header {
	width: max-content;
	max-width: calc(100% - 540px);
	text-align: center;
}

.wavecrest-product__header h1 {
	font-size: clamp(2rem, 4vw, 2.65rem);
	line-height: 1.1;
}

.wavecrest-product__header p {
	margin-top: 8px;
}

.wavecrest-product__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(350px, 1fr);
	gap: 32px;
	align-items: stretch;
}

.wavecrest-product__media,
.wavecrest-product__details,
.wavecrest-product__variants,
.wavecrest-product__action {
	border: var(--border);
	border-radius: var(--radius-big);
	background: var(--pr-clr);
}

.wavecrest-product__media {
	min-width: 0;
	overflow: hidden;
}

.wavecrest-product__main-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 405px;
	overflow: hidden;
	border-radius: inherit;
	background: var(--pr-clr);
}

.wavecrest-product__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wavecrest-product__slide[hidden] {
	display: none;
}

.wavecrest-product__slide img {
	display: block;
	width: 100%;
	height: 65%;
	object-fit: contain;
	object-position: center;
}

.wavecrest-product__zoom-trigger {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.has-product-lightbox {
	overflow: hidden;
}

.wavecrest-product__lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	padding: 72px clamp(16px, 4vw, 64px) 32px;
	place-items: center;
	background: rgb(0 0 0 / 82%);
}

.wavecrest-product__lightbox[hidden] {
	display: none;
}

.wavecrest-product__lightbox-content {
	display: grid;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	place-items: center;
}

.wavecrest-product__lightbox-content img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 140px);
	object-fit: contain;
	background: var(--pr-clr);
	box-shadow: 0 10px 36px rgb(0 0 0 / 32%);
}

.wavecrest-product__lightbox-content figcaption {
	max-width: min(900px, 100%);
	margin-top: 12px;
	color: var(--pr-clr);
	font-size: 16px;
	text-align: center;
}

.wavecrest-product__lightbox-close {
	position: fixed;
	top: 16px;
	right: 22px;
	z-index: 1;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--pr-clr);
	font-size: 56px;
	font-weight: 300;
	line-height: .8;
	cursor: pointer;
}

.wavecrest-product__lightbox-close:focus-visible {
	transform: scale(1.08);
}

@media (hover: hover) and (pointer: fine) {
	.wavecrest-product__lightbox-close:hover {
		transform: scale(1.08);
	}
}

@media (hover: none), (pointer: coarse) {
	.wavecrest-product__lightbox-close:active {
		transform: scale(1.08);
	}
}

.wavecrest-product__gallery-count {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	min-width: 72px;
	padding: 8px 15px;
	border-radius: 0 0 var(--radius-small) var(--radius-small);
	background: var(--ac-d-clr);
	color: var(--pr-clr);
	text-align: center;
}

.wavecrest-product__gallery-button {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: rgb(76 117 141 / 90%);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s ease, transform .2s ease;
}

.wavecrest-product__gallery-button span{
	color: var(--pr-clr);
	font-size: 18px;
	line-height: 1;
}

.wavecrest-product__gallery-button:first-of-type span{
	transform: translateX(-2px);
}
.wavecrest-product__gallery-button:last-of-type span{
	transform: translateX(2px);
}

.wavecrest-product__gallery-button:focus-visible {
	background: var(--ac-d-clr);
	transform: translateY(-50%) scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
	.wavecrest-product__gallery-button:hover {
		background: var(--ac-d-clr);
		transform: translateY(-50%) scale(1.05);
	}
}

@media (hover: none), (pointer: coarse) {
	.wavecrest-product__gallery-button:active {
		background: var(--ac-d-clr);
		transform: translateY(-50%) scale(1.05);
	}
}

.wavecrest-product__gallery-button--prev {
	left: 12px;
}

.wavecrest-product__gallery-button--next {
	right: 12px;
}

.wavecrest-product__gallery-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	min-height: 46px;
	padding: 12px 28px;
	background: rgb(7 65 98 / 92%);
	color: var(--pr-clr);
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wavecrest-product__image-placeholder {
	display: grid;
	min-height: 405px;
	place-items: center;
	background: #e8edf0;
	color: #667780;
}

.wavecrest-product__image-placeholder img {
	display: block;
	width: min(55%, 320px);
	height: auto;
}

.wavecrest-product__details {
	min-width: 0;
	max-width: 100%;
	padding: 22px 24px;
}

.wavecrest-product__details h2,
.wavecrest-product__variants h2 {
	font-size: 22px;
	line-height: 1.25;
}

.wavecrest-product__facts {
	margin-top: 14px;
}

.wavecrest-product__facts div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 7px 12px;
	color: var(--ac-d-clr);
}

.wavecrest-product__facts div:nth-child(odd) {
	background: var(--bg-clr);
}

.wavecrest-product__facts dt,
.wavecrest-product__facts dd {
	font-size: 16px;
}

.wavecrest-product__facts dd {
	margin: 0;
	font-weight: 700;
	color: var(--txt-clr);
	text-align: right;
}

.wavecrest-product__measurements {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px 12px;
	margin-top: 28px;
}

.wavecrest-product__measurement {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.wavecrest-product__measurement img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.wavecrest-product__measurement span {
	margin-top: 5px;
	color: var(--txt-clr);
	opacity: .62;
}

.wavecrest-product__measurement strong {
	margin-top: 3px;
	font-size: 16px;
}

.wavecrest-product__action {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
	border-left: 5px solid var(--ac-d-clr);
}

.wavecrest-product__action-price {
	margin-left: auto;
	font-size: 1.25rem;
	font-weight: 700;
}

.wavecrest-product__details .btn-2 {
	width: fit-content;
	max-width: 100%;
	margin-top: 30px;
	font-size: 1rem !important;
	white-space: normal;
}

#anfrage {
	scroll-margin-top: 120px;
}

@media(max-width: 1250px) {
	#anfrage {
		scroll-margin-top: 20px;
	}
}




.wavecrest-product__variants {
	container-name: product-variants;
	container-type: inline-size;
	display: block;
	min-width: 0;
	max-width: 100%;
	padding: 20px 24px 22px;
}

.wavecrest-product__table-scroll {
	overflow-x: auto;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	margin-top: 15px;
}

.wavecrest-product__variants table {
	width: 100%;
	min-width: 960px;
	max-width: 100%;
	border-collapse: collapse;
	color: var(--ac-d-clr);
}

.wavecrest-product__variants th,
.wavecrest-product__variants td {
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
	white-space: normal;
	padding: 7px 20px;
	border-bottom: var(--border);
	text-align: left;
	vertical-align: middle;
}

.wavecrest-product__variants th {
	border: 0;
	background: var(--ac-l-clr);
	color: var(--pr-clr);
	font-weight: 500;
}

.wavecrest-product__variants th:first-child {
	border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.wavecrest-product__variants th:last-child {
	border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

@container product-variants (max-width: 959px) {
	.wavecrest-product__table-scroll {
		overflow-x: visible;
	}

	.wavecrest-product__variants table,
	.wavecrest-product__variants thead,
	.wavecrest-product__variants tbody,
	.wavecrest-product__variants tr,
	.wavecrest-product__variants td {
		display: block;
	}

	.wavecrest-product__variants table {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		table-layout: fixed;
	}

	.wavecrest-product__variants thead {
		display: none;
	}

	.wavecrest-product__variants tr {
		padding: 12px 0;
		border-bottom: var(--border);
	}

	.wavecrest-product__variants td {
		display: grid;
		grid-template-columns: minmax(96px, .35fr) minmax(0, 1fr);
		gap: 16px;
		padding: 6px 0;
		border: 0;
	}

	.wavecrest-product__variants td::before {
		content: attr(data-label);
		font-weight: 700;
	}
}

@container product-variants (max-width: 300px) {
	.wavecrest-product__variants td {
		grid-template-columns: minmax(0, 1fr);
		gap: 3px;
		padding: 9px 0;
	}
}

.wavecrest-product > .transition-relative {
	margin-top: -1px;
}

.wavecrest-product__description {
	background: var(--pr-clr);
}

.wavecrest-product__description-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 48px 2em 125px;
}

.wavecrest-product__description-inner > h2 {
	font-size: clamp(2rem, 5vw, 2.75rem);
}

.wavecrest-product__content {
	width: 100%;
	max-width: 1200px;
	margin-top: 34px;
	color: rgb(17 16 15 / 66%);
	font-size: 18px;
	line-height: 1.55;
}

.wavecrest-product__content > * + * {
	margin-top: 1.35em;
}

.wavecrest-product__content ul,
.wavecrest-product__content ol {
	padding-left: 1.3em;
}

.wavecrest-product__inquiry {
	display: grid;
	grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
	width: calc(100% - 48px);
	max-width: 1320px;
	margin: 92px auto 0;
	align-items: stretch;
	border-radius: var(--radius-big);
	background: var(--pr-clr);
	box-shadow: 0 3px 18px rgb(0 0 0 / 14%);
	overflow: hidden;
}

.wavecrest-product__contact-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 30px 28px;
	background: var(--ac-d-clr);
	color: var(--pr-clr);
}

.wavecrest-product__contact-card h2 {
	font-size: 28px;
	line-height: 1.2;
}

.wavecrest-product__contact-card > p {
	margin-top: -8px;
	opacity: .82;
}

.wavecrest-product__contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 16px;
	border-radius: var(--radius-big);
	background: var(--pr-clr);
	color: var(--ac-d-clr);
	transition: transform .2s ease, background-color .2s ease;
}

.wavecrest-product__contact-item:hover,
.wavecrest-product__contact-item:focus-visible {
	background: var(--bg-clr);
	transform: translateY(-2px);
}

.wavecrest-product__contact-item span {
	color: var(--ac-l-clr);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.wavecrest-product__contact-item strong {
	overflow-wrap: anywhere;
	font-size: clamp(1.1rem, 1.65vw, 1.4rem);
}

.wavecrest-product__contact-item[href^="mailto:"] strong {
	font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.wavecrest-product__inquiry-main {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	flex-direction: column;
	padding: 32px 34px;
}

.wavecrest-product__inquiry-main label {
	color: var(--ac-d-clr);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.wavecrest-product__inquiry-main select {
	width: 100%;
	min-height: 52px;
	margin-top: 12px;
	padding: 10px 48px 10px 16px;
	border: 1px solid rgb(17 16 15 / 55%);
	border-radius: var(--radius-small);
	background: var(--pr-clr);
	color: rgb(17 16 15 / 65%);
	font-size: 18px;
}

.wavecrest-product__request {
	display: inline-block;
	margin-top: 16px;
	font-size: 17px;
}

.wavecrest-product__inquiry-main h3 {
	margin-top: 25px;
	font-size: 19px;
	line-height: 1.4;
}

.wavecrest-product__dealer-box {
	width: 100%;
	min-height: 155px;
	margin-top: 14px;
	padding: 16px 20px;
	border: 1px solid rgb(17 16 15 / 55%);
	border-radius: var(--radius-big);
}

.wavecrest-product__dealer-box ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 22px;
	list-style: none;
}

.wavecrest-product__dealer-box li {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.wavecrest-product__dealer-box span,
.wavecrest-product__dealer-box > p {
	color: rgb(17 16 15 / 62%);
}

@media (max-width: 1000px) {
	.wavecrest-product__topline {
		min-height: 0;
		padding-top: 70px;
	}

	.wavecrest-product__header {
		width: 100%;
		max-width: none;
	}

	.wavecrest-product__grid {
		grid-template-columns: 1fr;
	}

	.wavecrest-product__main-image,
	.wavecrest-product__image-placeholder {
		min-height: 450px;
	}

	.wavecrest-product__inquiry {
		width: 100%;
		grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr);
	}
}

@media (max-width: 700px) {
	.wavecrest-product__overview-inner {
		gap: 28px;
		padding: 40px 1em 72px;
	}

	.wavecrest-product__topline {
		padding-top: 62px;
	}

	.wavecrest-product__back {
		margin-top: 0;
		font-size: 16px;
	}

	.wavecrest-product__grid {
		gap: 20px;
	}

	.wavecrest-product__main-image,
	.wavecrest-product__image-placeholder {
		min-height: 330px;
	}

	.wavecrest-product__details {
		padding: 20px 16px;
	}
	

	.wavecrest-product__measurements {
		gap: 20px 8px;
	}

	.wavecrest-product__measurement img {
		width: 40px;
		height: 40px;
	}

	.wavecrest-product__measurement span,
	.wavecrest-product__measurement strong {
		font-size: 14px;
	}

	.wavecrest-product__variants {
		padding: 20px 16px;
	}

	.wavecrest-product__action {
		align-items: flex-start;
		flex-direction: column;
	}

	.wavecrest-product__action-price {
		margin-left: 0;
	}

	.wavecrest-product__description-inner {
		padding: 36px 1em 80px;
	}

	.wavecrest-product__content {
		margin-top: 24px;
		font-size: 16px;
	}

	.wavecrest-product__inquiry {
		grid-template-columns: 1fr;
		margin-top: 60px;
	}

	.wavecrest-product__inquiry-main {
		padding: 28px 20px;
	}
}

@media (max-width: 500px) {
	.wavecrest-product__main-image,
	.wavecrest-product__image-placeholder {
		min-height: 270px;
	}

	.wavecrest-product__gallery-button {
		width: 40px;
		height: 40px;
	}

	.wavecrest-product__gallery-caption {
		padding: 10px 16px;
	}

	.wavecrest-product__facts div {
		padding-right: 8px;
		padding-left: 8px;
	}

	.wavecrest-product__contact-card {
		padding: 26px 20px;
	}

	.wavecrest-product__dealer-box ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 380px) {
	.wavecrest-product__facts div {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 3px;
	}

	.wavecrest-product__facts dd {
		text-align: left;
	}

	.wavecrest-product__measurements {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wavecrest-product__variants {
		padding-right: 12px;
		padding-left: 12px;
	}

	.wavecrest-product__variants td {
		font-size: 15px;
	}
}
