.wgrm-secure-mode {
	position: relative;
}

.wgrm-secure-banner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
	padding: 11px 13px;
	border: 1px solid #b2ccff;
	border-color: color-mix(in srgb, var(--wgr-brand, #2563eb) 28%, #d0d5dd);
	border-radius: 10px;
	background: #f5f8ff;
	background: color-mix(in srgb, var(--wgr-brand, #2563eb) 7%, #fff);
	font-size: 12px;
	line-height: 1.45;
	color: #344054;
}

.wgrm-secure-banner strong {
	flex: 0 0 auto;
	color: #101828;
}

.wgrm-unlock-panel[hidden] {
	display: none;
}

.wgrm-unlock-panel {
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 13px;
	padding: 13px;
	border: 1px solid #d0d5dd;
	border-radius: 11px;
	background: #fff;
	color: #344054;
}

.wgrm-unlock-panel__header {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.wgrm-unlock-panel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	border-radius: 50%;
	background: #eff4ff;
	font-size: 13px;
	font-weight: 800;
	color: #3538cd;
}

.wgrm-unlock-panel__title {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	font-size: 12px;
	line-height: 1.45;
}

.wgrm-unlock-panel__title strong {
	font-size: 13px;
	color: #101828;
}

.wgrm-unlock-panel__progress {
	height: 7px;
	margin-top: 11px;
	border-radius: 99px;
	background: #eaecf0;
	overflow: hidden;
}

.wgrm-unlock-panel__progress span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--wgr-brand, #2563eb);
	transition: width 180ms ease;
}

.wgrm-unlock-panel__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
	font-size: 11px;
	font-weight: 600;
	color: #667085;
}

.wgrm-unlock-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 11px;
}

.wgrm-unlock-panel__actions:empty {
	display: none;
}

.wgrm-unlock-panel__actions .button {
	min-height: 34px;
	margin: 0;
	padding: 5px 13px;
	border-radius: 7px;
	cursor: pointer;
}

.wgrm-unlock-panel.is-waiting {
	border-color: #b2ccff;
	background: #f5f8ff;
}

.wgrm-unlock-panel.is-unlocked,
.wgrm-unlock-panel.is-complete {
	border-color: #a6f4c5;
	background: #f6fef9;
}

.wgrm-unlock-panel.is-unlocked .wgrm-unlock-panel__icon,
.wgrm-unlock-panel.is-complete .wgrm-unlock-panel__icon {
	background: #dcfae6;
	color: #067647;
}

.wgrm-unlock-panel.is-waitlist {
	border-color: #fedf89;
	background: #fffcf5;
}

.wgrm-unlock-panel.is-error,
.wgrm-unlock-panel.is-urgent {
	border-color: #fecdca;
	background: #fffbfa;
}

.wgrm-unlock-panel.is-error .wgrm-unlock-panel__icon,
.wgrm-unlock-panel.is-urgent .wgrm-unlock-panel__icon {
	background: #fee4e2;
	color: #b42318;
}

.wgr-atc-form .wgrm-is-loading {
	pointer-events: none;
	opacity: 0.76;
}

.wgr-atc-form .wgrm-is-loading::after,
.wgrm-unlock-panel .wgrm-is-loading::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 8px;
	vertical-align: -2px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: wgrm-spin 650ms linear infinite;
}

.wgr-atc-form .wgrm-is-reserved {
	cursor: default;
	opacity: 0.82;
}

@keyframes wgrm-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
	.wgrm-secure-banner {
		flex-direction: column;
		gap: 3px;
	}

	.wgrm-unlock-panel__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.wgrm-unlock-panel__actions,
	.wgrm-unlock-panel__actions .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wgrm-unlock-panel__progress span {
		transition: none;
	}

	.wgr-atc-form .wgrm-is-loading::after,
	.wgrm-unlock-panel .wgrm-is-loading::after {
		animation-duration: 1.4s;
	}
}

