.olfa-pdp__inner {
	display: grid;
	gap: clamp(1.45rem, 3vw, 2.35rem);
}

.olfa-pdp__inner .woocommerce-notices-wrapper:empty {
	display: none;
}

.olfa-pdp__inner .woocommerce-notices-wrapper {
	margin-bottom: 0.5rem;
}

.olfa-pdp__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	color: #5f6673;
	font-size: 0.95rem;
	font-weight: 500;
}

.olfa-pdp__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.olfa-pdp__breadcrumbs a:hover,
.olfa-pdp__breadcrumbs a:focus-visible {
	color: var(--olfa-color-black);
}

.olfa-pdp__breadcrumbs-separator {
	color: #c5c9d1;
}

.olfa-pdp-hero {
	display: grid;
	grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(2rem, 3.4vw, 3.35rem);
	align-items: start;
}

.olfa-pdp-hero__media {
	min-width: 0;
}

.olfa-pdp-gallery {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.olfa-pdp-gallery .woocommerce-product-gallery,
.olfa-pdp-gallery .wp-block-woocommerce-product-image-gallery {
	position: relative;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	opacity: 1 !important;
}

.olfa-pdp-gallery :where(
	.woocommerce-product-gallery__trigger,
	.wc-block-product-gallery-large-image__zoom-button,
	.wc-block-product-gallery-large-image__dialog-opener,
	.wc-block-product-gallery-large-image-next-previous,
	.wc-block-product-gallery-dialog__trigger
) {
	display: none !important;
}

.olfa-pdp-gallery :where(
	.woocommerce-product-gallery__wrapper,
	.wc-block-product-gallery-large-image__container,
	.wc-block-product-gallery-large-image__wrapper
) {
	border-radius: 0.25rem;
	background: var(--olfa-color-white);
}

.olfa-pdp-gallery--enhanced .woocommerce-product-gallery__wrapper,
.olfa-pdp-gallery--enhanced .flex-control-thumbs,
.olfa-pdp-gallery--enhanced .wc-block-product-gallery-thumbnails__scrollable {
	display: none !important;
}

.olfa-pdp-gallery__shell {
	display: grid;
	gap: 0.72rem;
}

.olfa-pdp-gallery__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 0.88;
	max-height: clamp(23rem, 40vw, 30rem);
	min-height: 0;
	padding: clamp(1.1rem, 2vw, 1.55rem);
	border: 1px solid #e8ebf1;
	border-radius: 0.18rem;
	background: var(--olfa-color-white);
	box-shadow: 0 0.45rem 1.2rem rgba(19, 27, 40, 0.04);
	overflow: hidden;
}

	.olfa-pdp-gallery__stage-zoom {
		display: flex;
		align-items: center;
		justify-content: center;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: inherit;
	background: transparent;
	box-shadow: none;
		cursor: zoom-in;
		outline: none;
		overflow: hidden;
		touch-action: pan-y;
	}

.olfa-pdp-gallery__stage-zoom:focus:not(:focus-visible) {
	outline: none;
}

.olfa-pdp-gallery__stage-zoom:focus-visible {
	outline: 2px solid var(--olfa-color-yellow);
	outline-offset: -2px;
}

.olfa-pdp-gallery__stage-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 1px solid #e8ebf1;
	border-radius: 0.14rem;
	background: rgba(255, 255, 255, 0.92);
	color: #343b48;
	box-shadow: 0 0.45rem 1rem rgba(19, 27, 40, 0.08);
	cursor: pointer;
	opacity: 0;
	transform: translateY(-50%);
	transition:
		background-color 140ms ease,
		border-color 140ms ease,
		color 140ms ease,
		opacity 140ms ease;
}

.olfa-pdp-gallery__stage:hover .olfa-pdp-gallery__stage-nav,
.olfa-pdp-gallery__stage:focus-within .olfa-pdp-gallery__stage-nav,
.olfa-pdp-gallery__stage-nav:focus-visible {
	opacity: 1;
}

.olfa-pdp-gallery__stage-nav:hover,
.olfa-pdp-gallery__stage-nav:focus-visible {
	border-color: #cfd5df;
	background: var(--olfa-color-white);
	color: var(--olfa-color-black);
}

.olfa-pdp-gallery__stage-nav--prev {
	left: 0.65rem;
}

.olfa-pdp-gallery__stage-nav--next {
	right: 0.65rem;
}

