/* ============================================================
   Shop — catalogue, product card, single product, enquiry form
   ============================================================ */

.hvv-shop {
	width: 100%;
	overflow-x: hidden;
	padding-bottom: 120px;
}

/* ----- Header: bar + title + category filter ----- */
.hvv-shop__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1700px;
	margin: 0 auto 56px;
	padding: 100px 111px 0 0;
	box-sizing: border-box;
}

.hvv-shop__heading {
	display: flex;
	align-items: center;
	gap: 70px;
	min-width: 0;
}

.hvv-shop__bar {
	width: 111px;
	height: 10px;
	background: #BD0707;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	display: block;
	flex-shrink: 0;
}

.hvv-shop__title {
	margin: 0;
	color: #000;
	font-family: Montserrat, sans-serif;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: normal;
	text-transform: uppercase;
}

/* ----- Breadcrumb ----- */
.hvv-shop__breadcrumb {
	max-width: 1700px;
	margin: -32px auto 28px;
	padding: 0 111px;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #696767;
}

.hvv-shop__breadcrumb a {
	color: #1A8DA1;
	text-decoration: none;
}

.hvv-shop__breadcrumb a:hover {
	text-decoration: underline;
}

.hvv-shop__breadcrumb-sep {
	margin: 0 8px;
	color: #B4B4B4;
}

.hvv-shop__breadcrumb-current {
	color: #2F2E2E;
}

/* ----- Category toolbar (result count + ordering) ----- */
.hvv-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 1700px;
	margin: 0 auto 28px;
	padding: 0 111px;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
}

.hvv-shop__result-count .woocommerce-result-count,
.hvv-shop__result-count p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: #696767;
}

.hvv-shop__ordering form,
.hvv-shop__ordering .woocommerce-ordering {
	margin: 0;
}

/* The native select stays in the DOM (it carries the form state) but is
   visually replaced by .hvv-select, which we can actually style. */
.hvv-shop__ordering select.orderby.is-enhanced {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.hvv-select {
	position: relative;
	font-family: Montserrat, sans-serif;
}

.hvv-select__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 230px;
	height: 46px;
	padding: 0 18px;
	border: 1.5px solid #D8EEEF;
	border-radius: 23px;
	background: #FFFFFF;
	color: #2F2E2E;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.hvv-select__toggle:hover {
	border-color: #1A8DA1;
}

.hvv-select__toggle[aria-expanded="true"] {
	border-color: #1A8DA1;
	box-shadow: 0 0 0 3px rgba(26, 141, 161, 0.14);
}

.hvv-select__caret {
	display: inline-flex;
	color: #1A8DA1;
	transition: transform .2s ease;
}

.hvv-select__toggle[aria-expanded="true"] .hvv-select__caret {
	transform: rotate(180deg);
}

.hvv-select__list {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 100%;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
	z-index: 50;
}

.hvv-select__list[hidden] {
	display: none;
}

.hvv-select__option {
	display: block;
	width: 100%;
	padding: 10px 14px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	text-align: left;
	white-space: nowrap;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: #2F2E2E;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease;
}

.hvv-select__option:hover {
	background: #F1F8F9;
}

.hvv-select__option.is-selected {
	background: #1A8DA1;
	color: #FFFFFF;
	font-weight: 600;
}

/* ----- Category card ----- */
.hvv-category-card__count {
	margin: 0;
	color: #696767;
	font-family: Montserrat, sans-serif;
	font-size: 12px;
	font-weight: 500;
}

/* ----- Catalogue grid ----- */
.hvv-shop__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 51px;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 111px;
	box-sizing: border-box;
}

.hvv-shop__term-description,
.hvv-shop__empty {
	max-width: 1700px;
	margin: 0 auto 32px;
	padding: 0 111px;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	color: #393737;
}

.hvv-shop__empty {
	text-align: center;
	padding: 60px 20px;
}

.hvv-shop__pagination {
	margin-top: 80px;
}

/* ----- Product card ----- */
.hvv-product-card {
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
	transition: transform .3s ease, box-shadow .3s ease;
	height: 100%;
}

.hvv-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 16px rgba(0, 0, 0, 0.18);
}

