.poly_prodotto {
	width: 90%;
	margin: 0 auto;
	max-width: 1400px;
	margin-top: 70px;
}

.poly_prodotto__wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

/* =========================
   COLONNA SINISTRA
========================= */

.poly_prodotto__sx {
	min-width: 0;
}

.poly_gallery {
	width: 100%;
}

.poly_gallery__hero,
.poly_gallery__thumb {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.poly_gallery__hero {
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.poly_gallery__hero img,
.poly_gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.poly_gallery__hero img,
.poly_gallery__thumb img {
	transition: transform 0.3s ease;
}

.poly_gallery__hero:hover img,
.poly_gallery__thumb:hover img {
	transform: scale(1.02);
}

/* THUMB CAROUSEL */
.poly_gallery__thumbsWrap {
	position: relative;
	margin-top: 24px;
	padding: 0 56px;
}

.poly_gallery__thumbsViewport {
	overflow: hidden;
	width: 100%;
}

.poly_gallery__thumbsTrack {
	display: flex;
	gap: 24px;
	transition: transform 0.35s ease;
	will-change: transform;
}

.poly_gallery__thumb {
	position: relative;
	flex: 0 0 calc((100% - 48px) / 3);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f3f3f3;
}

.poly_gallery__thumbNav {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	background-color: #10a23b;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
	z-index: 3;
}

.poly_gallery__thumbNav:hover {
	transform: translateY(-50%) scale(1.05);
}

.poly_gallery__thumbNav[hidden] {
	display: none !important;
}

.poly_gallery__thumbNav--prev {
	left: 0;
}

.poly_gallery__thumbNav--next {
	right: 0;
}

.poly_gallery__thumbNav svg {
	display: block;
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.poly_gallery__thumbNav--prev svg {
	transform: rotate(180deg);
}

/* play icon per video */
.poly_gallery__thumb--video .poly_gallery__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 74px;
	height: 74px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: rgba(16, 162, 59, 0.92);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.poly_gallery__thumb--video .poly_gallery__play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #fff;
}

/* focus */
.poly_gallery__hero:focus-visible,
.poly_gallery__thumb:focus-visible,
.poly_gallery__thumbNav:focus-visible,
.poly_lightbox__close:focus-visible,
.poly_lightbox__nav:focus-visible,
.poly_lightbox__youtubeLink:focus-visible,
.poly_info__link:focus-visible {
	outline: 3px solid #10a23b;
	outline-offset: 4px;
}

a.poly_info__link:link, a.poly_info__link:visited {
	color: rgba(40, 56, 129, 1);
}

/* =========================
   COLONNA DESTRA
========================= */

.poly_prodotto__dx {
	min-width: 0;
}

.poly_info {
	padding-top: 4px;
}

.poly_info__titolo,
.poly_info__prezzo {
	margin: 0;
}

.poly_info__prezzo {
	font-size: 40px;
	font-weight: 400;
}

.poly_info__sottotitolo {
	margin: 18px 0 0;
}

.poly_info__linea {
	margin: 28px 0;
	border: 0;
	border-top: 1px solid #a9a9a9;
}

.poly_info__iva {
	margin: 10px 0 0;
}

.poly_info__spedizione {
	margin: 0;
}

.poly_info__testi {
	margin-top: 0;
}

.poly_info__testi p {
	margin: 0 0 22px;
}

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

.poly_info__link {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* =========================
   LIGHTBOX
========================= */

body.poly_no_scroll {
	overflow: hidden;
}

.poly_lightbox[hidden] {
	display: none !important;
}

.poly_lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.poly_lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.86);
}

.poly_lightbox__dialog {
	position: relative;
	z-index: 2;
	width: min(92vw, 1280px);
	height: 100vh;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.poly_lightbox__media {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 80px;
	box-sizing: border-box;
}

.poly_lightbox__media img,
.poly_lightbox__media video {
	display: block;
	max-width: 100%;
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
	background: #000;
}

.poly_lightbox__media iframe {
	display: block;
	width: min(100%, 1200px);
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	background: #000;
}

/* fallback locale per youtube */
.poly_lightbox__youtubeFallback {
	width: min(100%, 960px);
	color: #fff;
	text-align: center;
}

.poly_lightbox__youtubePoster {
	display: block;
	width: 100%;
	max-width: 960px;
	margin: 0 auto 24px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 10px;
	background: #000;
}

.poly_lightbox__youtubeText {
	margin: 0 0 16px;
}

.poly_lightbox__youtubeLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	background: #fff;
	color: #000;
	text-decoration: none;
	font-weight: 700;
}

/* controlli lightbox */
.poly_lightbox__close,
.poly_lightbox__nav {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	cursor: pointer;
	color: #fff;
	background-color: #10a23b;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.poly_lightbox__close {
	top: 24px;
	right: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
}

.poly_lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
	height: 58px;
	border-radius: 50%;
}

.poly_lightbox__close:hover {
	transform: scale(1.04);
}

.poly_lightbox__nav:hover {
	transform: translateY(-50%) scale(1.04);
}

.poly_lightbox__nav--prev {
	left: 24px;
}

.poly_lightbox__nav--next {
	right: 24px;
}