.olfa-pdp-gallery__stage-nav span {
	display: block;
	font-size: 1.7rem;
	line-height: 1;
	transform: translateY(-0.08em);
}

.olfa-pdp-gallery__stage-image {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.olfa-pdp-gallery__stage-hint {
	display: none;
}

.olfa-pdp-gallery__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.42rem;
	min-height: 0.8rem;
}

.olfa-pdp-gallery__dot {
	display: inline-flex;
	width: 0.42rem;
	height: 0.42rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(88, 97, 113, 0.42);
	cursor: pointer;
	transition:
		background-color 140ms ease,
		transform 140ms ease;
}

.olfa-pdp-gallery__dot.is-active {
	background: var(--olfa-color-black);
	transform: scale(1.18);
}

.olfa-pdp-gallery__thumbs-shell {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0.55rem;
	align-items: center;
}

.olfa-pdp-gallery__thumbs {
	display: flex;
	gap: 0.55rem;
	padding-bottom: 0.15rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.olfa-pdp-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.olfa-pdp-gallery__thumbs-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	padding: 0;
	border: 1px solid #e5e8ee;
	border-radius: 0.14rem;
	background: var(--olfa-color-white);
	color: #586171;
	cursor: pointer;
}

.olfa-pdp-gallery__thumbs-nav:hover,
.olfa-pdp-gallery__thumbs-nav:focus-visible {
	border-color: #cfd5df;
	background: #f8f9fb;
	color: var(--olfa-color-black);
}

.olfa-pdp-gallery__thumbs-nav span {
	font-size: 1.45rem;
	line-height: 1;
	transform: translateY(-0.08em);
}

.olfa-pdp-gallery__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 5rem;
	width: 5rem;
	height: 5rem;
	padding: 0.35rem;
	border: 1px solid #e5e8ee;
	border-radius: 0.16rem;
	background: var(--olfa-color-white);
	cursor: pointer;
	outline: none;
	overflow: hidden;
}

.olfa-pdp-gallery__thumb.is-active {
	border-color: var(--olfa-color-yellow);
	box-shadow: inset 0 0 0 1px var(--olfa-color-yellow);
}

.olfa-pdp-gallery__thumb:focus:not(:focus-visible) {
	outline: none;
}

.olfa-pdp-gallery__thumb:focus-visible {
	outline: 2px solid var(--olfa-color-yellow);
	outline-offset: 2px;
}

.olfa-pdp-gallery__thumb-image {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	max-height: 100%;
	object-fit: contain;
}

.olfa-pdp-gallery-lightbox {
	width: 100vw;
	max-width: none;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--olfa-color-white);
	color: var(--olfa-color-black);
}

.olfa-pdp-gallery-lightbox::backdrop {
	background: var(--olfa-color-white);
}

.olfa-pdp-gallery-lightbox__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	padding: clamp(0.85rem, 2vw, 1.5rem);
	background: var(--olfa-color-white);
	color: var(--olfa-color-black);
}

.olfa-pdp-gallery-lightbox__close {
	position: absolute;
	top: clamp(0.7rem, 2vw, 1.25rem);
	right: clamp(0.7rem, 2vw, 1.25rem);
	z-index: 3;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0;
	border-radius: 0.15rem;
	background: transparent;
	color: #6f7784;
	font-size: 2.45rem;
	line-height: 1;
	cursor: pointer;
}

.olfa-pdp-gallery-lightbox__close:hover,
.olfa-pdp-gallery-lightbox__close:focus-visible {
	color: var(--olfa-color-black);
}

	.olfa-pdp-gallery-lightbox__frame {
		position: relative;
		display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(0.75rem, 2vw, 1.5rem);
	align-items: center;
	flex: 1;
	width: 100%;
	max-width: var(--wp--style--global--wide-size);
		margin: 0 auto;
		padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
		touch-action: pan-y;
	}

.olfa-pdp-gallery-lightbox__frame--single {
	grid-template-columns: minmax(0, 1fr);
}

.olfa-pdp-gallery-lightbox__image {
	width: 100%;
	height: 100%;
	max-width: 95vw;
	max-height: 75vh;
	margin: 0 auto;
	object-fit: contain;
	cursor: zoom-in;
	transition: transform 220ms ease;
	user-select: none;
}

.olfa-pdp-gallery-lightbox__image.is-pan-zoomed {
	cursor: zoom-out;
	transform: scale(1.5);
}

