/**
 * Doctorspy product detail v1.
 *
 * The body class is added only to WooCommerce product pages. Keeping every
 * selector below that boundary lets the legacy catalogue and checkout retain
 * their existing presentation while the product-detail template is migrated.
 */

body.ds-product-single-v1 {
	--ds-color-bg-page: #ffffff;
	--ds-color-bg-subtle: #f3f6f9;
	--ds-color-bg-highlight: #edf4fb;
	--ds-color-text-secondary: #68717c;
	--ds-color-brand-strong: #1e5f9e;
	--ds-color-brand-dark: #0f578a;
	--ds-color-action-subtle: #fff0e9;
	--ds-color-border-default: #d7dde4;
	--ds-color-danger: #b42318;
	--ds-color-warning: #8a6600;
	--ds-radius-8: 8px;
	--ds-radius-12: 12px;
	--ds-radius-pill: 999px;
	background: var(--ds-color-bg-page);
	color: var(--ds-color-text-body);
	font-family: "DM Sans", Arial, sans-serif;
}

/* Keep the outer .doctorspy-container on the shared site width and gutters. */
body.ds-product-single-v1 .doctorspy-woocommerce-main,
body.ds-product-single-v1 .doctorspy-woocommerce-container {
	width: 100%;
	max-width: none;
}

body.ds-product-single-v1 #primary,
body.ds-product-single-v1 .doctorspy-woocommerce-container {
	margin: 0 !important;
}

body.ds-product-single-v1 #primary {
	width: 100% !important;
	min-width: 0;
}

body.ds-product-single-v1 .woocommerce-notices-wrapper {
	width: 100%;
	max-width: var(--ds-content-max-width);
	margin-inline: auto;
}

body.ds-product-single-v1 .woocommerce-notices-wrapper:empty {
	display: none;
}

body.ds-product-single-v1 .ds-product-single__shell,
body.ds-product-single-v1 section.related.products {
	width: 100%;
	max-width: var(--ds-content-max-width);
	margin-inline: auto;
}

body.ds-product-single-v1 .ds-product-single__shell {
	padding: 34px 0 0;
}

/* Override legacy justified copy without changing CTA or badge alignment. */
body.ds-product-single-v1 .ds-product-single__shell :is(p, ul, ol, li, blockquote):not(.has-text-align-center):not(.has-text-align-right),
body.ds-product-single-v1 .ds-product-single__shell .titolo-giustificato,
body.ds-product-single-v1 .ds-product-single__shell .single-product-category {
	text-align: left !important;
}

/* Product layout spacing; breadcrumb typography is shared in style.css. */
body.ds-product-single-v1 #product-breadcrumbs {
	margin: 0 0 32px;
}

body.ds-product-single-v1 a:focus-visible,
body.ds-product-single-v1 button:focus-visible,
body.ds-product-single-v1 input:focus-visible,
body.ds-product-single-v1 select:focus-visible,
body.ds-product-single-v1 [role="tabpanel"]:focus-visible {
	outline: 3px solid rgba(30, 95, 158, 0.35);
	outline-offset: 2px;
}

/* Product hero ----------------------------------------------------------- */

body.ds-product-single-v1 .ds-product-hero {
	display: grid;
	grid-template-areas:
		"gallery summary"
		"help summary";
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	column-gap: 48px;
	row-gap: 16px;
	align-items: start;
}