.hvv-product-card__link {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding: 26px;
	text-decoration: none;
	height: 100%;
	box-sizing: border-box;
}

.hvv-product-card__image {
	width: 100%;
	aspect-ratio: 442 / 519;
	border-radius: 16px;
	overflow: hidden;
	background: #F0F0F0;
}

.hvv-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hvv-product-card__image-empty {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #F0F0F0 0%, #E2E2E2 100%);
}

.hvv-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	font-family: Montserrat, sans-serif;
}

.hvv-product-card__title {
	margin: 0;
	color: #1A8DA1;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	line-height: 1.15;
}

.hvv-product-card__excerpt {
	margin: 0;
	color: #696767;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.3;
}

.hvv-product-card__price {
	margin: 0;
	color: #2F2E2E;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

/* ============================================================
   Single product
   ============================================================ */
.hvv-product {
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 111px;
	box-sizing: border-box;
	/* Gallery on the left, details + enquiry form fill the space beside it. */
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: start;
}

/* ----- Gallery: stage + thumbnails -----
   Replaces the earlier centred filmstrip: that relied on scroll maths against
   the track width and drifted whenever layout settled late. Nothing scrolls
   here, so nothing can be clipped or land off-centre. */
.hvv-gallery {
	width: 100%;
	max-width: 560px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hvv-gallery__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 26px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.hvv-gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}

.hvv-gallery__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.hvv-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Arrows sit on the photo, not at the page edges. */
.hvv-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #1A8DA1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, transform .15s ease;
	z-index: 2;
}

.hvv-gallery__nav:hover {
	background: #1A8DA1;
	color: #FFFFFF;
}

.hvv-gallery__nav:active {
	transform: translateY(-50%) scale(0.94);
}

.hvv-gallery__nav--prev { left: 16px; }
.hvv-gallery__nav--next { right: 16px; }

.hvv-gallery__zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #1A8DA1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
	z-index: 2;
}

.hvv-gallery__zoom:hover {
	background: #1A8DA1;
	color: #FFFFFF;
}

/* ----- Thumbnails ----- */
.hvv-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.hvv-gallery__thumb {
	width: 74px;
	height: 92px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #FFFFFF;
	cursor: pointer;
	opacity: .55;
	outline: 2.5px solid transparent;
	outline-offset: -2.5px;
	transition: opacity .2s ease, outline-color .2s ease, transform .15s ease;
}

.hvv-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hvv-gallery__thumb:hover {
	opacity: .85;
	transform: translateY(-2px);
}