.olfa-pdp-gallery-lightbox__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid #e5e8ee;
	border-radius: 0.18rem;
	background: rgba(255, 255, 255, 0.94);
	color: #222936;
	box-shadow: 0 0.45rem 1.1rem rgba(19, 27, 40, 0.08);
	font-size: 2rem;
	cursor: pointer;
}

.olfa-pdp-gallery-lightbox__nav:hover,
.olfa-pdp-gallery-lightbox__nav:focus-visible {
	border-color: #cfd5df;
	background: #f8f9fb;
	color: var(--olfa-color-black);
}

.olfa-pdp-gallery-lightbox__meta {
	display: none;
}

.olfa-pdp-gallery-lightbox__thumbs {
	display: flex;
	gap: 0.55rem;
	width: min(100%, var(--wp--style--global--wide-size));
	margin: 0 auto;
	padding: 0 0 0.4rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.olfa-pdp-gallery-lightbox__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 4.25rem;
	width: 4.25rem;
	height: 4.25rem;
	padding: 0.3rem;
	border: 1px solid #e5e8ee;
	border-radius: 0.16rem;
	background: var(--olfa-color-white);
	cursor: pointer;
	overflow: hidden;
}

.olfa-pdp-gallery-lightbox__thumb.is-active {
	border-color: var(--olfa-color-yellow);
	box-shadow: inset 0 0 0 1px var(--olfa-color-yellow);
}

.olfa-pdp-gallery-lightbox__thumb-image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
}

.olfa-pdp-gallery .woocommerce-product-gallery__wrapper {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.55rem;
}

.olfa-pdp-gallery .woocommerce-product-gallery__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0.4rem;
	border: 1px solid #eef0f4;
	border-radius: 0.2rem;
	background: var(--olfa-color-white);
	overflow: hidden;
}

.olfa-pdp-gallery .woocommerce-product-gallery__image:first-child {
	grid-column: 1 / -1;
	min-height: clamp(21rem, 33vw, 28rem);
	padding: clamp(0.6rem, 1.3vw, 0.95rem);
}

.olfa-pdp-gallery .woocommerce-product-gallery__image:not(:first-child) {
	aspect-ratio: 1 / 1;
}

.olfa-pdp-gallery .woocommerce-product-gallery__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.olfa-pdp-gallery :where(
	.woocommerce-product-gallery__image--placeholder,
	.wc-block-product-gallery-large-image__container
) {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--olfa-color-white);
}

.olfa-pdp-gallery :where(
	.woocommerce-product-gallery__image img,
	.woocommerce-product-gallery__image--placeholder img,
	.wc-block-product-gallery-large-image img
) {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.olfa-pdp-gallery .flex-control-thumbs,
.olfa-pdp-gallery .wc-block-product-gallery-thumbnails__scrollable {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(3.9rem, 1fr));
	gap: 0.55rem;
	margin: 0.6rem 0 0;
	padding-left: 0;
	list-style: none;
}

.olfa-pdp-gallery .flex-control-thumbs li {
	margin: 0;
}

.olfa-pdp-gallery :where(
	.flex-control-thumbs img,
	.wc-block-product-gallery-thumbnails__thumbnail__image
) {
	display: block;
	width: 100%;
	max-width: 100%;
	border: 1px solid #e6e8ee;
	border-radius: 0.25rem;
	background: var(--olfa-color-white);
	object-fit: contain;
	overflow: hidden;
}

.olfa-pdp-gallery :where(
	.flex-active,
	.wc-block-product-gallery-thumbnails__thumbnail__image--is-active
) {
	border-color: var(--olfa-color-yellow);
}

.olfa-pdp-hero__summary {
	display: grid;
	gap: 0.82rem;
	align-content: start;
	justify-self: stretch;
	width: 100%;
	min-width: 0;
	padding-top: clamp(0.5rem, 1vw, 1rem);
}