body.ds-product-single-v1 .ds-product-hero__gallery {
	grid-area: gallery;
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary {
	grid-area: summary;
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-hero__help {
	grid-area: help;
	min-width: 0;
}

/* JavaScript groups the original gallery/help nodes only on two-column views. */
@media (min-width: 901px) {
	body.ds-product-single-v1 .ds-product-hero.ds-product-hero--sticky-visual {
		grid-template-areas: "visual summary";
		grid-template-rows: auto;
	}

	body.ds-product-single-v1 .ds-product-hero__visual {
		position: sticky;
		top: var(--ds-product-visual-top, 16px);
		display: flex;
		flex-direction: column;
		grid-area: visual;
		gap: 16px;
		align-self: start;
		min-width: 0;
	}
}

body.ds-product-single-v1.woocommerce #content div.product div.images,
body.ds-product-single-v1.woocommerce #content div.product div.summary,
body.ds-product-single-v1.woocommerce-page #content div.product div.images,
body.ds-product-single-v1.woocommerce-page #content div.product div.summary {
	float: none;
	width: 100%;
	margin: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary.summary.entry-summary {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	align-self: flex-start;
	width: auto;
	margin: 0 0 16px;
	padding: 0;
	color: var(--ds-color-success);
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability::before {
	display: block;
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 50%;
	content: "";
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability--in-stock::before {
	animation: ds-stock-dot-pulse 2.4s ease-in-out infinite;
	transform-origin: center;
	will-change: opacity, transform;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability--out-of-stock {
	color: var(--ds-color-danger);
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability--backorder {
	color: #f2cb05;
}

body.ds-product-single-v1 .ds-product-hero__summary .product_title {
	margin: 0 0 16px;
	padding: 0;
	color: var(--ds-color-text-primary);
	font-size: clamp(28px, 2.25vw, 34px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.12;
	text-transform: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-code {
	margin: 0 0 5px;
	color: var(--ds-color-text-secondary);
	font-size: 14px !important;
	font-weight: 400;
	line-height: 18px;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-code__label {
	font-weight: 400;
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-code__value {
	font-weight: 700;
}

body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo,
body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo .price,
body.ds-product-single-v1.product-type-variable .blocco-prezzo,
body.ds-product-single-v1 .product-type-variable .blocco-prezzo {
	display: block !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo {
	margin: 0 0 16px;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .blocco-prezzo .price {
	margin: 0 !important;
	color: var(--ds-color-brand-strong) !important;
	font-size: 35px !important;
	font-weight: 700 !important;
	letter-spacing: -0.015em;
	line-height: 42px !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .price .woocommerce-Price-amount,
body.ds-product-single-v1 .ds-product-hero__summary .price_on_inquiry {
	color: inherit;
	font-size: inherit !important;
	font-weight: inherit;
}

body.ds-product-single-v1 .ds-product-hero__summary .price del {
	margin-right: 8px;
	color: var(--ds-color-text-secondary);
	font-size: 18px !important;
	font-weight: 500;
	opacity: 0.75 !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo .price del {
	color: #3675b6;
	font-size: 25px !important;
	opacity: 0.5 !important;
}

/* Atomic inline boxes keep the old-price strike-through off nonzero cents. */
body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo .price del sup {
	display: inline-block;
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo .price del sup.ds-price-decimals--zero {
	display: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .price del .woocommerce-Price-amount {
	font-size: inherit !important;
	font-weight: inherit !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .price ins {
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .countdown-container,
body.ds-product-single-v1 .ds-product-hero__summary .countdown-alt-text,
body.ds-product-single-v1 .ds-product-hero__summary .online-only {
	max-width: 100%;
}

/* Native product gallery ------------------------------------------------- */

body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery,
body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery--sticky {
	position: relative !important;
	top: auto !important;
	float: none !important;
	display: flex;
	flex-direction: column;
	width: 100% !important;
	height: auto;
	margin: 0 !important;
	opacity: 1;
}

body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__trigger,
body.ds-product-single-v1 .ds-product-hero__gallery .onsale-badge-product-page,
body.ds-product-single-v1 .ds-product-hero__gallery .best-seller-badge-product-page,
body.ds-product-single-v1 .ds-product-hero__gallery .itsnew-badge-product-page,
body.ds-product-single-v1 .ds-product-hero__gallery .best-quality-badge-product-page {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper,
body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery > .flex-viewport {
	order: 1;
	width: 100%;
	max-width: none;
	margin: 0 0 16px;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery.flexslider > .woocommerce-product-gallery__wrapper {
	margin: 0;
	border: 0;
	border-radius: 0;
}

body.ds-product-single-v1 .ds-product-hero__gallery .flex-viewport .woocommerce-product-gallery__wrapper,
body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image,
body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image > a {
	height: auto;
}

body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__wrapper {
	margin: 0;
}

body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image,
body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image > a {
	display: block !important;
	width: 100%;
}

body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image {
	overflow: hidden;
	border: 0;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image > img:not(.zoomImg),
body.ds-product-single-v1 .ds-product-hero__gallery .woocommerce-product-gallery__image > a > img,
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__gallery div.images .woocommerce-product-gallery__image > img:not(.zoomImg),
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__gallery div.images .woocommerce-product-gallery__image > a > img {
	display: block;
	width: 100% !important;
	height: auto !important;
	margin: 0;
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video {
	position: relative;
	min-height: 0;
	aspect-ratio: 608 / 500;
	overflow: hidden;
	background: #0c1823;
	border: 0;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video .embed-container,
body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video iframe,
body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video-trigger {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: 100%;
	margin: 0;
	border: 0;
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video-trigger {
	position: relative;
	padding: 0;
	overflow: hidden;
	background: #0c1823;
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-12);
	cursor: pointer;
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video .embed-container {
	overflow: hidden;
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video-trigger img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 0.78;
}

body.ds-product-single-v1 .ds-product-hero__gallery .ds-product-gallery__video-trigger > span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding-left: 4px;
	color: #fff;
	font-size: 22px;
	background: var(--ds-color-brand-strong);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs {
	order: 2;
	display: flex !important;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0 0 2px;
	overflow-x: auto !important;
	overflow-y: hidden;
	list-style: none;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs li {
	float: none !important;
	display: block;
	flex: 0 0 72px;
	width: 72px !important;
	height: 72px;
	margin: 0 !important;
	overflow: hidden;
	background: var(--ds-color-bg-subtle);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs li img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0;
	padding: 0;
	object-fit: cover;
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-8);
	opacity: 1;
	cursor: pointer;
}

body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs li img.flex-active {
	border: 2px solid var(--ds-color-brand-strong);
}

/* Delivery and plugin-owned Klarna placement ---------------------------- */

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-logistics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

body.ds-product-single-v1 .ds-product-logistics__item {
	display: flex;
	gap: 12px;
	align-items: center;
	min-width: 0;
	min-height: 64px;
	padding: 12px 16px;
	background: var(--ds-color-bg-subtle);
	border: 0 !important;
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-logistics__item:only-child,
body.ds-product-single-v1 .ds-product-logistics--premium-hidden .ds-product-logistics__item--fermopoint,
body.ds-product-single-v1 .ds-product-logistics--fermopoint-hidden .ds-product-logistics__item--premium {
	grid-column: 1 / -1;
}

body.ds-product-single-v1 .ds-product-logistics[hidden],
body.ds-product-single-v1 .ds-product-logistics__item[hidden] {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-logistics__image {
	display: block;
	flex: 0 0 32px;
	width: 32px !important;
	height: 32px !important;
	object-fit: contain;
}

body.ds-product-single-v1 .ds-product-logistics__item--premium .ds-product-logistics__image {
	box-sizing: border-box;
	flex-basis: 40px;
	width: 40px !important;
	height: 40px !important;
	max-height: none;
	padding: 8px;
	background: #fff;
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-logistics__item p {
	min-width: 0;
	margin: 0;
	color: var(--ds-color-text-secondary);
	font-size: 14px !important;
	font-weight: 400;
	line-height: 18px;
}

body.ds-product-single-v1 .ds-product-logistics__item p strong,
body.ds-product-single-v1 .ds-product-logistics__item p span {
	display: block;
}

body.ds-product-single-v1 .ds-product-logistics__item p strong {
	margin-bottom: 0;
	color: var(--ds-color-text-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

body.ds-product-single-v1 .ds-product-logistics__item p .ds-product-logistics__delivery-line {
	display: flex;
	gap: 3px;
	align-items: center;
	height: 18px;
}

body.ds-product-single-v1 .ds-product-logistics__item p .ds-product-logistics__delivery-line > span {
	display: inline-flex;
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint {
	--ds-fermopoint-padding: 16px;
	--ds-fermopoint-icon-size: 40px;
	--ds-fermopoint-pin-size: 24px;
	position: relative;
	padding: var(--ds-fermopoint-padding);
	background: #b65358;
	border-radius: 10px;
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint p {
	/* Slightly muted white, retaining AA contrast on the muted BRT red. */
	color: rgba(255, 255, 255, 0.96);
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint p strong {
	color: #fff;
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint .ds-tooltip__trigger:hover,
body.ds-product-single-v1 .ds-product-logistics__item--fermopoint .ds-tooltip__trigger[aria-expanded="true"] {
	color: inherit;
	background: transparent;
}

/* Reuse the existing decorative pin as a mask; keep its markup and asset intact. */
body.ds-product-single-v1 .ds-product-logistics__image--fermopoint {
	display: none;
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint::before {
	flex: 0 0 var(--ds-fermopoint-icon-size);
	width: var(--ds-fermopoint-icon-size);
	height: var(--ds-fermopoint-icon-size);
	background: #fff;
	border-radius: var(--ds-radius-8);
	content: "";
}

body.ds-product-single-v1 .ds-product-logistics__item--fermopoint::after {
	position: absolute;
	top: 50%;
	left: calc(var(--ds-fermopoint-padding) + 8px);
	width: var(--ds-fermopoint-pin-size);
	height: var(--ds-fermopoint-pin-size);
	background: #b65358;
	-webkit-mask: url("../assets/product-single-v1/pin.svg") center / contain no-repeat;
	mask: url("../assets/product-single-v1/pin.svg") center / contain no-repeat;
	transform: translateY(-50%);
	pointer-events: none;
	content: "";
}

body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo:has(> .ds-product-klarna) {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-items: center;
}

body.ds-product-single-v1 .blocco-prezzo:has(> .ds-product-klarna) > .price {
	flex: 0 0 auto;
	max-width: 100%;
}

body.ds-product-single-v1 .ds-product-klarna {
	flex: 1 1 226px;
	min-width: min(100%, 226px);
	max-width: 350px;
	margin: 0;
	padding: 0;
}

body.ds-product-single-v1 .ds-product-klarna > *,
body.ds-product-single-v1 .ds-product-klarna klarna-placement {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 !important;
}

/* Only Klarna's documented parts are styled; message, terms and CTA stay official. */
body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-container) {
	box-sizing: border-box;
	gap: 10px;
	align-items: center;
	min-height: 40px;
	max-width: 100%;
	padding: 6px 10px;
	background: #fff2f7;
	border: 1px solid #f2cadb;
	border-radius: 20px;
}

body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-badge) {
	width: auto;
	height: 22px;
}

body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-message),
body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-cta) {
	color: #0b051d;
	font-family: inherit;
	font-size: 13px;
	line-height: 16px;
}

body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-cta):focus-visible {
	outline: 2px solid var(--ds-color-brand-strong);
	outline-offset: 2px;
}

/* Native WooCommerce short description --------------------------------- */

body.ds-product-single-v1 .ds-product-short-description {
	width: 100%;
	margin: 0 0 16px;
	padding: 18px;
	color: var(--ds-color-text-primary);
	background: var(--ds-color-bg-page);
	border: 1px solid #c7d6e5;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-short-description h2 {
	margin: 0 0 8px;
	color: var(--ds-color-text-primary);
	font-size: 16px !important;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 22px !important;
	text-transform: none;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description {
	margin: 0;
	color: var(--ds-color-text-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description > :first-child {
	margin-top: 0;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description > :last-child {
	margin-bottom: 0;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description p {
	margin: 0 0 8px;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description ul,
body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description li {
	position: relative;
	min-height: 20px;
	margin: 0;
	padding-left: 30px;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
}

body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description li::before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url("../assets/product-single-v1/check.svg") center / contain no-repeat;
	content: "";
}

body.ds-product-single-v1 .ds-product-disclaimer {
	width: 100%;
	margin: 0 0 16px;
	padding: 14px 18px;
	color: #8f2f36;
	background: #fff8f8;
	border: 1px solid #b65358;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-disclaimer__content,
body.ds-product-single-v1 .ds-product-disclaimer__content * {
	font-size: 14px !important;
	font-weight: 700;
	line-height: 20px;
}

body.ds-product-single-v1 .ds-product-disclaimer__content > :first-child {
	margin-top: 0;
}

body.ds-product-single-v1 .ds-product-disclaimer__content > :last-child {
	margin-bottom: 0;
}

body.ds-product-single-v1 .ds-product-disclaimer__content a {
	color: inherit;
}

/* Variations, quantity and native add-to-cart ---------------------------- */

body.ds-product-single-v1 .ds-product-hero__summary form.cart {
	--ds-cart-gap: 12px;

	display: flex !important;
	flex-wrap: wrap;
	gap: var(--ds-cart-gap);
	align-items: stretch;
	width: 100%;
	margin: 0 !important;
	padding: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart::before,
body.ds-product-single-v1 .ds-product-hero__summary form.cart::after {
	display: none !important;
	content: none !important;
}

body.ds-product-single-v1.woocommerce div.product.product-type-simple .ds-product-hero__summary form.cart {
	display: flex !important;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart > .quantity,
body.ds-product-single-v1 .ds-product-hero__summary .woocommerce-variation-add-to-cart > .quantity,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_button > .quantity {
	display: grid !important;
	flex: 0 0 96px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 96px;
	height: 52px;
	margin: 0 !important;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-hero__summary .quantity .ds-quantity__button,
body.ds-product-single-v1 .ds-product-hero__summary .quantity input.qty {
	width: 100% !important;
	min-width: 0;
	height: 50px;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--ds-color-text-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 50px;
	text-align: center;
	background: transparent;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .quantity .ds-quantity__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

body.ds-product-single-v1 .ds-product-hero__summary .quantity .ds-quantity__button:hover {
	background: var(--ds-color-bg-subtle);
}

body.ds-product-single-v1 .ds-product-hero__summary .quantity input.qty {
	-moz-appearance: textfield;
}

body.ds-product-single-v1 .ds-product-hero__summary .quantity input.qty::-webkit-inner-spin-button,
body.ds-product-single-v1 .ds-product-hero__summary .quantity input.qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button.single_add_to_cart_button,
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .bundle_button .button,
body.ds-product-single-v1 .ds-product-hero__summary #custom-inquiry-button {
	display: inline-flex !important;
	flex: 1 1 300px;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 52px;
	margin: 0 !important;
	padding: 14px 24px !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700;
	line-height: 20px !important;
	text-align: center;
	text-transform: uppercase;
	background: var(--ds-color-action-primary) !important;
	border: 1px solid var(--ds-color-action-primary) !important;
	border-radius: var(--ds-radius-8) !important;
	box-shadow: none;
	cursor: pointer;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button.single_add_to_cart_button:hover,
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button.single_add_to_cart_button:focus-visible,
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .bundle_button .button:hover,
body.ds-product-single-v1 .ds-product-hero__summary #custom-inquiry-button:hover {
	background: var(--ds-color-action-hover) !important;
	border-color: var(--ds-color-action-hover) !important;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button.disabled,
body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

body.ds-product-single-v1 .ds-product-hero__summary form.variations_form,
body.ds-product-single-v1 .ds-product-hero__summary form.grouped_form,
body.ds-product-single-v1 .ds-product-hero__summary form.bundle_form:not(.bundle_sells_form) {
	display: block !important;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations {
	width: 100%;
	margin: 0 0 16px;
	border: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations tbody,
body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations tr {
	display: block;
	width: 100%;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations tr + tr {
	margin-top: 12px;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations th,
body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations td {
	display: block;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations th {
	margin: 0 0 6px;
	color: var(--ds-color-text-primary);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	text-align: left;
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .variations select {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 40px 0 14px;
	color: var(--ds-color-text-primary);
	font-size: 14px;
	line-height: 46px;
	background-color: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default) !important;
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-hero__summary form.cart .reset_variations {
	display: inline-flex !important;
	margin-top: 6px;
	color: var(--ds-color-brand-strong);
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
}

body.ds-product-single-v1 .ds-product-hero__summary .single_variation_wrap,
body.ds-product-single-v1 .ds-product-hero__summary .woocommerce-variation-add-to-cart,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_wrap,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_button {
	width: 100%;
}

body.ds-product-single-v1 .ds-product-hero__summary .woocommerce-variation-add-to-cart,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_button {
	--ds-cart-gap: 12px;

	display: flex !important;
	flex-wrap: wrap;
	gap: var(--ds-cart-gap);
	align-items: stretch;
}

body.ds-product-single-v1 .ds-product-hero__summary .single_variation .woocommerce-variation-price,
body.ds-product-single-v1 .ds-product-hero__summary .single_variation .woocommerce-variation-availability {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .product_meta {
	width: 100%;
	margin: 0;
	padding: 0 !important;
	border: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary .product_meta > .sku_wrapper,
body.ds-product-single-v1 .ds-product-hero__summary .product_meta > .posted_in,
body.ds-product-single-v1 .ds-product-hero__summary .product_meta > .tagged_as {
	display: none;
}

/* This action sits in the vertical summary, unlike the horizontal cart row. */
body.ds-product-single-v1 .ds-product-hero__summary #custom-inquiry-button.button {
	flex: 0 0 auto;
	width: 100%;
}

body.ds-product-single-v1 .ds-product-hero__summary > .stock {
	display: none !important;
}

/* Purchase assurances ---------------------------------------------------- */

body.ds-product-single-v1 .ds-product-trust {
	flex: 0 0 100%;
	width: 100%;
	margin: 12px 0 0;
}

body.ds-product-single-v1 .ds-product-trust__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.ds-product-single-v1 .ds-product-trust__item {
	min-width: 0;
	margin: 0;
	padding: 0;
}

body.ds-product-single-v1 .ds-product-trust__item > a,
body.ds-product-single-v1 .ds-product-trust__item > span {
	display: flex;
	gap: 7px;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	color: var(--ds-color-text-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	text-align: left;
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-trust__item img {
	display: block;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

body.ds-product-single-v1 .ds-product-trust__item a:hover {
	color: var(--ds-color-brand-strong);
}

/* Real WooCommerce Product Bundles bundle-sells output ------------------ */

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_title {
	flex: 0 0 100%;
	width: 100%;
	margin: 16px 0 0 !important;
	padding: 18px 18px 8px;
	background: var(--ds-color-bg-subtle);
	border-radius: var(--ds-radius-12) var(--ds-radius-12) 0 0;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_title h3 {
	margin: 0;
	color: var(--ds-color-text-primary);
	font-size: 18px !important;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 24px;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_form.bundle_sells_form {
	--ds-bundle-image-size: 64px;
	--ds-bundle-action-width: 140px;
	--ds-bundle-item-gap: 14px;
	flex: 0 0 100%;
	width: 100%;
	margin: 0 0 16px !important;
	padding: 0 18px 18px !important;
	background: var(--ds-color-bg-subtle) !important;
	border-radius: 0 0 var(--ds-radius-12) var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_title + .bundle_form.bundle_sells_form {
	margin-top: calc(0px - var(--ds-cart-gap, 12px)) !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_summary {
	position: relative;
	display: grid;
	grid-template-columns: var(--ds-bundle-image-size) minmax(0, 1fr);
	gap: var(--ds-bundle-item-gap);
	align-items: center;
	min-height: 64px;
	margin: 0 !important;
	padding: 6px 0 !important;
	border: 0 !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_summary + .bundled_product_summary {
	border-top: 1px solid var(--ds-color-border-default) !important;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .bundle_sells_form div.bundled_product_images,
body.ds-product-single-v1.woocommerce-page div.product .ds-product-hero__summary .bundle_sells_form div.bundled_product_images {
	float: none;
	grid-column: 1;
	width: var(--ds-bundle-image-size) !important;
	margin: 0;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_image {
	width: var(--ds-bundle-image-size);
	height: var(--ds-bundle-image-size);
	margin: 0;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_image a,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0;
	object-fit: contain;
}

body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .bundle_sells_form div.bundled_product_summary:not(.thumbnail_hidden) .details,
body.ds-product-single-v1.woocommerce-page div.product .ds-product-hero__summary .bundle_sells_form div.bundled_product_summary:not(.thumbnail_hidden) .details,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .details {
	float: none;
	grid-column: 2;
	width: 100% !important;
	min-width: 0;
	margin: 0;
	padding: 0 calc(var(--ds-bundle-action-width) + var(--ds-bundle-item-gap)) 0 0 !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_title.product_title {
	margin: 0 0 3px !important;
	color: var(--ds-color-text-primary) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 19px !important;
	overflow-wrap: anywhere;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_title a {
	color: inherit !important;
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_title a:hover {
	color: var(--ds-color-brand-strong) !important;
	text-decoration: underline;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundled_product_title_link {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price .woocommerce-Price-amount,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .woocommerce-variation-price .price,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .woocommerce-variation-price .price .woocommerce-Price-amount {
	margin: 0;
	color: var(--ds-color-brand-strong) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 20px !important;
}

/* Match the native strike-through to the figures and keep the normal word space. */
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price del {
	margin-right: 0;
	font-size: inherit !important;
	font-weight: 400;
	line-height: inherit;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price del .woocommerce-Price-amount,
body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .woocommerce-variation-price .price del .woocommerce-Price-amount {
	font-weight: inherit !important;
}

body.ds-product-single-v1 .bundle_sells_form .ds-bundle-sell-state,
body.ds-product-single-v1 .bundle_sells_form .details > .cart {
	display: none !important;
}

body.ds-product-single-v1 .bundle_sells_form .details,
body.ds-product-single-v1 .bundle_sells_form .bundled_item_optional {
	position: static;
}

body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .ds-bundle-sell__button {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ds-bundle-action-width);
	min-height: 40px;
	margin: 0;
	padding: 9px 12px;
	color: var(--ds-color-text-primary);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: 10px;
	box-shadow: none;
	transform: translateY(-50%);
	cursor: pointer;
}

body.ds-product-single-v1 .bundle_sells_form .ds-bundle-sell__button:hover:not(:disabled) {
	color: var(--ds-color-brand-strong);
	border-color: var(--ds-color-brand-strong);
}

body.ds-product-single-v1 .bundle_sells_form .ds-bundle-sell__button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

body.ds-product-single-v1 .bundle_sells_form .ds-bundle-sell__button[aria-busy="true"] {
	cursor: progress;
}

body.ds-product-single-v1:not(.ds-product-cart-ready) [data-ds-bundle-sell-add] {
	display: none;
}

body.ds-product-single-v1 .bundle_sells_form .ds-bundle-sell__discount {
	margin: 4px 0 0;
	color: var(--ds-color-text-secondary);
	font-size: 12px !important;
	font-weight: 400;
	line-height: 16px;
}

/* Viewport purchase summary; its action delegates to the native cart form. */
body.ds-product-single-v1.ds-product-sticky-cart-visible {
	padding-bottom: var(--ds-product-sticky-cart-height, 84px);
}

body.ds-product-single-v1 .ds-product-sticky-cart {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	visibility: hidden;
	opacity: 0;
	background: var(--ds-color-bg-page);
	border-top: 1px solid var(--ds-color-border-default);
	box-shadow: 0 -8px 28px rgba(23, 25, 28, 0.14);
	transform: translateY(100%);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	pointer-events: none;
}

body.ds-product-single-v1 .ds-product-sticky-cart.is-visible {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

body.ds-product-single-v1 .ds-product-sticky-cart__inner {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 300px);
	gap: 16px;
	align-items: center;
	width: 100%;
	max-width: var(--ds-content-max-width);
	margin-inline: auto;
}

body.ds-product-single-v1 .ds-product-sticky-cart__media {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-sticky-cart__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
}

body.ds-product-single-v1 .ds-product-sticky-cart__summary {
	display: grid;
	gap: 0;
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-sticky-cart__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--ds-color-text-primary);
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price {
	color: var(--ds-color-brand-strong);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 28px;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit !important;
	font-weight: inherit;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price del {
	margin-right: 0;
	color: #3675b6;
	font-size: 17px;
	font-weight: 400;
	opacity: 0.5;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price del sup {
	display: inline-block;
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price del sup.ds-price-decimals--zero {
	display: none;
}

body.ds-product-single-v1 .ds-product-sticky-cart__price ins {
	text-decoration: none;
}

body.ds-product-single-v1 .ds-product-sticky-cart__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 18px;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
	background: var(--ds-color-action-primary);
	border: 1px solid var(--ds-color-action-primary);
	border-radius: var(--ds-radius-8);
	box-shadow: none;
	cursor: pointer;
}

body.ds-product-single-v1 .ds-product-sticky-cart__button:hover:not(:disabled) {
	background: var(--ds-color-action-hover);
	border-color: var(--ds-color-action-hover);
}

body.ds-product-single-v1 .ds-product-sticky-cart__button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

body.ds-product-single-v1 .ds-product-sticky-cart__button[aria-busy="true"] {
	cursor: progress;
}

/* In-page cart feedback; the header itself keeps its existing markup. */
body.ds-product-single-v1 .ds-cart-feedback {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 10000;
	display: grid;
	gap: 14px;
	width: calc(100% - 32px);
	max-width: 460px;
	max-height: calc(100vh - 32px);
	padding: 20px;
	overflow: auto;
	color: var(--ds-color-text-primary);
	font-size: 14px;
	line-height: 20px;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-12);
	box-shadow: 0 8px 32px rgba(23, 25, 28, 0.16);
}

body.ds-product-single-v1.ds-product-sticky-cart-visible .ds-cart-feedback {
	bottom: calc(var(--ds-product-sticky-cart-height, 84px) + 16px);
}

body.ds-product-single-v1.ds-product-sticky-cart-visible #tidio-chat {
	transform: translateY(calc(-1 * var(--ds-product-sticky-cart-height, 84px))) !important;
}

body.ds-product-single-v1.ds-cart-feedback-visible #tidio-chat {
	transform: translateY(calc(-1 * (var(--ds-cart-feedback-height, 0px) + 16px))) !important;
}

body.ds-product-single-v1.ds-product-sticky-cart-visible.ds-cart-feedback-visible #tidio-chat {
	transform: translateY(calc(-1 * (var(--ds-cart-feedback-height, 0px) + var(--ds-product-sticky-cart-height, 84px) + 24px))) !important;
}

body.ds-product-single-v1 .ds-cart-feedback[hidden] {
	display: none !important;
}

body.ds-product-single-v1 .ds-cart-feedback.is-error {
	border-color: var(--ds-color-danger);
}

body.ds-product-single-v1 .ds-cart-feedback :is(.woocommerce-message, .woocommerce-error, .woocommerce-info) {
	margin: 0;
	padding: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	background: transparent;
	border: 0;
	box-shadow: none;
}

body.ds-product-single-v1 .ds-cart-feedback :is(.woocommerce-message, .woocommerce-error, .woocommerce-info)::before {
	display: none;
}

body.ds-product-single-v1 .ds-cart-feedback .wc-block-components-notice-banner {
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	color: #4ab866;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.ds-product-single-v1 .ds-cart-feedback .wc-block-components-notice-banner__content {
	color: #4ab866;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

body.ds-product-single-v1 .ds-cart-feedback .wc-block-components-notice-banner > svg {
	flex: 0 0 24px;
	background: #4ab866;
}

body.ds-product-single-v1 .ds-cart-feedback .wc-block-components-notice-banner.is-success > svg {
	margin-right: 8px;
	border-radius: 50%;
}

body.ds-product-single-v1 .ds-cart-feedback .wc-block-components-notice-banner > svg path {
	fill: #fff;
}

body.ds-product-single-v1 .ds-cart-feedback__content {
	padding-right: 34px;
	font-weight: 700;
}

body.ds-product-single-v1 .ds-cart-feedback__summary[hidden] {
	display: none !important;
}

body.ds-product-single-v1 .ds-cart-feedback__product {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

body.ds-product-single-v1 .ds-cart-feedback__media {
	width: 88px;
	height: 88px;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-cart-feedback__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: contain;
}

body.ds-product-single-v1 .ds-cart-feedback__details {
	min-width: 0;
}

body.ds-product-single-v1 .ds-cart-feedback__code,
body.ds-product-single-v1 .ds-cart-feedback__title,
body.ds-product-single-v1 .ds-cart-feedback__price {
	margin: 0 !important;
}

body.ds-product-single-v1 .ds-cart-feedback__code {
	margin-bottom: 3px !important;
	color: var(--ds-color-text-secondary);
	font-size: 12px;
	line-height: 16px;
}

body.ds-product-single-v1 .ds-cart-feedback__code strong {
	font-weight: 700;
}

body.ds-product-single-v1 .ds-cart-feedback__title {
	margin-bottom: 7px !important;
	color: var(--ds-color-text-primary);
	font-size: 16px !important;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 20px !important;
}

body.ds-product-single-v1 .ds-cart-feedback__price,
body.ds-product-single-v1 .ds-cart-feedback__price .amount {
	color: var(--ds-color-brand-strong);
	font-size: 18px !important;
	font-weight: 700;
	line-height: 22px !important;
}

body.ds-product-single-v1 .ds-cart-feedback__price del {
	margin-right: 5px;
	opacity: 0.5;
}

body.ds-product-single-v1 .ds-cart-feedback__price ins {
	text-decoration: none;
}

body.ds-product-single-v1 .ds-cart-feedback__subtotal {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	padding-top: 14px;
	font-size: 15px;
	line-height: 20px;
	border-top: 1px solid var(--ds-color-border-default);
}

body.ds-product-single-v1 .ds-cart-feedback__subtotal > span {
	font-weight: 600;
}

body.ds-product-single-v1 .ds-cart-feedback__subtotal > strong,
body.ds-product-single-v1 .ds-cart-feedback__subtotal .amount {
	color: var(--ds-color-text-primary);
	font-size: 17px;
	font-weight: 700;
}

body.ds-product-single-v1 .ds-cart-feedback__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 10px 18px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	background: var(--ds-color-action-primary);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-cart-feedback__cart:hover,
body.ds-product-single-v1 .ds-cart-feedback__cart:focus-visible {
	color: #fff;
	background: var(--ds-color-action-hover);
}

body.ds-product-single-v1 .ds-cart-feedback__close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 32px;
	height: 32px;
	padding: 0;
	color: inherit;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

body.ds-product-single-v1 .ds-cart-feedback__close:hover {
	background: var(--ds-color-bg-subtle);
}

body.ds-product-single-v1 .ds-cart-feedback__close:focus-visible {
	outline: 2px solid var(--ds-color-brand-strong);
	outline-offset: 2px;
}

@media (max-width: 600px) {
	body.ds-product-single-v1 .ds-cart-feedback {
		right: 10px;
		width: calc(100% - 20px);
		padding: 16px;
	}

	body.ds-product-single-v1 .ds-cart-feedback__product {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 12px;
	}

	body.ds-product-single-v1 .ds-cart-feedback__media {
		width: 72px;
		height: 72px;
	}

	body.ds-product-single-v1 .ds-cart-feedback__title {
		font-size: 15px !important;
		line-height: 19px !important;
	}
}

/* Figma payment brands, backed by available WooCommerce gateways --------- */

@font-face {
	font-family: "DS Payment Inter";
	src: url("../fonts/InterVariable.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

body.ds-product-single-v1 .ds-product-payments {
	width: 100%;
	margin: 16px 0 0;
	padding: 13px 17px 15px;
	font-family: "DS Payment Inter", "DM Sans", Arial, sans-serif;
	background: var(--ds-color-bg-page);
	border: 1px solid #c7d6e5;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-payments__header {
	display: grid;
	gap: 3px;
	margin: 0 0 13px;
}

body.ds-product-single-v1 .ds-product-payments__header h2,
body.ds-product-single-v1 .ds-product-payments__header p {
	margin: 0 !important;
	font-family: inherit;
	letter-spacing: 0;
}

body.ds-product-single-v1 .ds-product-payments__header h2 {
	color: var(--ds-color-brand-strong);
	font-size: 14px !important;
	font-weight: 600;
	line-height: 18px !important;
}

body.ds-product-single-v1 .ds-product-payments__header p {
	color: #66727f;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

body.ds-product-single-v1 .ds-product-payments__list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 6px 10px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.ds-product-single-v1 .ds-product-payments__messaging {
	width: 100%;
	margin: 0 0 10px;
}

body.ds-product-single-v1 .ds-product-payments__messaging > * {
	max-width: 100%;
	margin: 0 !important;
}

body.ds-product-single-v1 .ds-product-payments__method {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 32px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: 6px;
}

body.ds-product-single-v1 .ds-product-payments__method--klarna {
	background: #ffa8cd;
	border-color: #ffa8cd;
}

body.ds-product-single-v1 .ds-product-payments__method picture {
	display: block;
	flex: 0 0 68px;
	width: 68px;
	height: 22px;
}

/* Keep the exported wordmarks at their native size; the CSS card supplies
 * the responsive border/background outside this central artwork window. */
body.ds-product-single-v1 .ds-product-payments__art {
	display: block;
	width: 68px;
	max-width: none;
	height: 22px;
	max-height: none;
	margin: 0 !important;
	object-fit: none;
	object-position: center;
}

@media (min-width: 901px) and (max-width: 1180px) {
	body.ds-product-single-v1 .ds-product-payments__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

body.ds-product-single-v1 .ds-product-hero__summary .ds-product-categories {
	width: 100%;
	margin: 12px 0 0;
	padding: 0;
	font-size: 13px !important;
	font-weight: 400;
	line-height: 19px;
	overflow-wrap: anywhere;
}

body.ds-product-single-v1 .ds-product-categories strong {
	font-weight: 700;
}

body.ds-product-single-v1 .ds-product-categories a {
	color: var(--ds-color-text-secondary);
	text-decoration: none;
}

/* Pre-purchase assistance ----------------------------------------------- */

body.ds-product-single-v1 .ds-product-help {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	width: 100%;
	min-height: 88px;
	padding: 14px 16px;
	overflow: hidden;
	color: #fff;
	background: var(--ds-color-brand-dark);
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-help__decor {
	position: absolute;
	z-index: 0;
	display: block;
	pointer-events: none;
}

body.ds-product-single-v1 .ds-product-help__decor--blue {
	top: 0;
	right: 32px;
	width: 170px;
	height: 100%;
}

body.ds-product-single-v1 .ds-product-help__decor--orange {
	right: 0;
	bottom: 0;
	width: 62px;
	height: 62px;
}

body.ds-product-single-v1 .ds-product-help__icon,
body.ds-product-single-v1 .ds-product-help__copy,
body.ds-product-single-v1 .ds-product-help__actions {
	position: relative;
	z-index: 1;
}

body.ds-product-single-v1 .ds-product-help__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

body.ds-product-single-v1 .ds-product-help__icon img {
	display: block;
	width: 24px;
	height: 24px;
}

body.ds-product-single-v1 .ds-product-help__copy {
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-help__copy h2,
body.ds-product-single-v1 .ds-product-help__copy p {
	margin: 0;
	color: inherit;
}

body.ds-product-single-v1 .ds-product-help__copy h2 {
	/* Keep the banner compact despite the legacy global mobile h2 rule. */
	font-size: 15px !important;
	font-weight: 700;
	line-height: 20px;
}

body.ds-product-single-v1 .ds-product-help__copy p {
	color: #dbeaf7;
	font-size: 13px;
	font-weight: 400;
	line-height: 17px;
}

body.ds-product-single-v1 .ds-product-help__actions {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 8px;
	width: 244px;
	max-width: 100%;
}

body.ds-product-single-v1 .ds-product-help__phone {
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-help [hidden] {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-help__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 11px 8px;
	color: var(--ds-help-action-color, #fff);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	background: var(--ds-help-action-bg, var(--ds-color-action-primary));
	border: 0;
	border-radius: var(--ds-radius-8);
	cursor: pointer;
}

body.ds-product-single-v1 .ds-product-help__cta:hover,
body.ds-product-single-v1 .ds-product-help__cta:focus-visible {
	color: var(--ds-help-action-color, #fff);
	background: var(--ds-help-action-hover, var(--ds-color-action-hover));
}

body.ds-product-single-v1 .ds-product-help__cta:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

body.ds-product-single-v1 .ds-product-help__cta--phone {
	--ds-help-action-color: var(--ds-color-brand-dark);
	--ds-help-action-bg: #fff;
	--ds-help-action-hover: #f3f6f9;
	--ds-help-action-icon: url('../assets/contatti/phone.svg');
}

body.ds-product-single-v1 .ds-product-help__cta--whatsapp {
	--ds-help-action-color: #073b22;
	--ds-help-action-bg: #25d366;
	--ds-help-action-hover: #20c25e;
	--ds-help-action-icon: url('../assets/contatti/whatsapp.svg');
}

body.ds-product-single-v1 .ds-product-help__action-icon {
	display: block;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: var(--ds-help-action-icon) center / contain no-repeat;
	mask: var(--ds-help-action-icon) center / contain no-repeat;
}

/* Product information and accessible tabs ------------------------------- */

body.ds-product-single-v1 .ds-product-single__information {
	margin-top: 32px;
}

body.ds-product-single-v1 .ds-product-info,
body.ds-product-single-v1 .ds-product-info__layout,
body.ds-product-single-v1 .ds-product-info__main {
	width: 100%;
	min-width: 0;
}

body.ds-product-single-v1 .ds-product-info__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 416px;
	gap: 40px;
	align-items: start;
}

body.ds-product-single-v1 .ds-product-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, max-content)) minmax(0, 1fr);
	column-gap: 16px;
	width: 100%;
}

body.ds-product-single-v1 .ds-product-tabs__list,
body.ds-product-single-v1 .ds-product-tabs__panels {
	display: contents;
}

body.ds-product-single-v1 .ds-product-tabs__tab {
	grid-row: 1;
	grid-column: var(--ds-tab-index);
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin: 0;
	padding: 12px 20px;
	color: var(--ds-color-text-secondary);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: var(--ds-radius-8) var(--ds-radius-8) 0 0;
	cursor: pointer;
}

body.ds-product-single-v1 .ds-product-tabs__tab:hover {
	color: var(--ds-color-brand-strong);
	background: var(--ds-color-bg-subtle);
}

body.ds-product-single-v1 .ds-product-tabs__tab.is-active,
body.ds-product-single-v1 .ds-product-tabs__tab[aria-selected="true"] {
	color: var(--ds-color-brand-strong);
	background: var(--ds-color-bg-subtle);
	border-bottom-color: var(--ds-color-brand-strong);
}

body.ds-product-single-v1 .ds-product-tabs__indicator {
	display: none;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
}

body.ds-product-single-v1 .ds-product-tabs__panel,
body.ds-product-single-v1.woocommerce div.product .ds-product-tabs__panel,
body.ds-product-single-v1.woocommerce div.product .woocommerce-tabs .panel {
	grid-row: 2;
	grid-column: 1 / -1;
	width: 100%;
	max-height: none !important;
	height: auto !important;
	margin: 0 !important;
	padding: 28px 0 0 !important;
	overflow: visible !important;
	color: var(--ds-color-text-body);
	font-size: 16px;
	line-height: 24px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

body.ds-product-single-v1 .ds-product-tabs__panel[hidden] {
	display: none !important;
}

body.ds-product-single-v1 .ds-product-tabs__panel > :first-child {
	margin-top: 0 !important;
}

body.ds-product-single-v1 .ds-product-tabs__panel > :last-child {
	margin-bottom: 0 !important;
}

body.ds-product-single-v1 .ds-product-tabs__panel h2,
body.ds-product-single-v1 .ds-product-tabs__panel h3,
body.ds-product-single-v1 .ds-product-tabs__panel h4 {
	color: var(--ds-color-text-primary);
	font-weight: 700;
	text-transform: none;
}

body.ds-product-single-v1 .ds-product-tabs__panel h2 {
	margin: 0 0 16px;
	font-size: 28px;
	letter-spacing: -0.02em;
	line-height: 34px;
}

body.ds-product-single-v1 .ds-product-tabs__panel h3 {
	margin: 24px 0 12px;
	font-size: 21px;
	line-height: 28px;
}

body.ds-product-single-v1 .ds-product-tabs__panel h4 {
	margin: 20px 0 10px;
	font-size: 17px;
	line-height: 24px;
}

body.ds-product-single-v1 .ds-product-tabs__panel p,
body.ds-product-single-v1 .ds-product-tabs__panel li,
body.ds-product-single-v1 .ds-product-tabs__panel td,
body.ds-product-single-v1 .ds-product-tabs__panel th {
	font-size: 16px;
	line-height: 24px;
}

body.ds-product-single-v1 .ds-product-tabs__panel p {
	margin: 0 0 16px;
}

body.ds-product-single-v1 .ds-product-tabs__panel ul,
body.ds-product-single-v1 .ds-product-tabs__panel ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

body.ds-product-single-v1 .ds-product-tabs__panel li + li {
	margin-top: 6px;
}

body.ds-product-single-v1 .ds-product-tabs__panel a {
	color: var(--ds-color-brand-strong);
	font-weight: 600;
}

body.ds-product-single-v1 .ds-product-tabs__panel img,
body.ds-product-single-v1 .ds-product-tabs__panel video,
body.ds-product-single-v1 .ds-product-tabs__panel iframe {
	max-width: 100%;
}

body.ds-product-single-v1 .ds-product-tabs__panel table {
	width: 100%;
	margin: 16px 0;
	border-collapse: collapse;
}

body.ds-product-single-v1 .ds-product-tabs__panel th,
body.ds-product-single-v1 .ds-product-tabs__panel td {
	padding: 10px 12px;
	text-align: left;
	border: 1px solid var(--ds-color-border-default);
}

body.ds-product-single-v1 .ds-product-tabs__panel th {
	color: var(--ds-color-text-primary);
	background: var(--ds-color-bg-subtle);
}

body.ds-product-single-v1 .ds-product-tabs__panel blockquote {
	margin: 20px 0;
	padding: 14px 18px;
	color: var(--ds-color-text-body);
	background: var(--ds-color-bg-subtle);
	border-left: 3px solid var(--ds-color-brand-strong);
}

/* The editor may contain feature grids from the approved product content. */
body.ds-product-single-v1 .ds-product-tabs__panel .wp-block-columns,
body.ds-product-single-v1 .ds-product-tabs__panel .ds-product-specs,
body.ds-product-single-v1 .ds-product-tabs__panel .specifiche-principali {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

body.ds-product-single-v1 .ds-product-tabs__panel .wp-block-column,
body.ds-product-single-v1 .ds-product-tabs__panel .ds-product-specs > *,
body.ds-product-single-v1 .ds-product-tabs__panel .specifiche-principali > * {
	min-width: 0;
	margin: 0;
	padding: 14px 16px;
	background: var(--ds-color-bg-subtle);
	border-radius: var(--ds-radius-8);
}

/* Information sidebar --------------------------------------------------- */

body.ds-product-single-v1 .ds-product-info-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
}

body.ds-product-single-v1 .ds-product-service-card {
	position: relative;
	isolation: isolate;
	height: 220px;
	margin: 0;
	overflow: hidden;
	color: #fff;
	background-color: #082747;
	background-position: center;
	background-size: cover;
	border-radius: var(--ds-radius-12);
}

body.ds-product-single-v1 .ds-product-service-card::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: "";
	pointer-events: none;
}

body.ds-product-single-v1 .ds-product-service-card--assistance {
	background-image: url("../assets/product-single-v1/sidebar/assistance.webp");
}

body.ds-product-single-v1 .ds-product-service-card--assistance::before {
	background: linear-gradient(90deg, rgba(8, 39, 71, 0.94) 0%, rgba(8, 39, 71, 0.55) 62%, rgba(8, 39, 71, 0.12) 100%);
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint {
	background-color: #4c1117;
	background-image: url("../assets/product-single-v1/sidebar/fermopoint.webp");
	border-radius: 14px;
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint::before {
	background: linear-gradient(90deg, rgba(76, 17, 23, 0.96) 0%, rgba(122, 37, 45, 0.74) 48%, rgba(122, 37, 45, 0.04) 100%);
}

body.ds-product-single-v1 .ds-product-service-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

body.ds-product-single-v1 .ds-product-service-card--assistance .ds-product-service-card__content {
	padding: 20px 22px 18px;
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__content {
	padding: 24px 20px 20px;
}

body.ds-product-single-v1 .ds-product-service-card__eyebrow,
body.ds-product-single-v1 .ds-product-service-card__body,
body.ds-product-single-v1 .ds-product-benefits__eyebrow {
	margin: 0;
	font-family: "DS Payment Inter", "DM Sans", Arial, sans-serif;
}

body.ds-product-single-v1 .ds-product-service-card__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 15px;
	text-transform: uppercase;
}

body.ds-product-single-v1 .ds-product-service-card--assistance .ds-product-service-card__eyebrow {
	margin-bottom: 13px;
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__eyebrow {
	margin-bottom: 12px;
	color: #ffdde0;
	font-size: 10px;
	letter-spacing: 0.06em;
	line-height: 14px;
}

body.ds-product-single-v1 .ds-product-service-card h2 {
	max-width: 270px;
	margin: 0;
	color: #fff;
	font-size: 22px !important;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 29px;
	text-transform: none;
}

body.ds-product-single-v1 .ds-product-service-card--assistance h2 {
	max-width: 250px;
	margin-bottom: 6px;
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint h2 {
	margin-bottom: 10px;
	font-size: 19px !important;
	line-height: 24px;
}

body.ds-product-single-v1 .ds-product-service-card__body {
	max-width: 270px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

body.ds-product-single-v1 .ds-product-service-card--assistance .ds-product-service-card__body {
	max-width: 238px;
}

body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__body {
	color: #fff0f1;
	font-size: 12px;
	line-height: 17px;
}

body.ds-product-single-v1 .ds-product-service-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 178px;
	min-height: 38px;
	margin-top: 16px;
	padding: 8px 12px;
	color: #fff;
	font-family: "DS Payment Inter", "DM Sans", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 14px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	background: var(--ds-color-action-primary);
	border-radius: var(--ds-radius-8);
}

body.ds-product-single-v1 .ds-product-service-card__cta:hover,
body.ds-product-single-v1 .ds-product-service-card__cta:focus-visible {
	color: #fff;
	background: var(--ds-color-action-hover);
}

body.ds-product-single-v1 .ds-product-benefits {
	min-height: 247px;
	margin: 0;
	padding: 17px 19px 21px;
	background: #f4f8fb;
	border: 1px solid #dce7ee;
	border-radius: 14px;
}

body.ds-product-single-v1 .ds-product-benefits__eyebrow {
	margin-bottom: 7px;
	color: #e36f2c;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 14px;
	text-transform: uppercase;
}

body.ds-product-single-v1 .ds-product-benefits__header h2 {
	margin: 0 0 18px;
	color: #132a3a;
	font-size: 20px !important;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 26px;
	text-transform: none;
}

body.ds-product-single-v1 .ds-product-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.ds-product-single-v1 .ds-product-benefits__item {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 66px;
	margin: 0;
	padding: 9px;
	color: #213746;
	font-family: "DS Payment Inter", "DM Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 17px;
	background: #fff;
	border: 1px solid #e0e9ef;
	border-radius: 10px;
}

body.ds-product-single-v1 .ds-product-benefits__icon {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0;
}

/* Related products and the shared redesigned card ----------------------- */

body.ds-product-single-v1 section.related.products {
	clear: both;
	width: 100%;
	margin-top: 38px;
	padding: 0 0 64px !important;
}

body.ds-product-single-v1 section.related.products .ds-related-products__title {
	margin: 0 0 20px;
	padding: 0;
	color: var(--ds-color-text-primary);
	font-size: 28px !important;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 34px;
	text-align: left;
	text-transform: none;
}

body.ds-product-single-v1 section.related.products > ul.products {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 24px;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

body.ds-product-single-v1 section.related.products > ul.products::before,
body.ds-product-single-v1 section.related.products > ul.products::after {
	display: none;
	content: none;
}

body.ds-product-single-v1.woocommerce section.related.products ul.products li.product:nth-child(n),
body.ds-product-single-v1.woocommerce-page section.related.products ul.products li.product:nth-child(n) {
	float: none !important;
	display: flex !important;
	flex-direction: column !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	min-height: var(--ds-product-card-min-height, 482px);
	padding: 12px;
	overflow: hidden;
	background: var(--ds-color-bg-page);
	border: 1px solid var(--ds-color-border-default);
	border-radius: var(--ds-radius-12);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.ds-product-single-v1 section.related.products .ds-product-card > .woocommerce-loop-product__link {
	display: flex !important;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

body.ds-product-single-v1 section.related.products .ds-product-card__media {
	position: relative;
	flex: 0 0 210px;
	width: calc(100% + 24px);
	height: 210px;
	margin: -12px -12px 12px;
	overflow: hidden;
}

body.ds-product-single-v1 section.related.products .ds-product-card__media picture {
	display: contents;
}

body.ds-product-single-v1 section.related.products .ds-product-card__media img,
body.ds-product-single-v1.woocommerce section.related.products .ds-product-card__media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

body.ds-product-single-v1 section.related.products .ds-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

body.ds-product-single-v1 section.related.products .ds-product-card__sku {
	min-height: 13px;
	margin: 0 0 7px;
	color: var(--ds-color-text-secondary);
	font-size: 10px !important;
	font-weight: 500;
	line-height: 13px !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .woocommerce-loop-product__title {
	margin: 0 0 5px !important;
	padding: 0 !important;
	color: var(--ds-color-text-primary) !important;
	font-size: 15px !important;
	font-weight: 700;
	line-height: 19px !important;
	text-transform: none;
	overflow-wrap: anywhere;
}

body.ds-product-single-v1 section.related.products .ds-product-card .price {
	display: block;
	margin: 0 0 8px !important;
	color: var(--ds-color-brand-strong) !important;
	font-size: 21px !important;
	font-weight: 700 !important;
	line-height: 25px !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .price .woocommerce-Price-amount,
body.ds-product-single-v1 section.related.products .ds-product-card .price_on_inquiry {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .price del {
	font-size: 13px !important;
	font-weight: 500;
	opacity: 0.65 !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .price ins {
	text-decoration: none;
}

body.ds-product-single-v1 section.related.products .ds-product-card .consigli,
body.ds-product-single-v1 section.related.products .ds-product-card .countdown-container-loop,
body.ds-product-single-v1 section.related.products .ds-product-card .countdown-alt-text,
body.ds-product-single-v1 section.related.products .ds-product-card .online-only,
body.ds-product-single-v1 section.related.products .ds-product-card .consigli-mobile,
body.ds-product-single-v1 section.related.products .ds-product-card .woocommerce-product-rating,
body.ds-product-single-v1 section.related.products .ds-product-card .star-rating {
	display: none !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card__body > .disponibilita {
	flex: 0 0 auto;
	margin: auto 0 0 !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .onsale,
body.ds-product-single-v1 section.related.products .ds-product-card .best-seller-badge,
body.ds-product-single-v1 section.related.products .ds-product-card .best-quality-badge,
body.ds-product-single-v1 section.related.products .ds-product-card .itsnew-badge {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	z-index: 3;
	display: inline-flex !important;
	align-items: center;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 4px 8px !important;
	color: var(--ds-color-action-primary) !important;
	font-size: 10px !important;
	font-weight: 700;
	line-height: 14px !important;
	text-transform: uppercase;
	background: var(--ds-color-action-subtle) !important;
	border: 0 !important;
	border-radius: var(--ds-radius-pill) !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .onsale {
	right: 10px !important;
	left: auto !important;
	color: #fff !important;
	background: #b63675 !important;
}

body.ds-product-single-v1 section.related.products .ds-product-card .onsale-mobile,
body.ds-product-single-v1 section.related.products .ds-product-card .best-seller-badge-mobile,
body.ds-product-single-v1 section.related.products .ds-product-card .best-quality-badge-mobile,
body.ds-product-single-v1 section.related.products .ds-product-card .itsnew-badge-mobile {
	display: none !important;
}

@media (hover: hover) and (pointer: fine) {
	body.ds-product-single-v1 section.related.products .ds-product-card:hover,
	body.ds-product-single-v1 section.related.products .ds-product-card:focus-within {
		border-color: #aeb8c3;
		box-shadow: 0 10px 26px rgba(23, 25, 28, 0.12);
		transform: translateY(-2px);
	}
}

/* Compact desktop and tablet -------------------------------------------- */

@media (max-width: 1180px) {
	body.ds-product-single-v1 .ds-product-hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
		column-gap: 32px;
	}

	body.ds-product-single-v1 .ds-product-info__layout {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 28px;
	}

	body.ds-product-single-v1 .ds-product-tabs {
		column-gap: 6px;
	}

	body.ds-product-single-v1 .ds-product-tabs__tab {
		padding-inline: 12px;
		font-size: 13px;
	}

	body.ds-product-single-v1 section.related.products > ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 16px;
	}
}

@media (min-width: 901px) and (max-width: 1180px) {
	body.ds-product-single-v1 .ds-product-help {
		grid-template-columns: 36px minmax(0, 1fr) auto;
		column-gap: 8px;
		padding-inline: 12px;
	}

	body.ds-product-single-v1 .ds-product-help__icon {
		width: 36px;
		height: 36px;
	}

	body.ds-product-single-v1 .ds-product-help__icon img {
		width: 20px;
		height: 20px;
	}

	body.ds-product-single-v1 .ds-product-help__actions {
		width: 220px;
	}

	body.ds-product-single-v1 .ds-product-help__cta {
		padding-inline: 6px;
	}
}

@media (max-width: 900px) {
	body.ds-product-single-v1 .ds-product-hero {
		grid-template-areas:
			"gallery"
			"summary"
			"help";
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto;
		gap: 24px;
	}

	body.ds-product-single-v1 .ds-product-hero__gallery,
	body.ds-product-single-v1 .ds-product-hero__summary,
	body.ds-product-single-v1 .ds-product-hero__help {
		width: 100%;
	}

	body.ds-product-single-v1 .ds-product-info__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	body.ds-product-single-v1 .ds-product-info-sidebar {
		max-width: 416px;
		margin-inline: auto;
	}

	body.ds-product-single-v1 section.related.products > ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* Approved 390px mobile composition ------------------------------------- */

@media (max-width: 767px) {
	body.ds-product-single-v1 .ds-product-sticky-cart {
		padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__inner {
		grid-template-columns: 48px minmax(0, 1fr) minmax(104px, 128px);
		gap: 10px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__media {
		width: 48px;
		height: 48px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__summary {
		gap: 0;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__title {
		font-size: 13px;
		line-height: 17px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__price {
		font-size: 20px;
		line-height: 23px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__price del {
		margin-right: 0;
		font-size: 14px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__button {
		min-height: 48px;
		padding: 9px 8px;
		font-size: 12px;
		line-height: 16px;
	}

	body.ds-product-single-v1 .ds-product-single__shell {
		padding-top: 16px;
	}

	body.ds-product-single-v1 #primary {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}

	body.ds-product-single-v1 #product-breadcrumbs {
		margin-bottom: 16px;
	}

	body.ds-product-single-v1 .ds-product-hero {
		gap: 0;
	}

	body.ds-product-single-v1 .ds-product-hero__gallery {
		margin-bottom: 16px;
	}

	body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper,
	body.ds-product-single-v1 .ds-product-hero__gallery > .woocommerce-product-gallery > .flex-viewport {
		margin-bottom: 12px;
	}

	body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs {
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 8px;
		overflow: visible !important;
	}

	body.ds-product-single-v1 #content div.product .ds-product-hero__gallery .flex-control-thumbs li {
		/* Share one row, shrinking every square equally when space is limited. */
		flex: 0 1 64px;
		min-width: 0;
		width: 64px !important;
		height: auto;
		aspect-ratio: 1;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability {
		margin-bottom: 16px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .product_title {
		margin-bottom: 14px;
		font-size: 26px;
		letter-spacing: -0.02em;
		line-height: 29px;
	}

	body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .blocco-prezzo .price {
		font-size: 28px !important;
		line-height: 34px !important;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo {
		margin-bottom: 14px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .ds-product-logistics {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		margin-bottom: 12px;
	}

	body.ds-product-single-v1 .ds-product-logistics__item,
	body.ds-product-single-v1 .ds-product-logistics__item:only-child,
	body.ds-product-single-v1 .ds-product-logistics--premium-hidden .ds-product-logistics__item--fermopoint {
		grid-column: 1;
		min-height: 64px;
		padding: 11px 12px;
	}

	body.ds-product-single-v1 .ds-product-logistics__image {
		flex-basis: 30px;
		width: 30px !important;
		height: 30px !important;
	}

	body.ds-product-single-v1 .ds-product-logistics__item--premium .ds-product-logistics__image {
		flex-basis: 38px;
		width: 38px !important;
		height: 38px !important;
	}

	body.ds-product-single-v1 .ds-product-logistics__item.ds-product-logistics__item--fermopoint {
		--ds-fermopoint-padding: 14px;
		--ds-fermopoint-icon-size: 38px;
		--ds-fermopoint-pin-size: 22px;
		padding: var(--ds-fermopoint-padding);
	}

	body.ds-product-single-v1 .ds-product-hero__summary .blocco-prezzo:has(> .ds-product-klarna) {
		column-gap: 10px;
	}

	body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-container) {
		gap: 8px;
		min-height: 42px;
		border-radius: 21px;
	}

	body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-badge) {
		height: 20px;
	}

	body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-message),
	body.ds-product-single-v1 .ds-product-klarna klarna-placement::part(osm-cta) {
		font-size: 11px;
		line-height: 14px;
	}

	body.ds-product-single-v1 .ds-product-short-description {
		margin-bottom: 12px;
		padding: 14px;
	}

	body.ds-product-single-v1 .ds-product-short-description h2 {
		font-size: 16px !important;
		line-height: 22px !important;
	}

	body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description,
	body.ds-product-single-v1 .ds-product-short-description .woocommerce-product-details__short-description li {
		font-size: 16px;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary form.cart {
		--ds-cart-gap: 8px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary form.cart > .quantity,
	body.ds-product-single-v1 .ds-product-hero__summary .woocommerce-variation-add-to-cart > .quantity,
	body.ds-product-single-v1 .ds-product-hero__summary .bundle_button > .quantity {
		flex-basis: 88px;
		width: 88px;
		height: 48px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .quantity .ds-quantity__button,
	body.ds-product-single-v1 .ds-product-hero__summary .quantity input.qty {
		height: 46px;
		font-size: 12px;
		line-height: 46px;
	}

	body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary form.cart .button.single_add_to_cart_button,
	body.ds-product-single-v1.woocommerce div.product .ds-product-hero__summary .bundle_button .button,
	body.ds-product-single-v1 .ds-product-hero__summary #custom-inquiry-button {
		flex-basis: calc(100% - 96px);
		min-height: 48px;
		padding: 12px 10px !important;
		font-size: 16px !important;
		line-height: 20px !important;
	}

	body.ds-product-single-v1 .ds-product-trust {
		margin-top: 10px;
	}

	body.ds-product-single-v1 .ds-product-trust__list {
		grid-template-columns: repeat(4, minmax(min-content, 1fr));
		gap: 4px;
	}

	body.ds-product-single-v1 .ds-product-trust__item > a,
	body.ds-product-single-v1 .ds-product-trust__item > span {
		flex-direction: column;
		gap: 5px;
		min-height: 65px;
		text-align: center;
	}

	body.ds-product-single-v1 .ds-product-trust__item img {
		flex-basis: 20px;
		width: 20px;
		height: 20px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_title {
		margin-top: 14px !important;
		padding: 16px 16px 8px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_title h3 {
		font-size: 18px !important;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_form.bundle_sells_form {
		--ds-bundle-image-size: 56px;
		--ds-bundle-action-width: 92px;
		--ds-bundle-item-gap: 12px;
		padding: 0 16px 16px !important;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_summary {
		min-height: 58px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .ds-bundle-sell__button {
		min-height: 38px;
		padding: 8px;
		font-size: 13px;
		line-height: 20px;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .bundled_product_title.product_title {
		font-size: 13px !important;
		line-height: 18px !important;
	}

	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price,
	body.ds-product-single-v1 .ds-product-hero__summary .bundle_sells_form .price .woocommerce-Price-amount {
		font-size: 14px !important;
		line-height: 19px !important;
	}

	body.ds-product-single-v1 .ds-product-payments {
		margin-top: 12px;
		padding: 13px 15px;
	}

	body.ds-product-single-v1 .ds-product-payments__header {
		margin-bottom: 9px;
	}

	body.ds-product-single-v1 .ds-product-payments__header p {
		font-size: 11px;
	}

	body.ds-product-single-v1 .ds-product-payments__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.ds-product-single-v1 .ds-product-payments__method {
		height: 30px;
	}

	body.ds-product-single-v1 .ds-product-hero__help {
		margin-top: 20px;
	}

	body.ds-product-single-v1 .ds-product-help {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 10px;
		min-height: 136px;
		padding: 12px;
	}

	body.ds-product-single-v1 .ds-product-help__icon {
		width: 36px;
		height: 36px;
	}

	body.ds-product-single-v1 .ds-product-help__icon img {
		width: 20px;
		height: 20px;
	}

	body.ds-product-single-v1 .ds-product-help__actions {
		grid-column: 1 / -1;
		width: 100%;
	}

	body.ds-product-single-v1 .ds-product-help__cta {
		min-height: 44px;
		padding: 10px 12px;
		line-height: 14px;
	}

	body.ds-product-single-v1 .ds-product-help__decor--blue {
		right: -12px;
	}

	body.ds-product-single-v1 .ds-product-single__information {
		margin-top: 16px;
	}

	body.ds-product-single-v1 .ds-product-info__layout {
		display: block;
	}

	body.ds-product-single-v1 .ds-product-info-sidebar {
		max-width: none;
		gap: 16px;
		margin: 20px 0 0;
	}

	body.ds-product-single-v1 .ds-product-service-card {
		height: 190px;
	}

	body.ds-product-single-v1 .ds-product-service-card--assistance::before {
		background: linear-gradient(90deg, rgba(8, 39, 71, 0.95) 0%, rgba(8, 39, 71, 0.48) 68%, rgba(8, 39, 71, 0.15) 100%);
	}

	body.ds-product-single-v1 .ds-product-service-card--fermopoint::before {
		background: linear-gradient(90deg, rgba(76, 17, 23, 0.97) 0%, rgba(122, 37, 45, 0.73) 54%, rgba(122, 37, 45, 0.03) 100%);
	}

	body.ds-product-single-v1 .ds-product-service-card--assistance .ds-product-service-card__content {
		padding: 18px 18px 12px;
	}

	body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__content {
		padding: 20px 18px 16px;
	}

	body.ds-product-single-v1 .ds-product-service-card__eyebrow {
		font-size: 10px;
		line-height: 14px;
	}

	body.ds-product-single-v1 .ds-product-service-card--assistance .ds-product-service-card__eyebrow {
		margin-bottom: 10px;
	}

	body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__eyebrow {
		margin-bottom: 10px;
		font-size: 9px;
		letter-spacing: 0.05em;
	}

	body.ds-product-single-v1 .ds-product-service-card h2 {
		font-size: 21px !important;
		line-height: 27px;
	}

	body.ds-product-single-v1 .ds-product-service-card--assistance h2 {
		max-width: 215px;
		margin-bottom: 5px;
	}

	body.ds-product-single-v1 .ds-product-service-card--fermopoint h2 {
		max-width: 225px;
		margin-bottom: 8px;
		font-size: 18px !important;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-service-card__body {
		max-width: 210px;
		font-size: 12px;
		line-height: 17px;
	}

	body.ds-product-single-v1 .ds-product-service-card--fermopoint .ds-product-service-card__body {
		max-width: 215px;
		font-size: 11px;
		line-height: 16px;
	}

	body.ds-product-single-v1 .ds-product-service-card__cta {
		min-height: 36px;
		margin-top: 7px;
	}

	body.ds-product-single-v1 .ds-product-benefits {
		min-height: 234px;
		padding: 14px 15px 15px;
	}

	body.ds-product-single-v1 .ds-product-benefits__eyebrow {
		margin-bottom: 5px;
		font-size: 9px;
		letter-spacing: 0.05em;
		line-height: 13px;
	}

	body.ds-product-single-v1 .ds-product-benefits__header h2 {
		margin-bottom: 17px;
		font-size: 18px !important;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-benefits__item {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 8px;
		padding: 7px;
		font-size: 11px;
		line-height: 15px;
	}

	body.ds-product-single-v1 .ds-product-benefits__icon {
		width: 30px;
		height: 30px;
	}

	body.ds-product-single-v1 .ds-product-tabs {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		column-gap: 0;
	}

	body.ds-product-single-v1 .ds-product-tabs__list,
	body.ds-product-single-v1 .ds-product-tabs__panels {
		display: contents;
	}

	body.ds-product-single-v1 .ds-product-tabs__tab {
		grid-row: var(--ds-mobile-row);
		grid-column: 1;
		width: 100%;
		margin: 0 0 8px;
	}

	body.ds-product-single-v1 .ds-product-tabs__tab {
		display: flex;
		width: 100%;
		min-height: 48px;
		padding: 11px 14px;
		color: var(--ds-color-text-primary);
		font-size: 13px;
		font-weight: 700;
		line-height: 18px;
		text-align: left;
		background: var(--ds-color-bg-page);
		border: 1px solid var(--ds-color-border-default);
		border-radius: var(--ds-radius-8);
	}

	body.ds-product-single-v1 .ds-product-tabs__tab > span:first-child {
		min-width: 0;
		margin-right: auto;
	}

	body.ds-product-single-v1 .ds-product-tabs__tab:hover,
	body.ds-product-single-v1 .ds-product-tabs__tab.is-active,
	body.ds-product-single-v1 .ds-product-tabs__tab[aria-selected="true"] {
		color: var(--ds-color-text-primary);
		background: var(--ds-color-bg-page);
		border: 1px solid var(--ds-color-border-default);
	}

	body.ds-product-single-v1 .ds-product-tabs__tab.is-active,
	body.ds-product-single-v1 .ds-product-tabs__tab[aria-selected="true"] {
		margin-bottom: 0;
		border-radius: var(--ds-radius-8) var(--ds-radius-8) 0 0;
	}

	body.ds-product-single-v1 .ds-product-tabs__indicator {
		display: inline-flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		width: 20px;
		color: var(--ds-color-brand-strong);
	}

	body.ds-product-single-v1 .ds-product-tabs__panel,
	body.ds-product-single-v1.woocommerce div.product .ds-product-tabs__panel,
	body.ds-product-single-v1.woocommerce div.product .woocommerce-tabs .panel {
		grid-row: var(--ds-mobile-row);
		grid-column: 1;
		width: 100%;
		max-height: none !important;
		height: auto !important;
		margin: 0 0 8px !important;
		padding: 14px 0 16px !important;
		overflow: visible !important;
		border: 0;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel h2 {
		margin-bottom: 12px;
		font-size: 21px;
		line-height: 27px;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel h3 {
		margin: 18px 0 10px;
		font-size: 18px;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel p,
	body.ds-product-single-v1 .ds-product-tabs__panel li,
	body.ds-product-single-v1 .ds-product-tabs__panel td,
	body.ds-product-single-v1 .ds-product-tabs__panel th {
		font-size: 16px;
		line-height: 24px;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel p {
		margin-bottom: 13px;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel .wp-block-columns,
	body.ds-product-single-v1 .ds-product-tabs__panel .ds-product-specs,
	body.ds-product-single-v1 .ds-product-tabs__panel .specifiche-principali {
		gap: 8px;
	}

	body.ds-product-single-v1 .ds-product-tabs__panel .wp-block-column,
	body.ds-product-single-v1 .ds-product-tabs__panel .ds-product-specs > *,
	body.ds-product-single-v1 .ds-product-tabs__panel .specifiche-principali > * {
		padding: 12px;
	}

	body.ds-product-single-v1 section.related.products {
		margin-top: 20px;
		padding-bottom: 40px !important;
	}

	body.ds-product-single-v1 section.related.products .ds-related-products__title {
		margin-bottom: 14px;
		font-size: 24px !important;
		line-height: 28px;
	}

	body.ds-product-single-v1 section.related.products > ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card {
		padding: 10px;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card__media {
		flex-basis: 196px;
		width: calc(100% + 20px);
		height: 196px;
		margin: -10px -10px 10px;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card__sku {
		margin-bottom: 6px;
		font-size: 9px !important;
		line-height: 12px !important;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card .woocommerce-loop-product__title {
		font-size: 13px !important;
		line-height: 16px !important;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card .price {
		font-size: 19px !important;
		line-height: 23px !important;
	}

}

@media (max-width: 390px) {
	body.ds-product-single-v1 .ds-product-sticky-cart__inner {
		grid-template-columns: 44px minmax(0, 1fr) minmax(96px, 108px);
		gap: 8px;
	}

	body.ds-product-single-v1 .ds-product-sticky-cart__media {
		width: 44px;
		height: 44px;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card__media {
		flex-basis: 184px;
		height: 184px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.ds-product-single-v1 .ds-product-hero__summary .ds-product-availability--in-stock::before {
		animation: none;
		transform: none;
	}

	body.ds-product-single-v1 section.related.products .ds-product-card,
	body.ds-product-single-v1 .ds-product-help__cta,
	body.ds-product-single-v1 .ds-product-tabs__tab,
	body.ds-product-single-v1 .ds-product-sticky-cart {
		transition: none;
	}
}