.hvv-gallery__thumb.is-active {
	opacity: 1;
	outline-color: #1A8DA1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

/* ----- Details + form ----- */
.hvv-product__panel {
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-width: 0;
}

.hvv-product__info {
	font-family: Montserrat, sans-serif;
	min-width: 0;
}

.hvv-product__title {
	margin: 0 0 8px;
	color: #1A8DA1;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	line-height: 1.2;
}

.hvv-product__excerpt {
	margin: 0 0 16px;
	color: #696767;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
}

.hvv-product__excerpt p {
	margin: 0 0 6px;
}

.hvv-product__price {
	margin: 0 0 28px;
	color: #2F2E2E;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.hvv-product__options,
.hvv-product__qty {
	margin-bottom: 24px;
}

.hvv-product__options-label {
	margin: 0 0 8px;
	color: #2F2E2E;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 500;
}

.hvv-product__options-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hvv-product__option {
	min-width: 38px;
	height: 34px;
	padding: 0 10px;
	border: 1px solid #D8D8D8;
	border-radius: 6px;
	background: #FFFFFF;
	color: #2F2E2E;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.hvv-product__option:hover {
	border-color: #1A8DA1;
}

.hvv-product__option.is-active {
	background: #1A8DA1;
	border-color: #1A8DA1;
	color: #FFFFFF;
}

.hvv-product__qty-control {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1.5px solid #D8EEEF;
	border-radius: 999px;
	background: #FFFFFF;
}

.hvv-product__qty-btn {
	/* Fixed square + flex centring: SVG glyphs sit dead centre, and
	   flex-shrink:0 keeps the circle from squashing. */
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #F1F8F9;
	color: #1A8DA1;
	line-height: 0;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, transform .12s ease;
	-webkit-appearance: none;
}

.hvv-product__qty-btn svg {
	display: block;
}

.hvv-product__qty-btn:hover {
	background: #1A8DA1;
	color: #FFFFFF;
}

.hvv-product__qty-btn:active {
	transform: scale(0.92);
}

.hvv-product__qty-input {
	flex: 0 0 44px;
	width: 44px;
	height: 34px;
	padding: 0;
	border: 0;
	text-align: center;
	font-family: Montserrat, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #2F2E2E;
	background: transparent;
	outline: none;
	-moz-appearance: textfield;
}

.hvv-product__qty-input::-webkit-outer-spin-button,
.hvv-product__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* ----- Enquiry form ----- */
.hvv-product__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	max-width: 620px;
}

input.hvv-product__field,
.hvv-product__form input.hvv-product__field {
	width: 100%;
	height: 46px;
	padding: 12px 22px;
	border: 1px solid #D8D8D8;
	border-radius: 23px;
	background: #FFFFFF;
	box-sizing: border-box;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #2F2E2E;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
	-webkit-appearance: none;
}

.hvv-product__field::placeholder {
	color: #9A9A9A;
	text-transform: uppercase;
}

.hvv-product__field:focus {
	border-color: #1A8DA1;
	box-shadow: 0 0 0 3px rgba(26, 141, 161, 0.15);
}

.hvv-product__field.has-error {
	border-color: #BD0707;
}

.hvv-product__form-error {
	margin: 0;
	color: #BD0707;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 500;
}

.hvv-product__form-error[hidden] {
	display: none;
}

.hvv-product__submit {
	align-self: flex-start;
	margin-top: 8px;
	padding: 12px 28px;
	border: 0;
	border-radius: 23px;
	background: #1A8DA1;
	color: #FFFFFF;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: background-color .2s ease, transform .15s ease;
}

.hvv-product__submit:hover {
	background: #156F80;
}

.hvv-product__submit:active {
	transform: translateY(1px);
}

.hvv-product__submit[disabled] {
	opacity: .6;
	cursor: default;
}

/* ----- Success overlay ----- */
.hvv-product__success {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(47, 46, 46, 0.55);
}

.hvv-product__success[hidden] {
	display: none;
}

.hvv-product__success-box {
	width: 100%;
	max-width: 520px;
	padding: 48px 32px 32px;
	border-radius: 20px;
	background: #FFFFFF;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	text-align: center;
	font-family: Montserrat, sans-serif;
}

.hvv-product__success-icon {
	display: inline-flex;
	margin-bottom: 24px;
}

.hvv-product__success-text {
	margin: 0 0 24px;
	padding: 20px 24px;
	border-radius: 14px;
	background: #FFFFFF;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
	color: #2F2E2E;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
}

.hvv-product__success-close {
	padding: 10px 26px;
	border: 0;
	border-radius: 23px;
	background: #1A8DA1;
	color: #FFFFFF;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .2s ease;
}

.hvv-product__success-close:hover {
	background: #156F80;
}

/* ----- Related ----- */
.hvv-shop__related {
	margin-top: 100px;
}

.hvv-shop__related-title {
	max-width: 1700px;
	margin: 0 auto 32px;
	padding: 0 111px;
	box-sizing: border-box;
	color: #000;
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

/* ----- Lightbox ----- */
.hvv-product__lightbox {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 40px 72px;
	background: rgba(20, 20, 20, 0.9);
}

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

.hvv-product__lightbox-figure {
	margin: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.hvv-product__lightbox-figure img {
	max-width: 100%;
	max-height: calc(100vh - 140px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
	display: block;
}

.hvv-product__lightbox-counter {
	color: #FFFFFF;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.6px;
}

.hvv-product__lightbox-nav,
.hvv-product__lightbox-close {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #FFFFFF;
	cursor: pointer;
	transition: background-color .2s ease, transform .15s ease;
}

.hvv-product__lightbox-nav:hover,
.hvv-product__lightbox-close:hover {
	background: rgba(255, 255, 255, 0.24);
}

.hvv-product__lightbox-nav:active,
.hvv-product__lightbox-close:active {
	transform: scale(0.94);
}

.hvv-product__lightbox-nav--prev { left: 20px; }
.hvv-product__lightbox-nav--next { right: 20px; }

.hvv-product__lightbox-close {
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media screen and (max-width: 1199px) {
	.hvv-shop__header {
		padding: 60px 40px 0 0;
		gap: 24px;
		margin-bottom: 40px;
	}
	.hvv-shop__heading {
		gap: 40px;
	}
	.hvv-shop__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
		padding: 0 40px;
	}
	.hvv-shop__term-description,
	.hvv-shop__empty,
	.hvv-product,
	.hvv-shop__breadcrumb,
	.hvv-shop__toolbar,
	.hvv-shop__related-title {
		padding-left: 40px;
		padding-right: 40px;
	}
	.hvv-product {
		gap: 40px;
	}
	.hvv-gallery {
		max-width: 460px;
	}
}

@media screen and (max-width: 900px) {
	.hvv-product {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.hvv-gallery {
		max-width: 480px;
		margin: 0 auto;
	}
	.hvv-product__form {
		max-width: none;
	}
}

@media screen and (max-width: 767px) {
	.hvv-shop {
		padding-bottom: 56px;
	}
	.hvv-shop__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 24px 20px 0 0;
		margin-bottom: 24px;
	}
	.hvv-shop__heading {
		gap: 16px;
		align-items: center;
	}
	.hvv-shop__bar {
		width: 34px;
		height: 3px;
		background: #1A8DA1;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	.hvv-shop__title {
		font-size: 14px;
		letter-spacing: 0.56px;
		color: #393737;
	}
	.hvv-shop__filter {
		align-self: flex-end;
		margin-right: 20px;
	}
	.hvv-shop__filter-toggle {
		padding: 8px 14px;
		font-size: 12px;
		gap: 8px;
	}
	.hvv-shop__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding: 0 20px;
	}
	.hvv-product-card__link {
		padding: 12px;
		gap: 14px;
	}
	.hvv-product-card {
		border-radius: 14px;
	}
	.hvv-product-card__image {
		border-radius: 10px;
	}
	.hvv-product-card__title {
		font-size: 12px;
	}
	.hvv-product-card__excerpt {
		font-size: 9px;
	}
	.hvv-product-card__price {
		font-size: 11px;
	}
	.hvv-shop__term-description,
	.hvv-shop__empty,
	.hvv-product,
	.hvv-shop__breadcrumb,
	.hvv-shop__toolbar,
	.hvv-shop__related-title {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hvv-shop__breadcrumb {
		margin-top: -8px;
		font-size: 12px;
	}
	.hvv-shop__toolbar {
		gap: 12px;
	}
	.hvv-shop__ordering select {
		height: 38px;
		font-size: 13px;
	}
	.hvv-product {
		gap: 32px;
	}
	.hvv-gallery {
		gap: 12px;
	}
	.hvv-gallery__stage {
		border-radius: 18px;
	}
	.hvv-gallery__nav {
		width: 36px;
		height: 36px;
	}
	.hvv-gallery__nav--prev { left: 10px; }
	.hvv-gallery__nav--next { right: 10px; }
	.hvv-gallery__zoom {
		width: 40px;
		height: 40px;
		right: 10px;
		bottom: 10px;
	}
	.hvv-gallery__thumbs {
		gap: 8px;
	}
	.hvv-gallery__thumb {
		width: 56px;
		height: 70px;
		border-radius: 10px;
	}
	.hvv-product__title {
		font-size: 18px;
	}
	.hvv-product__price {
		font-size: 17px;
		margin-bottom: 20px;
	}
	.hvv-shop__related {
		margin-top: 56px;
	}
	.hvv-shop__related-title {
		font-size: 18px;
	}
	.hvv-product__success-box {
		padding: 32px 20px 24px;
	}
	.hvv-product__success-text {
		font-size: 14px;
		padding: 16px 18px;
	}
	.hvv-product__lightbox {
		padding: 60px 12px 72px;
	}
	.hvv-product__lightbox-nav {
		width: 42px;
		height: 42px;
	}
	.hvv-product__lightbox-nav--prev { left: 8px; }
	.hvv-product__lightbox-nav--next { right: 8px; }
	.hvv-product__lightbox-figure img {
		max-height: calc(100vh - 190px);
	}
}