.olfa-pdp-summary__title {
	width: 100%;
	max-width: 100%;
	margin: 0;
	font-size: clamp(1.82rem, 2.18vw, 2.18rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.olfa-pdp-summary__availability {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	color: #5f6673;
	font-size: 0.9rem;
	font-weight: 500;
}

.olfa-pdp-summary__stock {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 700;
	text-transform: uppercase;
}

.olfa-pdp-summary__stock::before {
	content: "";
	display: inline-flex;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: currentColor;
}

.olfa-pdp-summary__stock.is-in-stock {
	color: #2a8f4c;
}

.olfa-pdp-summary__stock.is-out-of-stock {
	color: #c13a2f;
}

.olfa-pdp-summary__availability-separator {
	color: #c8ccd4;
}

.olfa-pdp-summary__price {
	margin-top: 0.25rem;
	color: var(--olfa-color-black);
	font-size: clamp(1.45rem, 1.8vw, 1.75rem);
	font-weight: 800;
	line-height: 1.1;
}

.olfa-pdp-summary__price del {
	margin-right: 0.6rem;
	color: #5f6673;
	font-size: 1rem;
	font-weight: 600;
}

.olfa-pdp-summary__price ins {
	background: transparent;
	text-decoration: none;
}

.olfa-pdp-summary__divider {
	width: 100%;
	height: 1px;
	margin: 0.85rem 0 0.25rem;
	background: #eef0f4;
}

.olfa-pdp-summary__cart {
	padding-top: 0.55rem;
	border-top: 0;
}

.olfa-pdp-summary__cart-error {
	margin: 0 0 0.75rem;
	padding: 0.75rem 0.85rem;
	border-left: 3px solid #d63638;
	background: #fff5f5;
	color: #7a1010;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.45;
}

.olfa-pdp-summary__cart-error a {
	display: inline-block;
	margin-left: 0.35rem;
	color: inherit;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.olfa-pdp-summary__cart .wp-block-woocommerce-add-to-cart-form,
.olfa-pdp-summary__cart .wp-block-add-to-cart-form,
.olfa-pdp-summary__cart form.cart,
.olfa-pdp-summary__cart .variations_form,
.olfa-pdp-summary__cart .single_variation_wrap,
.olfa-pdp-summary__cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.olfa-pdp-summary__cart .stock,
.olfa-pdp-summary__cart .wc-block-components-product-stock-indicator {
	display: none !important;
}

.olfa-pdp-cart-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.olfa-pdp-stepper {
	display: inline-flex;
	align-items: stretch;
	flex: 0 0 auto;
	box-sizing: border-box;
	min-width: 10.5rem;
	height: 3.35rem;
	border: 2px solid #182131;
	border-radius: 0.15rem;
	background: var(--olfa-color-white);
	overflow: hidden;
}

.olfa-pdp-stepper__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.45rem;
	min-width: 3.45rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--olfa-color-white);
	color: #7d8591;
	font-size: 1.25rem;
	font-weight: 400;
	cursor: pointer;
}

.olfa-pdp-stepper__input {
	width: 3.4rem;
	border: 0;
	border-left: 1px solid #182131;
	border-right: 1px solid #182131;
	border-radius: 0;
	background: transparent;
	color: var(--olfa-color-black);
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}

.olfa-pdp-stepper__input::-webkit-outer-spin-button,
.olfa-pdp-stepper__input::-webkit-inner-spin-button,
.olfa-pdp-summary__cart .quantity .qty::-webkit-outer-spin-button,
.olfa-pdp-summary__cart .quantity .qty::-webkit-inner-spin-button,
.olfa-pdp-summary__cart .wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.olfa-pdp-summary__cart .wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.olfa-pdp-stepper__input,
.olfa-pdp-summary__cart .quantity .qty,
.olfa-pdp-summary__cart .wc-block-components-quantity-selector__input {
	appearance: textfield;
	-moz-appearance: textfield;
}

.olfa-pdp-summary__cart .variations_form,
.olfa-pdp-summary__cart .single_variation_wrap {
	width: 100%;
}

.olfa-pdp-summary__cart .single_variation {
	display: none !important;
}

.olfa-pdp-summary__cart .variations {
	width: 100%;
	margin: 0 0 0.7rem;
	border-collapse: collapse;
}

.olfa-pdp-summary__cart .variations tr {
	display: grid;
	gap: 0.5rem;
	padding: 0.65rem 0;
	border-top: 1px solid #eef0f4;
}

.olfa-pdp-summary__cart .variations tr:first-child {
	padding-top: 0;
	border-top: 0;
}

.olfa-pdp-summary__cart .variations th,
.olfa-pdp-summary__cart .variations td {
	padding: 0;
	border: 0;
}

.olfa-pdp-summary__cart .variations th label,
.olfa-pdp-summary__cart .reset_variations {
	color: #69707b;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.olfa-pdp-summary__cart .variations select {
	width: 100%;
	min-height: 3rem;
	padding: 0 0.95rem;
	border: 1px solid #d9dde5;
	border-radius: 0.2rem;
	background: var(--olfa-color-white);
	color: #182131;
	font-size: 0.98rem;
}

.olfa-pdp-summary__cart .wc-block-components-quantity-selector,
.olfa-pdp-summary__cart .quantity {
	display: inline-flex;
	align-items: stretch;
	flex: 0 0 auto;
	box-sizing: border-box;
	min-width: 10.5rem;
	height: 3.35rem;
	margin: 0;
	border: 2px solid #182131;
	border-radius: 0.15rem;
	background: var(--olfa-color-white);
	box-shadow: none;
	overflow: hidden;
}

.olfa-pdp-summary__cart .quantity .qty,
.olfa-pdp-summary__cart .wc-block-components-quantity-selector__input {
	width: 3.4rem;
	border: 0;
	border-left: 1px solid #182131;
	border-right: 1px solid #182131;
	border-radius: 0;
	background: transparent;
	color: var(--olfa-color-black);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.olfa-pdp-summary__cart .wc-block-components-quantity-selector__button,
.olfa-pdp-summary__cart .quantity .minus,
.olfa-pdp-summary__cart .quantity .plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.45rem;
	min-width: 3.45rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: var(--olfa-color-white);
	color: #586171;
	font-size: 1.1rem;
	font-weight: 400;
	cursor: pointer;
}

.olfa-pdp-summary__cart .quantity .minus:hover,
.olfa-pdp-summary__cart .quantity .minus:focus-visible,
.olfa-pdp-summary__cart .quantity .plus:hover,
.olfa-pdp-summary__cart .quantity .plus:focus-visible {
	background: #f3f4f6;
	color: var(--olfa-color-black);
}

.olfa-pdp-summary__cart .single_add_to_cart_button,
.olfa-pdp-summary__cart .wp-element-button,
.olfa-pdp-summary__cart .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	flex: 1 1 18rem;
	min-height: 3.35rem;
	margin: 0;
	padding: 0 1.5rem;
	border: 0;
	border-radius: 0.15rem;
	background: var(--olfa-color-yellow);
	color: #101420;
	box-shadow: 0 0.55rem 1.1rem rgba(246, 208, 33, 0.34), 0 0.16rem 0 rgba(16, 20, 32, 0.16);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition:
		background-color 140ms ease,
		color 140ms ease,
		box-shadow 140ms ease,
		transform 140ms ease,
		opacity 140ms ease;
}