.poly_lightbox__close svg,
.poly_lightbox__nav svg {
	display: block;
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.poly_lightbox__nav--prev svg {
	transform: rotate(180deg);
}

.vinext_wc_notice_bar {
	width: 100%;
	background: #f4f4f4;
	padding: 16px 0;
}

.vinext_wc_notice_bar__inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

.vinext_wc_notice_bar .woocommerce-notices-wrapper {
	margin: 0;
}

.vinext_wc_notice_bar .woocommerce-message,
.vinext_wc_notice_bar .woocommerce-error,
.vinext_wc_notice_bar .woocommerce-info {
	position: relative;
	margin: 0;
	border-top: 0;
	box-shadow: none;
}

.vinext_wc_notice_bar .woocommerce-message {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16px 24px;
	padding: 18px 22px 18px 64px;
}

.vinext_wc_notice_bar .woocommerce-message::before,
.vinext_wc_notice_bar .woocommerce-error::before,
.vinext_wc_notice_bar .woocommerce-info::before {
	left: 22px;
	top: 22px;
	transform: none;
	margin: 0;
}

.vinext_wc_notice_bar .button.wc-forward {
	flex: 0 0 auto;
	margin-left: auto;
}

.vinext_wc_notice_bar .woocommerce-message a:not(.button),
.vinext_wc_notice_bar .woocommerce-error a:not(.button),
.vinext_wc_notice_bar .woocommerce-info a:not(.button) {
	margin-left: 0;
}

@media screen and (max-width: 900px) {
	.vinext_wc_notice_bar .woocommerce-message {
		display: block;
		padding: 18px 18px 18px 64px;
	}

	.vinext_wc_notice_bar .button.wc-forward {
		display: inline-block;
		margin: 14px 0 0 0;
	}
}

@media screen and (max-width: 640px) {
	.vinext_wc_notice_bar__inner {
		width: calc(100% - 24px);
	}

	.vinext_wc_notice_bar .woocommerce-message {
		padding: 16px 16px 16px 56px;
		font-size: 15px;
		line-height: 1.4;
	}

	.vinext_wc_notice_bar .woocommerce-message::before,
	.vinext_wc_notice_bar .woocommerce-error::before,
	.vinext_wc_notice_bar .woocommerce-info::before {
		left: 16px;
		top: 18px;
	}

	.vinext_wc_notice_bar .button.wc-forward {
		width: 100%;
		text-align: center;
	}
}


.poly_info__cta .single_add_to_cart_button,
.poly_info__cta .single_add_to_cart_button.button,
.poly_info__cta .single_add_to_cart_button.button.alt {
	background: rgba(40, 56, 129, 1);
	border-color: rgba(40, 56, 129, 1);
	color: #fff;
}

.poly_info__cta .single_add_to_cart_button:hover,
.poly_info__cta .single_add_to_cart_button.button:hover,
.poly_info__cta .single_add_to_cart_button.button.alt:hover,
.poly_info__cta .single_add_to_cart_button:focus,
.poly_info__cta .single_add_to_cart_button.button:focus,
.poly_info__cta .single_add_to_cart_button.button.alt:focus {
	background: rgba(61, 81, 171, 1);
	border-color: rgba(61, 81, 171, 1);
	color: #fff;
}


.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    height: 36px;
    font-size: 20px;
}



/* =========================
   BREAKPOINTS
========================= */

@media only screen and (min-width: 801px) and (max-width: 991px) {
	.poly_prodotto__wrap {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.poly_info {
		padding-top: 0;
	}

	.poly_gallery__thumbsWrap {
		margin-top: 18px;
		padding: 0 50px;
	}

	.poly_gallery__thumbsTrack {
		gap: 18px;
	}

	.poly_gallery__thumb {
		flex-basis: calc((100% - 36px) / 3);
	}

	.poly_lightbox__media {
		padding: 32px 64px;
	}

	.poly_lightbox__nav--prev {
		left: 14px;
	}

	.poly_lightbox__nav--next {
		right: 14px;
	}
}

@media only screen and (max-width: 800px) {
	.poly_prodotto {
		width: 92%;
	}

	.poly_prodotto__wrap {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.poly_info {
		padding-top: 0;
	}

	.poly_info__linea {
		margin: 22px 0;
	}

	.poly_gallery__thumbsWrap {
		margin-top: 12px;
		padding: 0 42px;
	}

	.poly_gallery__thumbsTrack {
		gap: 10px;
	}

	.poly_gallery__thumb {
		flex-basis: calc((100% - 20px) / 3);
	}

	.poly_gallery__thumbNav {
		width: 36px;
		height: 36px;
	}

	.poly_gallery__thumbNav svg {
		width: 14px;
		height: 14px;
	}

	.poly_gallery__thumb--video .poly_gallery__play {
		width: 54px;
		height: 54px;
	}

	.poly_gallery__thumb--video .poly_gallery__play::before {
		border-top-width: 9px;
		border-bottom-width: 9px;
		border-left-width: 14px;
	}

	.poly_lightbox__dialog {
		width: 100%;
	}

	.poly_lightbox__media {
		padding: 20px 14px 82px;
	}

	.poly_lightbox__media img,
	.poly_lightbox__media video,
	.poly_lightbox__media iframe {
		max-height: 82vh;
	}

	.poly_lightbox__close {
		top: 10px;
		right: 10px;
		width: 48px;
		height: 48px;
	}

	.poly_lightbox__nav {
		top: auto;
		bottom: 12px;
		transform: none;
		width: 48px;
		height: 48px;
	}

	.poly_lightbox__close:hover,
	.poly_lightbox__nav:hover {
		transform: scale(1.04);
	}

	.poly_lightbox__close svg,
	.poly_lightbox__nav svg {
		width: 18px;
		height: 18px;
	}

	.poly_lightbox__nav--prev {
		left: calc(50% - 58px);
	}

	.poly_lightbox__nav--next {
		right: calc(50% - 58px);
	}
}