.wgrm-unlock-panel__actions .button:focus-visible,
.wgr-atc-form button:focus-visible {
	outline: 2px solid var(--wgr-brand, #2563eb);
	outline-offset: 2px;
}

.wgrm-unlock-panel button[aria-busy="true"],
.wgr-atc-form button[aria-busy="true"] {
	cursor: progress;
}

/* Single-product presentation. Every selector is intentionally scoped by the
 * manager body class and the product content wrapper; headers and footers are
 * never targeted. */
body.wgrm-single-product-tweaks .single-product-page .wd-single-price.wgrm-empty-native-price {
	display: none;
}

body.wgrm-single-product-tweaks .single-product-page,
body.wgrm-single-product-tweaks .wd-content-area .single-product-page {
	--wgrm-surface: #ffffff;
	--wgrm-surface-soft: #f8fafc;
	--wgrm-border: #e2e8f0;
	--wgrm-text: #0f172a;
	--wgrm-muted: #64748b;
	--wgrm-accent: var(--wgr-brand, #0f63e9);
	--wgrm-accent-dark: var(--wgr-brand-strong, #0d57cd);
	--wgrm-success: #059669;
}

body.wgrm-single-product-tweaks .single-product-page .product_title {
	line-height: 1.18;
	text-wrap: balance;
}

body.wgrm-single-product-tweaks .single-product-page .woocommerce-product-gallery {
	border-radius: 16px;
	overflow: clip;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-block {
	box-sizing: border-box;
	width: 100%;
	margin: 18px 0 0;
	border: 1px solid color-mix(in srgb, var(--wgrm-accent) 22%, var(--wgrm-border));
	border-radius: 16px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--wgrm-accent) 4%, #fff), #fff 42%);
	overflow: hidden;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-block__inner {
	box-sizing: border-box;
	padding: clamp(18px, 3vw, 26px);
}

body.wgrm-single-product-tweaks .single-product-page .wgr-block__header {
	margin-bottom: 12px;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-tag {
	border-radius: 999px;
	letter-spacing: 0.04em;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-block__prices {
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr);
	align-items: end;
	gap: 3px 12px;
	margin-bottom: 16px;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-price-group {
	grid-row: 1 / span 2;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1;
	letter-spacing: -0.035em;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-price-regular,
body.wgrm-single-product-tweaks .single-product-page .wgr-price-label {
	align-self: center;
	color: var(--wgrm-muted);
}

body.wgrm-single-product-tweaks .single-product-page .wgr-block__status,
body.wgrm-single-product-tweaks .single-product-page .wgr-block__joined,
body.wgrm-single-product-tweaks .single-product-page .wgr-share,
body.wgrm-single-product-tweaks .single-product-page .wgr-trust {
	border-radius: 12px;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-atc-form button,
body.wgrm-single-product-tweaks .single-product-page .wgr-share button,
body.wgrm-single-product-tweaks .single-product-page .wgrm-unlock-panel button,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase button,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase__cart-link {
	box-sizing: border-box;
	min-height: 42px;
	border-radius: 10px;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-atc-form button:hover,
body.wgrm-single-product-tweaks .single-product-page .wgr-share button:hover,
body.wgrm-single-product-tweaks .single-product-page .wgrm-unlock-panel button:hover,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase button:hover,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase__cart-link:hover {
	transform: translateY(-1px);
}

body.wgrm-single-product-tweaks .single-product-page .wgr-atc-form button:focus-visible,
body.wgrm-single-product-tweaks .single-product-page .wgr-share button:focus-visible,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase button:focus-visible,
body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase__cart-link:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--wgrm-accent) 28%, transparent);
	outline-offset: 2px;
}

body.wgrm-single-product-tweaks .single-product-page .wgrm-secure-banner {
	margin-bottom: 14px;
	padding: 13px 14px;
	border-radius: 12px;
}

body.wgrm-single-product-tweaks .single-product-page .wgrm-unlock-panel {
	margin-bottom: 15px;
	border-radius: 13px;
}

body.wgrm-single-product-tweaks .single-product-page .wgr-trust {
	background: color-mix(in srgb, var(--wgrm-accent) 3%, var(--wgrm-surface-soft));
}

body.wgrm-single-product-tweaks .single-product-page .wgr-trust__item {
	min-width: 0;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase {
	box-sizing: border-box;
	width: 100%;
	margin: 16px 0 0;
	padding: clamp(18px, 3vw, 24px);
	border: 1px solid var(--wgrm-border, #e2e8f0);
	border-radius: 16px;
	background: var(--wgrm-surface, #fff);
	color: var(--wgrm-text, #0f172a);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__eyebrow {
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--wgrm-accent, #0f63e9);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 18px;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__copy h3 {
	margin: 0;
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.22;
	color: var(--wgrm-text, #0f172a);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__copy p {
	max-width: 620px;
	margin: 7px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--wgrm-muted, #64748b);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	min-width: 130px;
	text-align: right;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--wgrm-muted, #64748b);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price-value {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--wgrm-text, #0f172a);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price-value del {
	margin-right: 7px;
	font-size: 0.58em;
	font-weight: 600;
	color: var(--wgrm-muted, #64748b);
	opacity: 0.8;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price-value ins {
	background: none;
	text-decoration: none;
	color: var(--wgrm-success, #059669);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 16px 0;
	padding: 11px 13px;
	border-radius: 10px;
	background: var(--wgrm-surface-soft, #f8fafc);
	font-size: 12px;
	font-weight: 650;
	color: #475569;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__meta > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--wgrm-success, #059669);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form {
	display: grid;
	grid-template-columns: auto minmax(190px, 1fr) auto;
	align-items: stretch;
	gap: 10px;
	margin: 0;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form .quantity {
	margin: 0;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form .quantity input {
	min-height: 44px;
	border-radius: 10px;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__button {
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 10px 18px;
	border: 1px solid var(--wgrm-accent, #0f63e9);
	background: var(--wgrm-accent, #0f63e9);
	color: #fff;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__button:hover {
	border-color: var(--wgrm-accent-dark, #0d57cd);
	background: var(--wgrm-accent-dark, #0d57cd);
	color: #fff;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__button[aria-busy="true"] {
	cursor: progress;
	opacity: 0.78;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__button.wgrm-is-loading::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 9px;
	vertical-align: -2px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: wgrm-spin 650ms linear infinite;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 104px;
	padding: 9px 14px;
	border: 1px solid var(--wgrm-border, #e2e8f0);
	background: #fff;
	color: var(--wgrm-text, #0f172a);
	text-decoration: none;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__cart-link[hidden] {
	display: none;
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__status {
	min-height: 20px;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.45;
	color: var(--wgrm-muted, #64748b);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__status.is-success {
	color: var(--wgrm-success, #059669);
}

body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__status.is-error {
	color: #b42318;
}

@media (max-width: 767px) {
	body.wgrm-single-product-tweaks .single-product-page .wgr-block__prices,
	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__head {
		grid-template-columns: 1fr;
	}

	body.wgrm-single-product-tweaks .single-product-page .wgr-price-group {
		grid-row: auto;
	}

	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__price {
		align-items: flex-start;
		text-align: left;
	}

	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form {
		grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
	}

	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__cart-link {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	body.wgrm-single-product-tweaks .single-product-page .wgr-block__inner,
	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase {
		padding: 16px;
	}

	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form {
		grid-template-columns: 1fr;
	}

	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__form .quantity,
	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__button,
	body.wgrm-standard-purchase-active .single-product-page .wgrm-standard-purchase__cart-link {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.wgrm-single-product-tweaks .single-product-page .wgr-atc-form button,
	body.wgrm-single-product-tweaks .single-product-page .wgr-share button,
	body.wgrm-single-product-tweaks .single-product-page .wgrm-unlock-panel button,
	body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase button,
	body.wgrm-single-product-tweaks .single-product-page .wgrm-standard-purchase__cart-link {
		transition: none;
	}
}

/* 2.3 product-content polish. All presentation remains scoped to the
 * single-product content shell. The rules use flat surfaces and borders only. */
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished {
	--wgrm-page-surface: #ffffff;
	--wgrm-page-soft: #f7f8fa;
	--wgrm-page-soft-strong: #f1f3f6;
	--wgrm-page-border: #e3e6eb;
	--wgrm-page-border-strong: #cfd5dd;
	--wgrm-page-text: #111318;
	--wgrm-page-muted: #667085;
	--wgrm-page-accent: var(--wgr-brand, #1769e0);
	--wgrm-page-accent-dark: var(--wgr-brand-strong, #0f56be);
	--wgrm-page-success: #087a55;
	--wgrm-page-radius: 22px;
	--wgrm-content-width: var(--wd-container-w, 1220px);
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.96fr) minmax(0, 1.04fr);
	align-items: start;
	gap: clamp(24px, 3vw, 44px);
	width: 100%;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	border: 1px solid var(--wgrm-page-border);
	border-radius: var(--wgrm-page-radius);
	background: var(--wgrm-page-surface);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
	position: relative;
	padding: clamp(14px, 1.8vw, 20px);
	align-self: start;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
	padding: clamp(20px, 2.8vw, 32px);
	align-self: start;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-widget,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-widget .elementor-widget-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery__wrapper,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery__wrapper,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img {
	border-radius: 17px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img {
	display: block;
	transition: opacity 180ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame:hover img {
	opacity: 0.97;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-heading {
	width: 100%;
	margin: 18px 0 12px;
	padding: 0 4px;
	text-align: center;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-heading .elementor-heading-title {
	margin: 0;
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 650;
	line-height: 1.28;
	letter-spacing: -0.018em;
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action .elementor-widget-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action .elementor-button-wrapper {
	width: 100%;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action {
	margin: 0 0 10px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid #15171b;
	border-radius: 13px;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.006em;
	text-decoration: none;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--primary .wgrm-membership-button {
	background: #15171b;
	color: #ffffff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--primary .wgrm-membership-button:hover {
	background: #2a2d33;
	border-color: #2a2d33;
	color: #ffffff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--secondary .wgrm-membership-button {
	background: var(--wgrm-page-soft);
	border-color: var(--wgrm-page-border-strong);
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--secondary .wgrm-membership-button:hover {
	background: var(--wgrm-page-soft-strong);
	border-color: #aeb6c2;
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-card .product_title,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-card .wd-entities-title {
	margin-bottom: 8px;
	font-size: clamp(25px, 3vw, 38px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-copy {
	font-size: 14px;
	line-height: 1.7;
	color: #4b5565;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-copy p,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-copy ul {
	margin-bottom: 12px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-summary-copy li + li {
	margin-top: 5px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-commerce-widget {
	width: 100%;
	margin-top: 4px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase {
	border: 1px solid var(--wgrm-page-border-strong);
	border-radius: 18px;
	background: #ffffff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card {
	margin-top: 12px;
	border-color: color-mix(in srgb, var(--wgrm-page-accent) 28%, var(--wgrm-page-border));
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-block__inner {
	padding: clamp(18px, 3vw, 27px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-tag {
	padding: 7px 11px;
	background: color-mix(in srgb, var(--wgrm-page-accent) 8%, #fff);
	color: var(--wgrm-page-accent-dark);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-price-group {
	font-weight: 750;
	color: var(--wgrm-page-accent);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-block__status,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-block__joined,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-share,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-trust {
	border: 1px solid var(--wgrm-page-border);
	background: var(--wgrm-page-soft);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-progress {
	height: 8px;
	border-radius: 999px;
	background: #e9edf2;
	overflow: hidden;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .wgr-progress__bar {
	border-radius: inherit;
	background: var(--wgrm-page-accent);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase {
	position: relative;
	margin-top: 14px;
	border-color: color-mix(in srgb, var(--wgrm-page-success) 28%, var(--wgrm-page-border));
	overflow: hidden;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase::after {
	display: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__eyebrow {
	color: var(--wgrm-page-success);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__price {
	padding: 10px 12px;
	border: 1px solid color-mix(in srgb, var(--wgrm-page-success) 18%, var(--wgrm-page-border));
	border-radius: 12px;
	background: color-mix(in srgb, var(--wgrm-page-success) 5%, #fff);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__button {
	border-color: var(--wgrm-page-success);
	background: var(--wgrm-page-success);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__button:hover {
	border-color: #066747;
	background: #066747;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__form .quantity,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .quantity {
	border: 1px solid var(--wgrm-page-border-strong);
	border-radius: 11px;
	background: #fff;
	overflow: hidden;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__form .quantity input,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card .quantity input {
	border: 0;
	background: transparent;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-action-control {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 10px;
	border: 1px solid var(--wgrm-page-border);
	border-radius: 10px;
	background: #fff;
	transition: border-color 150ms ease, background-color 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-action-control:hover {
	border-color: color-mix(in srgb, var(--wgrm-page-accent) 34%, var(--wgrm-page-border));
	background: color-mix(in srgb, var(--wgrm-page-accent) 3%, #fff);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-visitor-card {
	padding: 11px 14px;
	border: 1px solid #ead9b7;
	border-radius: 12px;
	background: #fffbf2;
	color: #72581f;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-section-heading {
	margin-bottom: clamp(14px, 2.4vw, 24px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-section-heading .woodmart-title-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-section-heading .elementor-heading-title {
	letter-spacing: -0.025em;
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section {
	box-sizing: border-box;
	width: min(calc(100% - 40px), var(--wgrm-content-width));
	max-width: var(--wgrm-content-width);
	margin-right: auto;
	margin-left: auto;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section {
	margin-top: clamp(42px, 6vw, 72px);
	margin-bottom: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section {
	margin-top: 0;
	padding: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid {
	display: grid;
	align-items: stretch;
	width: 100%;
	gap: 14px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid > .wgrm-icon-grid-item {
	box-sizing: border-box;
	width: auto;
	max-width: none;
	min-width: 0;
	height: 100%;
	margin: 0;
	flex: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: clamp(16px, 2vw, 22px);
	border: 1px solid var(--wgrm-page-border);
	border-radius: 16px;
	background: #fff;
	transition: border-color 160ms ease, background-color 160ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card:hover {
	border-color: var(--wgrm-page-border-strong);
	background: #fcfcfd;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-widget-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-icon-box-wrapper {
	height: 100%;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-icon-box-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: var(--wgrm-page-soft);
	color: #3f4650;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-icon-box-title {
	margin-top: 14px;
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.32;
	letter-spacing: -0.014em;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card .elementor-icon-box-description {
	margin-top: auto;
	font-size: 13px;
	line-height: 1.58;
	color: var(--wgrm-page-muted);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-spec-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-reviews-card {
	box-sizing: border-box;
	padding: clamp(18px, 2.7vw, 28px);
	border: 1px solid var(--wgrm-page-border);
	border-radius: 18px;
	background: #fff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-spec-card table {
	margin: 0;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-spec-card tr:nth-child(even) {
	background: var(--wgrm-page-soft);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-spec-card th,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-spec-card td {
	padding: 12px 14px;
	border-color: var(--wgrm-page-border);
	line-height: 1.55;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card {
	font-size: 15px;
	line-height: 1.78;
	color: #3f4857;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card h2,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card h3,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card h4 {
	margin-top: 1.55em;
	margin-bottom: 0.55em;
	line-height: 1.25;
	color: var(--wgrm-page-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card > :first-child {
	margin-top: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card li + li {
	margin-top: 6px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-reviews-card input,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-reviews-card textarea,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-reviews-card select {
	border: 1px solid var(--wgrm-page-border-strong);
	border-radius: 10px;
	background: #fff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-related-section {
	padding-top: clamp(28px, 5vw, 54px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-related-products .product-grid-item {
	border: 1px solid var(--wgrm-page-border);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	transition: border-color 160ms ease, background-color 160ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-related-products .product-grid-item:hover {
	border-color: var(--wgrm-page-border-strong);
	background: #fcfcfd;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished input,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished select,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished textarea {
	font-family: inherit;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished button:focus-visible,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .button:focus-visible,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished a:focus-visible,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished input:focus-visible,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished select:focus-visible,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished textarea:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--wgrm-page-accent) 24%, transparent);
	outline-offset: 2px;
}

@media (min-width: 901px) and (min-height: 760px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
		position: sticky;
		top: var(--wgrm-sticky-offset, 20px);
	}
}

@media (max-width: 1100px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 20px;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--4,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
		position: static;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
		padding: 16px;
		border-radius: 17px;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section {
		width: calc(100% - 24px);
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__price {
		width: 100%;
		align-items: flex-start;
	}
}

@media (max-width: 560px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--4,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--5 {
		grid-template-columns: minmax(0, 1fr);
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-action-control {
		width: 100%;
		justify-content: center;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-button {
		min-height: 50px;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-button,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-action-control,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-related-products .product-grid-item {
		transition: none;
	}
}

/* 2.4 geometry hardening. These rules are appended after the builder stack and
 * remain restricted to the product content shell. Flat surfaces only. */
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished {
	--wgrm-content-width: min(var(--wd-container-w, 1220px), calc(100vw - 40px));
	--wgrm-flat-border: #dfe3e8;
	--wgrm-flat-border-strong: #c9d0d8;
	--wgrm-flat-surface: #ffffff;
	--wgrm-flat-soft: #f6f7f9;
	--wgrm-flat-text: #17191d;
	--wgrm-flat-muted: #686f79;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section {
	box-sizing: border-box;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
	align-items: start;
	width: var(--wgrm-content-width);
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	gap: clamp(26px, 3vw, 42px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	max-width: none;
	margin: 0;
	border: 1px solid var(--wgrm-flat-border);
	border-radius: 24px;
	background: var(--wgrm-flat-surface);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: clamp(14px, 1.6vw, 20px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
	padding: clamp(22px, 2.5vw, 34px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-widget,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-widget > .elementor-widget-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .wd-carousel-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .wd-carousel-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery__wrapper,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .wd-carousel-wrap,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .wd-carousel-item,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery__image,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame .woocommerce-product-gallery__image a,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-heading,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action .elementor-widget-container,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action .elementor-button-wrapper,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-button {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame {
	margin: 0;
	border: 1px solid var(--wgrm-flat-border);
	border-radius: 18px;
	background: var(--wgrm-flat-soft);
	overflow: clip;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-gallery-frame img {
	display: block;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 17px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-heading {
	margin: 20px 0 13px;
	padding: 0 6px;
	text-align: center;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-heading .elementor-heading-title {
	margin: 0;
	font-size: clamp(18px, 1.7vw, 23px);
	font-weight: 650;
	line-height: 1.28;
	letter-spacing: -0.02em;
	color: var(--wgrm-flat-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action {
	margin: 0 0 10px;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action:last-child {
	margin-bottom: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 13px 18px;
	border: 1px solid #1d1f23;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-decoration: none;
	transform: none;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--primary .wgrm-membership-button {
	background: #1d1f23;
	border-color: #1d1f23;
	color: #ffffff;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--primary .wgrm-membership-button:hover {
	background: #30333a;
	border-color: #30333a;
	color: #ffffff;
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--secondary .wgrm-membership-button {
	background: var(--wgrm-flat-soft);
	border-color: var(--wgrm-flat-border-strong);
	color: var(--wgrm-flat-text);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-membership-action--secondary .wgrm-membership-button:hover {
	background: #eceff3;
	border-color: #aeb6c0;
	color: var(--wgrm-flat-text);
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-groupbuy-card,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-unlock-panel {
	background: var(--wgrm-flat-surface);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgr-atc-form button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgr-share button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-unlock-panel button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase button,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__cart-link {
	transform: none;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgr-atc-form button:hover,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgr-share button:hover,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-unlock-panel button:hover,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase button:hover,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-standard-purchase__cart-link:hover {
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-benefits-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-benefits-section > .e-con-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
	padding: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section {
	width: var(--wgrm-content-width);
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section {
	padding: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
	padding: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid > .wgrm-icon-grid-item {
	box-sizing: border-box;
	width: auto;
	min-width: 0;
	max-width: none;
	height: 100%;
	margin: 0;
	padding: 0;
	align-self: stretch;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 18px;
	border: 1px solid var(--wgrm-flat-border);
	border-radius: 17px;
	background: var(--wgrm-flat-surface);
	transform: none;
	transition: border-color 150ms ease, background-color 150ms ease;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-card:hover {
	border-color: var(--wgrm-flat-border-strong);
	background: #fafbfc;
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits .wgrm-icon-card {
	padding: 16px 12px;
	text-align: center;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits .elementor-icon-box-wrapper {
	align-items: center;
	text-align: center;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--process .wgrm-icon-card {
	padding: clamp(17px, 1.7vw, 22px);
}

@media (min-width: 1024px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
		position: sticky;
		top: var(--wgrm-sticky-offset, 20px);
		max-height: calc(100vh - var(--wgrm-sticky-offset, 20px) - 20px);
		overflow: auto;
		overscroll-behavior: contain;
		scrollbar-width: thin;
	}
}

@media (max-width: 1100px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--process {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card {
		position: static;
		max-height: none;
		overflow: visible;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished {
		--wgrm-content-width: calc(100vw - 24px);
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-gallery-card,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-primary-grid > .wgrm-summary-card {
		padding: 14px;
		border-radius: 20px;
	}

	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--process,
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--benefits {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished {
	--wgrm-boxed-content-width: calc(100vw - 40px);
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-boxed-product-section {
	--width: var(--wgrm-boxed-content-width);
	box-sizing: border-box;
	width: var(--wgrm-boxed-content-width);
	inline-size: var(--wgrm-boxed-content-width);
	max-width: 100%;
	max-inline-size: 100%;
	margin-right: auto;
	margin-left: auto;
	align-self: center;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section > .e-con-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section > .e-con-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-boxed-product-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-icon-grid--process {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--wgrm-boxed-content-width);
	margin-right: auto;
	margin-left: auto;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-cards-section:not(.wgrm-icon-grid) {
	display: block;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-heading-section .wgrm-section-heading {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--wgrm-boxed-content-width);
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 680px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished {
		--wgrm-boxed-content-width: calc(100vw - 24px);
	}
}


/* 2.4.3 process-width resolver. The helper shell keeps Elementor and WoodMart
 * full-width calculations inside the same measured product-page container. */
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell {
	display: block;
	box-sizing: border-box;
	width: var(--wgrm-process-shell-width, var(--wgrm-boxed-content-width));
	max-width: calc(100vw - 40px);
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-right: 0;
	padding-bottom: clamp(30px, 3vw, 44px);
	padding-left: 0;
	position: relative;
	left: auto;
	right: auto;
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-heading-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-cards-section {
	--width: 100%;
	--content-width: 100%;
	--padding-top: 0px;
	--padding-right: 0px;
	--padding-bottom: 0px;
	--padding-left: 0px;
	box-sizing: border-box;
	width: 100%;
	inline-size: 100%;
	max-width: none;
	max-inline-size: none;
	margin-right: 0;
	margin-left: 0;
	padding: 0;
	left: auto;
	right: auto;
	inset-inline-start: auto;
	inset-inline-end: auto;
	transform: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-heading-section {
	margin-top: clamp(42px, 6vw, 72px);
	margin-bottom: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-cards-section {
	margin-top: 0;
}

@media (max-width: 680px) {
	body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell {
		max-width: calc(100vw - 24px);
		padding-bottom: 24px;
	}
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-heading-section > .e-con-inner,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-cards-section > .e-con-inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-cards-section,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-process-box-shell > .wgrm-process-cards-section.wgrm-icon-grid {
	--gap: 16px;
	--row-gap: 16px;
	--column-gap: 16px;
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-heading-divider,
body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-empty-spacer {
	display: none;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-heading {
	margin-right: 0;
	margin-left: 0;
	padding-top: 0;
	padding-bottom: 0;
	border-top: 0;
	border-bottom: 0;
	background: transparent;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-title {
	max-width: 820px;
	margin-top: 0;
	margin-bottom: clamp(30px, 3.4vw, 46px);
	font-size: clamp(26px, 2.35vw, 34px);
	line-height: 1.2;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-subheading {
	margin-top: clamp(30px, 4vw, 52px);
	margin-bottom: 14px;
	font-size: clamp(22px, 1.85vw, 28px);
	line-height: 1.24;
}

body.wgrm-single-product-tweaks .single-product-page.wgrm-product-content-polished .wgrm-description-card .wgrm-description-subheading--intro {
	margin-top: 0;
}

.wgrm-legacy-locked .wgrm-legacy-banner {
	border-color: #f2c94c;
	background: #fffbeb;
}

.wgrm-legacy-locked .wgrm-legacy-banner strong {
	color: #7a2e0e;
}

.wgrm-legacy-locked .wgr-cta.wgrm-legacy-disabled,
.wgrm-legacy-locked .wgr-cta.wgrm-legacy-disabled:hover,
.wgrm-legacy-locked .wgr-cta.wgrm-legacy-disabled:focus {
	cursor: not-allowed;
	opacity: .7;
	transform: none;
}