.olfa-pdp-summary__cart .single_add_to_cart_button::before,
.olfa-pdp-summary__cart .wp-element-button::before,
.olfa-pdp-summary__cart .button::before {
	content: "";
	display: inline-flex;
	width: 1.12rem;
	height: 1.12rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

.olfa-pdp-summary__cart .single_add_to_cart_button.is-loading,
.olfa-pdp-summary__cart .button.is-loading {
	opacity: 1;
	cursor: progress;
	transform: translateY(0);
}

.olfa-pdp-summary__cart .single_add_to_cart_button:disabled,
.olfa-pdp-summary__cart .single_add_to_cart_button.disabled,
.olfa-pdp-summary__cart .button:disabled,
.olfa-pdp-summary__cart .button.disabled {
	background: #e6e9ef;
	color: #87909c;
	box-shadow: none;
	cursor: not-allowed;
	opacity: 1;
	transform: translateY(0);
}

.olfa-pdp-summary__cart .single_add_to_cart_button:disabled:hover,
.olfa-pdp-summary__cart .single_add_to_cart_button.disabled:hover,
.olfa-pdp-summary__cart .button:disabled:hover,
.olfa-pdp-summary__cart .button.disabled:hover {
	background: #e6e9ef;
	color: #87909c;
}

.olfa-pdp-summary__cart .single_add_to_cart_button.is-loading,
.olfa-pdp-summary__cart .single_add_to_cart_button.is-loading:disabled,
.olfa-pdp-summary__cart .button.is-loading,
.olfa-pdp-summary__cart .button.is-loading:disabled {
	background: var(--olfa-color-yellow);
	color: #101420;
	box-shadow: 0 0.55rem 1.1rem rgba(246, 208, 33, 0.28), 0 0.16rem 0 rgba(16, 20, 32, 0.12);
	cursor: progress;
	opacity: 1;
}

.olfa-pdp-summary__cart .single_add_to_cart_button:hover,
.olfa-pdp-summary__cart .single_add_to_cart_button:focus-visible,
.olfa-pdp-summary__cart .wp-element-button:hover,
.olfa-pdp-summary__cart .wp-element-button:focus-visible,
.olfa-pdp-summary__cart .button:hover,
.olfa-pdp-summary__cart .button:focus-visible {
	background: #f3c600;
	color: #101420;
	box-shadow: 0 0.7rem 1.25rem rgba(246, 208, 33, 0.4), 0 0.12rem 0 rgba(16, 20, 32, 0.18);
	transform: translateY(-1px);
}

.olfa-pdp-summary__cart .added_to_cart {
	display: none !important;
}

.olfa-pdp-related__grid .olfa-catalog-card .added_to_cart,
.olfa-pdp-related__grid .olfa-catalog-card__button + .added_to_cart {
	display: none !important;
}

.olfa-pdp-summary__cart-hint {
	margin: 0.2rem 0 0;
	color: #69707b;
	font-size: 0.87rem;
	line-height: 1.45;
}

.olfa-pdp-support-list {
	display: grid;
	gap: 0.6rem;
}

.olfa-pdp-support-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.8rem 0.95rem;
	border: 1px solid #eef0f4;
	border-radius: 0.2rem;
	background: var(--olfa-color-white);
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.olfa-pdp-support-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	flex: 0 0 3rem;
	border: 1px solid #e8ebf0;
	border-radius: 0.2rem;
	background: var(--olfa-color-white);
	color: #2f3642;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		color 160ms ease;
}

.olfa-pdp-support-item__icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.olfa-pdp-support-item__body {
	display: grid;
	gap: 0.15rem;
}

.olfa-pdp-support-item__title {
	color: #1a2232;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.olfa-pdp-support-item__copy {
	color: #5f6673;
	font-size: 0.88rem;
	line-height: 1.4;
}

.olfa-pdp-support-item:hover,
.olfa-pdp-support-item:focus-within {
	border-color: #f5cf22;
	box-shadow: 0 8px 18px rgba(245, 207, 34, 0.13);
	transform: translateY(-1px);
}

.olfa-pdp-support-item:hover .olfa-pdp-support-item__icon,
.olfa-pdp-support-item:focus-within .olfa-pdp-support-item__icon {
	border-color: #f5cf22;
	background: #f5cf22;
	color: #111722;
}

.olfa-pdp-details {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
	gap: clamp(2rem, 4vw, 4rem);
	padding-top: clamp(2.75rem, 5vw, 4rem);
	border-top: 1px solid #eef0f4;
}

.olfa-pdp-details__column {
	display: grid;
	align-content: start;
	gap: 1.4rem;
	min-width: 0;
}

.olfa-pdp-details__heading {
	margin: 0;
	color: #182131;
	font-size: clamp(1.7rem, 2.1vw, 2.05rem);
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.olfa-pdp-description {
	color: #5d6674;
	font-size: 1.05rem;
	line-height: 1.82;
}

.olfa-pdp-description > *:first-child {
	margin-top: 0;
}

.olfa-pdp-description > *:last-child {
	margin-bottom: 0;
}

.olfa-pdp-specs {
	padding: 1.25rem 1.25rem 0.25rem;
	border: 1px solid #eef0f4;
	border-radius: 0.2rem;
	background: var(--olfa-color-white);
}

.olfa-pdp-specs__rows {
	display: grid;
}

.olfa-pdp-specs__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid #eef0f4;
}

.olfa-pdp-specs__row:last-child {
	border-bottom: 0;
}

.olfa-pdp-specs__key {
	color: #9ca3ae;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
}

.olfa-pdp-specs__value {
	color: #182131;
	font-size: 1rem;
	font-weight: 700;
	text-align: right;
}

.olfa-pdp-specs__empty {
	margin: 0 0 1rem;
	color: #7b8490;
	font-size: 0.95rem;
}

.olfa-pdp-related {
	display: grid;
	gap: 0.9rem;
	padding-top: clamp(2rem, 3.6vw, 2.85rem);
	border-top: 1px solid #eef0f4;
}

.olfa-pdp-related__heading {
	margin: 0;
	font-size: clamp(1.3rem, 1.55vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0;
}

.olfa-pdp-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.7rem, 1.2vw, 0.9rem);
}

.olfa-pdp-related__grid .olfa-catalog-card {
	height: 100%;
	border: 1px solid #eef0f4;
	background: var(--olfa-color-white);
}

.olfa-pdp-related__grid .olfa-catalog-card__media {
	aspect-ratio: 1.2 / 1;
	margin-bottom: 0;
	border: 0;
	border-bottom: 1px solid #eef0f4;
	border-radius: 0;
	background: #fff;
}

.olfa-pdp-related__grid .olfa-catalog-card__image {
	padding: 0.82rem;
}

.olfa-pdp-related__grid .olfa-catalog-card__body {
	gap: 0.45rem;
	padding: 0.68rem 0.75rem 0.75rem;
}

.olfa-pdp-related__grid .olfa-catalog-card__title {
	min-height: calc(1em * 1.22 * 2);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0;
}

.olfa-pdp-related__grid .olfa-catalog-card__price {
	font-size: 0.94rem;
	font-weight: 800;
}

.olfa-pdp-related__grid .olfa-catalog-card__button {
	min-height: 2.45rem;
	padding: 0.55rem 0.72rem;
	border-width: 1px;
	font-size: 0.68rem;
	letter-spacing: 0.06em;
}

.olfa-pdp-related__grid .olfa-catalog-card__button-icon {
	width: 0.86rem;
	height: 0.86rem;
}

@media (max-width: 1100px) {
	.olfa-pdp-hero {
		grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
		gap: clamp(1.55rem, 2.8vw, 2.45rem);
	}

	.olfa-pdp-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (hover: none) {
	.olfa-pdp-gallery__stage-nav {
		opacity: 1;
	}
}

@media (max-width: 960px) {
	.olfa-pdp-hero,
	.olfa-pdp-details {
		grid-template-columns: 1fr;
	}

	.olfa-pdp-details__column--specs {
		order: -1;
	}

	.olfa-pdp-gallery :where(
		.woocommerce-product-gallery__image--placeholder,
		.wc-block-product-gallery-large-image__container
	) {
		min-height: clamp(16rem, 54vw, 22rem);
	}

	.olfa-pdp-gallery .woocommerce-product-gallery__image:first-child {
		min-height: clamp(16rem, 54vw, 22rem);
	}

	.olfa-pdp-details__heading {
		font-size: clamp(1.8rem, 6vw, 2.2rem);
	}
}

@media (max-width: 640px) {
	.olfa-pdp__breadcrumbs {
		font-size: 0.9rem;
	}

	.olfa-pdp__inner {
		gap: 1.1rem;
	}

	.olfa-pdp-hero {
		gap: 0.8rem;
	}

	.olfa-pdp-gallery {
		padding: 0;
	}

	.olfa-pdp-gallery__shell {
		gap: 0.45rem;
	}

	.olfa-pdp-gallery__stage {
		aspect-ratio: 1 / 0.9;
		max-height: none;
		padding: 0.65rem;
	}

		.olfa-pdp-gallery__stage-nav {
			display: none;
		}

	.olfa-pdp-gallery__dots {
		gap: 0.36rem;
	}

	.olfa-pdp-gallery__thumbs-shell {
		gap: 0.4rem;
	}

	.olfa-pdp-gallery__thumbs {
		gap: 0.4rem;
	}

	.olfa-pdp-gallery__thumbs-nav {
		width: 2rem;
		height: 2rem;
	}

	.olfa-pdp-gallery__thumb {
		flex-basis: 3.9rem;
		width: 3.9rem;
		height: 3.9rem;
	}

	.olfa-pdp-gallery :where(
		.woocommerce-product-gallery__image--placeholder,
		.wc-block-product-gallery-large-image__container
	) {
		min-height: clamp(11rem, 42vw, 13.5rem);
		padding: 0.45rem;
	}

	.olfa-pdp-gallery .woocommerce-product-gallery__wrapper {
		gap: 0.45rem;
	}

	.olfa-pdp-gallery .woocommerce-product-gallery__image {
		padding: 0.3rem;
	}

	.olfa-pdp-gallery .woocommerce-product-gallery__image:first-child {
		min-height: clamp(11rem, 42vw, 13.5rem);
		padding: 0.45rem;
	}

	.olfa-pdp-gallery .flex-control-thumbs,
	.olfa-pdp-gallery .wc-block-product-gallery-thumbnails__scrollable {
		display: flex;
		flex-wrap: nowrap;
		gap: 0.45rem;
		margin-top: 0.45rem;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.olfa-pdp-gallery .flex-control-thumbs li,
	.olfa-pdp-gallery .wc-block-product-gallery-thumbnails__thumbnail {
		float: none;
		flex: 0 0 3.5rem;
		width: 3.5rem;
	}

	.olfa-pdp-gallery :where(
		.flex-control-thumbs img,
		.wc-block-product-gallery-thumbnails__thumbnail__image
	) {
		height: 3.5rem;
		object-fit: contain;
	}

	.olfa-pdp-summary__title {
		font-size: clamp(1.55rem, 7.8vw, 1.95rem);
		line-height: 1.15;
	}

	.olfa-pdp-summary__availability {
		font-size: 0.82rem;
		gap: 0.4rem;
	}

	.olfa-pdp-summary__price {
		font-size: clamp(1.35rem, 7vw, 1.65rem);
	}

	.olfa-pdp-summary__cart {
		padding-top: 0.7rem;
	}

	.olfa-pdp-summary__cart .variations {
		margin-bottom: 0.55rem;
	}

	.olfa-pdp-summary__cart .variations tr {
		padding: 0.45rem 0;
	}

	.olfa-pdp-summary__cart-hint {
		font-size: 0.82rem;
	}

		.olfa-pdp-summary__cart .wp-block-woocommerce-add-to-cart-form,
		.olfa-pdp-summary__cart .wp-block-add-to-cart-form,
		.olfa-pdp-summary__cart form.cart,
		.olfa-pdp-cart-form,
		.olfa-pdp-summary__cart .woocommerce-variation-add-to-cart {
			flex-wrap: nowrap;
			align-items: stretch;
		}

		.olfa-pdp-summary__cart .variations_form,
		.olfa-pdp-summary__cart .single_variation_wrap {
			flex-direction: column;
			align-items: stretch;
		}

	.olfa-pdp-summary__cart .woocommerce-variation-add-to-cart {
		width: 100%;
	}

		.olfa-pdp-summary__cart .wc-block-components-quantity-selector,
		.olfa-pdp-summary__cart .quantity,
		.olfa-pdp-stepper {
			flex: 0 0 clamp(7.85rem, 34vw, 8.5rem);
			width: clamp(7.85rem, 34vw, 8.5rem);
			min-width: 0;
			height: 3.15rem;
		}

		.olfa-pdp-summary__cart .quantity .minus,
		.olfa-pdp-summary__cart .quantity .plus,
		.olfa-pdp-summary__cart .wc-block-components-quantity-selector__button,
		.olfa-pdp-stepper__button {
			flex: 0 0 2.25rem;
			width: 2.25rem;
			min-width: 2.25rem;
		}

		.olfa-pdp-summary__cart .quantity .qty,
		.olfa-pdp-summary__cart .wc-block-components-quantity-selector__input,
		.olfa-pdp-stepper__input {
			flex: 1 1 auto;
			width: auto;
			min-width: 2.65rem;
		}

		.olfa-pdp-summary__cart .single_add_to_cart_button,
		.olfa-pdp-summary__cart .wp-element-button,
		.olfa-pdp-summary__cart .button {
			flex: 1 1 0;
			width: auto;
			min-height: 3.15rem;
			padding: 0 0.8rem;
			gap: 0.48rem;
			font-size: 0.82rem;
		}

	.olfa-pdp-related__grid {
		grid-template-columns: 1fr;
	}

		.olfa-pdp-support-item {
			align-items: flex-start;
			padding: 0.75rem 0.85rem;
		}

		.olfa-pdp-support-list {
			margin-top: 0.35rem;
		}

	.olfa-pdp-related__grid .olfa-catalog-card__media {
		aspect-ratio: 1.35 / 1;
	}

	.olfa-pdp-related__grid .olfa-catalog-card__body {
		padding: 0.68rem 0.72rem 0.76rem;
	}

	.olfa-pdp-gallery-lightbox {
		width: 100vw;
		max-width: none;
		height: 100dvh;
	}

	.olfa-pdp-gallery-lightbox__inner {
		padding: 0.7rem;
	}

	.olfa-pdp-gallery-lightbox__frame {
		grid-template-columns: 1fr;
		padding-top: 3.5rem;
	}

		.olfa-pdp-gallery-lightbox__nav {
			display: none;
		}

	.olfa-pdp-gallery-lightbox__thumb {
		flex-basis: 3.5rem;
		width: 3.5rem;
		height: 3.5rem;
	}

	.olfa-pdp-specs__row {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}

	.olfa-pdp-specs__value {
		text-align: left;
	}
}
