:root {
	--lw-ink: #333333;
	--lw-navy: #1f2933;
	--lw-slate: #4a4a4a;
	--lw-muted: #696969;
	--lw-line: #e1e1e1;
	--lw-soft: #f8f7f5;
	--lw-panel: #ffffff;
	--lw-blue: #126cb5;
	--lw-blue-strong: #0d568f;
	--lw-aqua: #e7f2fb;
	--lw-green: #008338;
	--lw-green-strong: #006f31;
	--lw-gold: #f0b429;
	--lw-shadow: 0 24px 70px rgba(51, 51, 51, 0.12);
	--lw-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	background: var(--lw-soft);
	color: var(--lw-ink);
	font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.site-title,
.woocommerce-loop-product__title,
.product_title {
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	letter-spacing: 0;
}

a {
	color: var(--lw-blue);
}

a:visited {
	color: var(--lw-blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(18, 108, 181, 0.28);
	outline-offset: 3px;
}

.site {
	overflow-x: clip;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(226, 232, 240, 0.92);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

.site-header .col-full,
.col-full {
	max-width: 1220px;
}

.site-branding .site-title a {
	color: var(--lw-navy);
	font-weight: 800;
	text-decoration: none;
}

.site-branding .site-description {
	color: var(--lw-muted);
	font-size: 0.92rem;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a,
.site-header-cart .cart-contents {
	color: var(--lw-slate);
	font-weight: 800;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover,
.site-header-cart .cart-contents:hover {
	color: var(--lw-blue);
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.added_to_cart {
	min-height: 46px;
	border: 0;
	border-radius: 6px;
	background: var(--lw-green);
	color: #ffffff;
	font-weight: 800;
	box-shadow: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus {
	background: var(--lw-green-strong);
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(0, 131, 56, 0.22);
	transform: translateY(-1px);
}

.lw-container {
	width: min(1220px, calc(100% - 40px));
	margin: 0 auto;
}

.lw-hero {
	position: relative;
	border-bottom: 1px solid var(--lw-line);
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%),
		var(--lw-soft);
}

.lw-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
	pointer-events: none;
}

.lw-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	min-height: 700px;
	padding: 84px 0 76px;
}

.lw-eyebrow {
	margin: 0 0 14px;
	color: var(--lw-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lw-hero h1 {
	max-width: 820px;
	margin: 0;
	color: var(--lw-navy);
	font-size: clamp(3.05rem, 6.8vw, 6.7rem);
	line-height: 0.92;
}

.lw-lede {
	max-width: 720px;
	margin: 26px 0 0;
	color: var(--lw-slate);
	font-size: clamp(1.08rem, 1.5vw, 1.26rem);
	line-height: 1.68;
}

.lw-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 34px;
}

.lw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.98rem 1.35rem;
	text-decoration: none;
}

.lw-link {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	color: var(--lw-navy);
	font-weight: 900;
	text-decoration: none;
}

.lw-link:hover {
	color: var(--lw-blue);
}

.lw-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
	max-width: 660px;
}

.lw-stats div {
	padding: 16px;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: rgba(255, 255, 255, 0.78);
}

.lw-stats strong,
.lw-stats span {
	display: block;
}

.lw-stats strong {
	color: var(--lw-navy);
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-size: 1.12rem;
}

.lw-stats span {
	margin-top: 4px;
	color: var(--lw-muted);
	font-size: 0.92rem;
	line-height: 1.35;
}

.lw-hero__visual {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #ffffff;
	box-shadow: var(--lw-shadow);
}

.lw-hero__visual::after {
	position: absolute;
	right: 18px;
	bottom: 18px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.82);
	color: #ffffff;
	content: "Live quote ready";
	font-size: 0.86rem;
	font-weight: 800;
}

.lw-hero__image {
	display: block;
	width: 100%;
	aspect-ratio: 1.18 / 1;
	object-fit: cover;
}

.lw-product-paths {
	padding: 22px 0;
	background: var(--lw-navy);
}

.lw-path-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--lw-radius);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.14);
}

.lw-path {
	display: grid;
	min-height: 190px;
	align-content: space-between;
	padding: 22px;
	background: #ffffff;
	color: var(--lw-navy);
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.lw-path--dark,
.lw-path:hover {
	background: #0b1220;
	color: #ffffff;
}

.lw-path span {
	color: var(--lw-blue);
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-weight: 800;
}

.lw-path--dark span,
.lw-path:hover span {
	color: #7dd3fc;
}

.lw-path strong,
.lw-path small {
	display: block;
}

.lw-path strong {
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-size: 1.28rem;
}

.lw-path small {
	max-width: 260px;
	color: currentColor;
	line-height: 1.45;
	opacity: 0.74;
}

.lw-section {
	padding: 86px 0;
	background: #ffffff;
}

.lw-section--muted {
	border-block: 1px solid var(--lw-line);
	background: var(--lw-soft);
}

.lw-section__heading {
	max-width: 760px;
	margin-bottom: 32px;
}

.lw-section h2,
.lw-split h2,
.lw-cta-band h2 {
	margin: 0;
	color: var(--lw-navy);
	font-size: clamp(2.15rem, 3.4vw, 3.7rem);
	line-height: 1.02;
}

.lw-split {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	gap: clamp(30px, 6vw, 86px);
	align-items: start;
}

.lw-proof-list {
	display: grid;
	gap: 14px;
}

.lw-proof-list div {
	padding: 24px;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.lw-proof-list strong {
	display: block;
	color: var(--lw-navy);
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-size: 1.15rem;
}

.lw-proof-list p {
	margin: 10px 0 0;
	color: var(--lw-muted);
	line-height: 1.6;
}

.lw-material-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.lw-material {
	display: grid;
	gap: 18px;
	min-height: 255px;
	padding: 24px;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #ffffff;
	color: var(--lw-navy);
	text-decoration: none;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lw-material:hover {
	border-color: rgba(18, 108, 181, 0.36);
	box-shadow: var(--lw-shadow);
	transform: translateY(-2px);
}

.lw-material span {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 1.2;
	border: 1px solid #cbd5e1;
	border-radius: var(--lw-radius);
	background:
		linear-gradient(90deg, rgba(18, 108, 181, 0.13), transparent 46%),
		#ffffff;
}

.lw-material--clear span {
	background:
		linear-gradient(135deg, rgba(18, 108, 181, 0.16), transparent 48%),
		repeating-linear-gradient(45deg, #ffffff 0 10px, #f1f5f9 10px 20px);
}

.lw-material--matte span {
	background: #e2e8f0;
}

.lw-material strong,
.lw-material small {
	display: block;
}

.lw-material strong {
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-size: 1.35rem;
}

.lw-material small {
	color: var(--lw-muted);
	font-size: 1rem;
	line-height: 1.45;
}

.lw-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #ffffff;
	box-shadow: var(--lw-shadow);
}

.site-footer {
	border-top: 1px solid var(--lw-line);
	background: #ffffff;
	color: var(--lw-muted);
}

.right-sidebar .content-area,
.left-sidebar .content-area {
	width: 100%;
	float: none;
}

.right-sidebar .widget-area,
.left-sidebar .widget-area {
	display: none;
}

.woocommerce-products-header,
.storefront-sorting,
.site-main ul.products {
	max-width: 1220px;
	margin-inline: auto;
}

ul.products li.product {
	overflow: hidden;
	padding: 0 0 18px;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #ffffff;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .price,
ul.products li.product .button {
	margin-inline: 18px;
}

.lw-live-price-note {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--lw-aqua);
	color: var(--lw-blue-strong);
	font-size: 0.88rem;
	font-weight: 900;
}

.labelworks-csc-product .woocommerce-breadcrumb,
.labelworks-csc-product .product_meta,
.labelworks-csc-product .woocommerce-tabs,
.labelworks-csc-product div.product .woocommerce-product-gallery,
.labelworks-csc-product div.product form.cart,
.labelworks-csc-product div.product .price {
	display: none;
}

.labelworks-csc-product div.product {
	display: block;
}

.labelworks-csc-product div.product .summary {
	width: 100%;
	float: none;
	margin: 0;
}

.labelworks-csc-product .product_title {
	max-width: 1220px;
	margin: 34px auto 8px;
	color: var(--lw-navy);
	font-size: clamp(2.5rem, 5vw, 5rem);
	line-height: 0.95;
}

.labelworks-csc-product .woocommerce-product-details__short-description {
	max-width: 1220px;
	margin: 0 auto 54px;
}

.labelworks-csc-product .woocommerce-product-details__short-description > p:not(:has(.csc-configurator)) {
	max-width: 720px;
	color: var(--lw-muted);
	font-size: 1.08rem;
	line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 980px) {
	.lw-hero__grid,
	.lw-path-grid,
	.lw-split,
	.lw-material-grid {
		grid-template-columns: 1fr;
	}

	.lw-hero__grid {
		min-height: 0;
		padding: 58px 0 52px;
	}

	.lw-path {
		min-height: 155px;
	}

	.lw-cta-band {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.lw-container {
		width: min(100% - 28px, 1220px);
	}

	.lw-hero h1 {
		font-size: 3rem;
	}

	.lw-stats {
		grid-template-columns: 1fr;
	}

	.lw-section {
		padding: 58px 0;
	}

	.labelworks-csc-product .product_title,
	.labelworks-csc-product .woocommerce-product-details__short-description {
		width: min(100% - 28px, 1220px);
	}
}

/* Sheet-label product page */
.labelworks-csc-product .site-content .col-full {
	max-width: none;
	padding-inline: 0;
}

.labelworks-csc-product .content-area,
.labelworks-csc-product .site-main {
	margin: 0;
}

.labelworks-csc-product #primary.content-area {
	width: 100% !important;
	float: none !important;
	margin-right: 0 !important;
}

.labelworks-csc-product .storefront-breadcrumb {
	display: none;
}

.labelworks-csc-product .storefront-handheld-footer-bar {
	display: none;
}

.lw-sheet-product-page {
	--lw-orange: #008338;
	--lw-orange-dark: #006f31;
	--lw-cyan: #e7f2fb;
	--lw-green: #008338;
	--lw-page: #f8f7f5;
	background: #ffffff;
	color: #333333;
}

.lw-product-shell,
.lw-narrow-shell {
	width: min(100% - 64px, 1300px);
	margin-inline: auto;
}

.lw-narrow-shell {
	max-width: 1052px;
}

.lw-product-hero {
	width: 100%;
	margin-left: 0;
	padding: 32px 0 0;
	background: var(--lw-page);
}

.lw-product-hero .lw-product-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 526px);
	gap: clamp(34px, 7vw, 92px);
	align-items: start;
	padding: 0 0 40px;
}

.lw-product-copy,
.lw-config-card {
	min-width: 0;
}

.lw-product-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 0 0 36px;
	color: #333333;
	font-size: 0.92rem;
}

.lw-product-breadcrumb a {
	color: #333333;
	font-weight: 700;
	text-decoration: none;
}

.lw-product-breadcrumb a:hover {
	color: var(--lw-blue);
}

.lw-product-copy h1 {
	margin: 0;
	color: #333333;
	font-size: clamp(2.35rem, 4.2vw, 3.75rem);
	line-height: 1;
}

.lw-product-rating {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin: 8px 0 38px;
	text-decoration: none;
}

.lw-stars {
	color: #f8bf13;
	font-size: 1.35rem;
	letter-spacing: 0;
	line-height: 1;
}

.lw-product-rating strong,
.lw-reviews-head strong {
	color: var(--lw-blue);
	font-size: 0.92rem;
	font-weight: 900;
}

.lw-product-visual {
	overflow: hidden;
	margin: 0;
	border: 0;
	background: #d25f29;
}

.lw-product-visual img {
	display: block;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1.96 / 1;
	object-fit: cover;
}

.lw-product-intro {
	max-width: 770px;
	margin-top: 28px;
}

.lw-product-intro h2 {
	margin: 0 0 24px;
	color: #333333;
	font-size: clamp(1.35rem, 1.9vw, 1.75rem);
	line-height: 1.2;
}

.lw-product-intro p,
.lw-feature-panel p,
.lw-faq-list p,
.lw-review p,
.lw-trust-grid p {
	color: #555555;
	font-size: 1rem;
	line-height: 1.58;
}

.lw-config-card {
	position: sticky;
	top: 102px;
	border: 1px solid #d2d6dc;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.lw-config-card__header {
	padding: 18px 20px;
	border-bottom: 1px solid #d9dde4;
}

.lw-config-card__header h2 {
	margin: 0;
	color: #333333;
	font-size: 1.16rem;
	line-height: 1.25;
}

.lw-label-type,
.lw-static-options,
.lw-config-card .csc-configurator {
	padding-inline: 20px;
}

.lw-label-type {
	padding-top: 17px;
}

.lw-label-type p {
	margin: 0 0 14px;
	color: #333333;
	font-weight: 700;
}

.lw-label-type p a {
	font-weight: 800;
	text-decoration: none;
}

.lw-label-type__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.lw-label-type__grid a,
.lw-label-type__grid span {
	display: flex;
	gap: 8px;
	align-items: center;
	min-height: 46px;
	padding: 8px;
	border: 1px solid #d4d8df;
	background: #ffffff;
	color: #333333;
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.lw-label-type__grid a:hover,
.lw-label-type__grid a:focus-visible,
.lw-label-type__grid a.is-active,
.lw-label-type__grid span.is-active {
	border-color: var(--lw-blue);
	background: var(--lw-cyan);
	box-shadow: inset 0 0 0 1px rgba(18, 108, 181, 0.18);
}

.lw-label-type__grid .is-disabled {
	cursor: not-allowed;
	opacity: 0.68;
}

.lw-type-icon {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border: 2px solid #69717d;
}

.lw-type-icon--sheet::before,
.lw-type-icon--sheet::after {
	position: absolute;
	inset: 5px;
	border-top: 1px solid #69717d;
	border-bottom: 1px solid #69717d;
	content: "";
}

.lw-type-icon--sheet::after {
	inset: 0 7px;
	border-top: 0;
	border-bottom: 0;
	border-left: 1px solid #69717d;
	border-right: 1px solid #69717d;
}

.lw-type-icon--cut::after {
	position: absolute;
	right: -2px;
	bottom: -2px;
	width: 11px;
	height: 11px;
	border-top: 2px solid #69717d;
	border-left: 2px solid #69717d;
	background: #ffffff;
	content: "";
}

.lw-type-icon--roll {
	border-radius: 50%;
}

.lw-type-icon--roll::after {
	position: absolute;
	right: -11px;
	top: 4px;
	width: 13px;
	height: 16px;
	border: 2px solid #69717d;
	content: "";
}

.lw-config-card .csc-configurator {
	margin: 0;
	padding-top: 14px;
}

.lw-config-card .csc-shell,
.lw-config-card .csc-main {
	display: block;
	max-width: none;
	margin: 0;
}

.lw-config-card .csc-header {
	display: none;
}

.lw-config-card .csc-section {
	margin: 0 0 14px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.lw-config-card .csc-section-head {
	margin: 0 0 8px;
}

.lw-config-card .csc-section-head h3,
.lw-config-card .csc-field > span,
.lw-static-options span {
	margin: 0;
	color: #4a4a4a;
	font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
}

.lw-config-card .csc-section-head p,
.lw-config-card .csc-sheet-note,
.lw-config-card .csc-sheet-fit,
.lw-config-card .csc-production-note,
.lw-config-card .csc-quantity-list,
.lw-config-card .csc-summary-list {
	display: none !important;
}

.lw-config-card .csc-configurator.lw-proxy-ready .csc-section[aria-labelledby$="-shape"] > .csc-section-head,
.lw-config-card .csc-configurator.lw-proxy-ready .csc-section[aria-labelledby$="-material"] > .csc-section-head,
.lw-config-card .csc-configurator.lw-proxy-ready .csc-shape-grid,
.lw-config-card .csc-configurator.lw-proxy-ready .csc-material-grid {
	display: none;
}

.lw-proxy-field {
	display: grid;
	grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin: 0;
}

.lw-proxy-field span {
	color: #4a4a4a;
	font-size: 0.94rem;
	font-weight: 800;
}

.lw-proxy-select {
	width: 100%;
	min-height: 40px;
	padding: 8px 34px 8px 12px;
	border: 1px solid #b2b1b1;
	border-radius: 0;
	background-color: #ffffff;
	background-image:
		linear-gradient(45deg, transparent 50%, #333333 50%),
		linear-gradient(135deg, #333333 50%, transparent 50%);
	background-position:
		calc(100% - 17px) 17px,
		calc(100% - 11px) 17px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	color: #333333;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 800;
	appearance: none;
}

.lw-proxy-select:focus {
	border-color: var(--lw-blue);
	box-shadow: 0 0 0 3px rgba(18, 108, 181, 0.14);
	outline: none;
}

.lw-config-card .csc-native-select,
.lw-config-card .lw-proxy-select.csc-native-select {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.lw-config-card .csc-select-shell {
	position: relative;
	width: 100%;
	min-width: 0;
}

.lw-config-card .csc-field .csc-select-shell,
.lw-config-card .lw-proxy-field .csc-select-shell {
	grid-column: 2;
}

.lw-config-card .csc-select-trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 42px;
	padding: 9px 42px 9px 13px;
	border: 1px solid var(--lw-blue);
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	cursor: pointer;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.25;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lw-config-card .csc-select-trigger::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #333333;
	border-right: 2px solid #333333;
	content: "";
	transform: translateY(-65%) rotate(135deg);
	transition: transform 160ms ease;
}

.lw-config-card .csc-select-shell.is-open .csc-select-trigger::after {
	transform: translateY(-35%) rotate(-45deg);
}

.lw-config-card .csc-select-trigger:hover,
.lw-config-card .csc-select-trigger:focus-visible,
.lw-config-card .csc-select-shell.is-open .csc-select-trigger {
	border-color: var(--lw-blue);
	box-shadow: none;
	outline: none;
}

.lw-config-card .csc-select-menu {
	position: absolute;
	z-index: 80;
	top: calc(100% - 1px);
	right: 0;
	left: 0;
	display: none;
	max-height: 265px;
	overflow-y: auto;
	border: 1px solid var(--lw-blue);
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(51, 51, 51, 0.18);
	scrollbar-color: #777777 #f7f7f7;
	scrollbar-width: thin;
}

.lw-config-card .csc-select-shell.is-open .csc-select-menu {
	display: block;
}

.lw-config-card .csc-select-shell.has-error .csc-select-menu {
	top: calc(100% + 42px);
}

.lw-config-card .csc-select-option {
	display: block;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 0;
	background: #ffffff;
	color: #333333;
	cursor: pointer;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.25;
	text-align: left;
}

.lw-config-card .csc-select-option[hidden] {
	display: none !important;
}

.lw-config-card .csc-select-option:hover,
.lw-config-card .csc-select-option:focus-visible,
.lw-config-card .csc-select-option.is-selected {
	background: #f4f4f4;
	color: #333333;
	outline: none;
}

.lw-config-card .csc-select-custom {
	display: grid;
	gap: 8px;
	padding: 12px;
	border-top: 1px solid #e1e1e1;
	background: #ffffff;
}

.lw-config-card .csc-select-custom.is-selected {
	background: #f4f4f4;
}

.lw-config-card .csc-select-custom strong {
	color: #333333;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.2;
}

.lw-config-card .csc-select-custom input {
	width: 100%;
	min-height: 40px;
	padding: 8px 10px;
	border: 1px solid #cfd4dc;
	border-radius: 0;
	background: #ffffff;
	color: #1f2937;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 800;
}

.lw-config-card .csc-select-custom input:focus {
	border-color: var(--lw-blue);
	box-shadow: 0 0 0 3px rgba(18, 108, 181, 0.16);
	outline: none;
}

.lw-config-card .csc-select-custom input[aria-invalid="true"] {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.lw-config-card .csc-select-custom-error {
	color: #b91c1c;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.35;
}

.lw-config-card .csc-select-error {
	position: absolute;
	z-index: 95;
	top: calc(100% + 6px);
	right: 0;
	left: 0;
	padding: 8px 10px 8px 30px;
	border: 1px solid #fecaca;
	background: #fff7ed;
	box-shadow: 0 12px 24px rgba(127, 29, 29, 0.14);
	color: #9f1239;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.35;
}

.lw-config-card .csc-select-error::before {
	position: absolute;
	top: 8px;
	left: 10px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ef4444;
	color: #ffffff;
	content: "!";
	font-size: 10px;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
}

.lw-config-card .csc-select-error[hidden] {
	display: none !important;
}

.lw-config-card .csc-shape-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.lw-config-card .csc-icon-card {
	display: flex;
	min-height: 48px;
	gap: 7px;
	align-items: center;
	justify-content: flex-start;
	padding: 8px;
	border-radius: 0;
	font-size: 0.82rem;
	font-weight: 800;
	box-shadow: none;
}

.lw-config-card .csc-icon-card .csc-shape-icon {
	width: 24px;
	height: 24px;
}

.lw-config-card .csc-icon-card span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lw-config-card .csc-icon-card:hover,
.lw-config-card .csc-material-card:hover,
.lw-config-card .csc-upload:hover {
	transform: none;
}

.lw-config-card .csc-icon-card:has(input:checked),
.lw-config-card .csc-material-card:has(input:checked) {
	border-color: var(--lw-blue);
	background: var(--lw-cyan);
	box-shadow: none;
}

.lw-config-card .csc-size-row,
.lw-config-card .csc-custom-size {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.lw-config-card .csc-custom-size[hidden],
.lw-config-card .csc-custom-size-native {
	display: none !important;
}

.lw-config-card .csc-field {
	display: grid;
	grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin: 0;
}

.lw-config-card .csc-field-hidden {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.lw-config-card .csc-compact-size-grid {
	display: none;
}

.lw-config-card .csc-configurator input[type="number"],
.lw-config-card .csc-configurator input[type="text"],
.lw-config-card .csc-configurator select,
.lw-config-card .csc-configurator textarea {
	min-height: 40px;
	border-color: #b2b1b1;
	border-radius: 0;
	background-color: #ffffff;
	color: #333333;
	font-size: 0.92rem;
	font-weight: 800;
}

.lw-config-card .csc-configurator select {
	padding-right: 34px;
	background-image:
		linear-gradient(45deg, transparent 50%, #333333 50%),
		linear-gradient(135deg, #333333 50%, transparent 50%);
	background-position:
		calc(100% - 17px) 17px,
		calc(100% - 11px) 17px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	appearance: none;
}

.lw-config-card .csc-material-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.lw-config-card .csc-material-card {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	min-height: 44px;
	gap: 10px;
	align-items: center;
	padding: 8px 10px;
	border-radius: 0;
	box-shadow: none;
}

.lw-config-card .csc-material-swatch {
	width: 24px;
	height: 24px;
	border-radius: 3px;
}

.lw-config-card .csc-material-name {
	font-size: 0.9rem;
	font-weight: 900;
}

.lw-config-card .csc-material-price {
	font-size: 0.78rem;
	white-space: nowrap;
}

.lw-config-card .csc-upload {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	min-height: 54px;
	padding: 10px;
	border-radius: 0;
	box-shadow: none;
}

.lw-config-card .csc-upload-icon {
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
}

.lw-config-card .csc-upload strong,
.lw-config-card .csc-upload small {
	display: block;
}

.lw-config-card .csc-upload small {
	color: #64748b;
}

.lw-config-card .csc-section[aria-labelledby$="-artwork"] {
	display: none;
}

.lw-config-card .csc-check {
	margin-top: 8px;
	border-radius: 0;
}

.lw-config-card .csc-field textarea {
	min-height: 74px;
}

.lw-config-card .csc-summary {
	position: static;
	margin: 10px 0 0;
}

.lw-config-card .csc-summary-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2px 12px;
	align-items: baseline;
	padding: 6px 0 0;
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	box-shadow: none;
}

.lw-config-card .csc-summary-label {
	margin: 0;
	color: #4a4a4a;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.lw-config-card .csc-price-total {
	margin: 0;
	color: var(--lw-green);
	font-size: 1.18rem;
	text-align: right;
}

.lw-config-card .csc-price-each {
	grid-column: 2;
	margin: 0 0 14px;
	color: #555555;
	font-size: 0.9rem;
	font-weight: 700;
	text-align: right;
}

.lw-config-card .csc-form-message {
	grid-column: 1 / -1;
	margin: 0;
	border-color: #fecaca;
	background: #fff1f2;
	color: #9f1239;
}

.lw-config-card .csc-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 60px;
	border-radius: 0;
	background: var(--lw-orange);
	color: #ffffff;
	font-size: 0.98rem;
	font-weight: 900;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: none;
}

.lw-config-card .csc-submit {
	grid-column: 1 / -1;
}

.lw-config-card .csc-submit:hover,
.lw-config-card .csc-submit:focus {
	background: var(--lw-orange-dark);
	box-shadow: none;
	transform: none;
}

.lw-static-options {
	display: grid;
	gap: 8px;
	padding-bottom: 12px;
}

.lw-static-options div {
	display: grid;
	grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.lw-static-options strong {
	min-height: 40px;
	padding: 10px 34px 10px 12px;
	border: 1px solid #cfd4dc;
	color: #3b4250;
	font-size: 0.92rem;
	font-weight: 900;
}

.lw-feature-panel,
.lw-faq-section,
.lw-reviews-section,
.lw-trust-section {
	width: 100%;
	margin-left: 0;
}

.lw-feature-panel {
	padding: 76px 0;
	background: #ffffff;
}

.lw-feature-panel__grid {
	display: grid;
	grid-template-columns: minmax(320px, 462px) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.lw-feature-panel img {
	display: block;
	width: 100%;
	aspect-ratio: 1.64 / 1;
	object-fit: cover;
}

.lw-feature-panel h2,
.lw-section-heading h2,
.lw-reviews-head h2,
.lw-trust-grid h3 {
	margin: 0;
	color: #333333;
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	line-height: 1.15;
}

.lw-feature-panel p {
	max-width: 640px;
	margin: 12px 0 0;
	font-weight: 700;
}

.lw-faq-section {
	padding: 64px 0 10px;
	background: #f8f7f5;
}

.lw-section-heading {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 14px;
	align-items: baseline;
	margin-bottom: 22px;
}

.lw-section-heading a {
	font-weight: 900;
	text-decoration: none;
}

.lw-section-heading p {
	grid-column: 1 / -1;
	margin: 0;
	color: #555555;
	font-weight: 700;
}

.lw-faq-list {
	display: grid;
	gap: 16px;
}

.lw-faq-list details {
	border: 1px solid #d9dde4;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.lw-faq-list summary {
	position: relative;
	min-height: 52px;
	padding: 16px 52px 16px 16px;
	color: #333333;
	font-size: 1rem;
	font-weight: 900;
	cursor: pointer;
	list-style: none;
}

.lw-faq-list summary::-webkit-details-marker {
	display: none;
}

.lw-faq-list summary::after {
	position: absolute;
	top: 17px;
	right: 18px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #2f3946;
	border-bottom: 2px solid #2f3946;
	content: "";
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.lw-faq-list details[open] summary::after {
	top: 22px;
	transform: rotate(225deg);
}

.lw-faq-list p {
	margin: 0;
	padding: 0 16px 18px;
}

.lw-reviews-section {
	padding: 54px 0 62px;
	background: #ffffff;
}

.lw-reviews-head {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 28px;
}

.lw-review-list {
	display: grid;
	gap: 22px;
}

.lw-review header {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 6px;
}

.lw-review header strong {
	color: #384150;
	font-weight: 900;
}

.lw-review header .lw-stars {
	font-size: 1rem;
}

.lw-review time {
	color: #8a94a3;
	font-size: 0.86rem;
	font-weight: 800;
}

.lw-review p {
	max-width: 930px;
	margin: 0;
	font-weight: 700;
}

.lw-trust-section {
	border-top: 1px solid #eef1f5;
	background: #ffffff;
}

.lw-logo-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 20px 0;
	color: #8b8f96;
	font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
	font-weight: 900;
}

.lw-logo-strip span {
	filter: grayscale(1);
	opacity: 0.82;
}

.lw-logo-strip strong {
	color: #8b8f96;
	font-size: 0.92rem;
}

.lw-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px;
	padding: 62px 0 88px;
	text-align: center;
}

.lw-trust-grid > div {
	display: grid;
	justify-items: center;
}

.lw-trust-grid h3 {
	margin-top: 22px;
	font-size: 1.24rem;
}

.lw-trust-grid p {
	max-width: 330px;
	margin: 14px 0 0;
	font-weight: 700;
}

.lw-trust-icon {
	position: relative;
	display: block;
	width: 108px;
	height: 108px;
	border-radius: 50%;
	background: #0d2c52;
	box-shadow: 0 0 0 5px #ffffff, 0 2px 8px rgba(15, 23, 42, 0.18);
}

.lw-trust-icon--label::before {
	position: absolute;
	inset: 28px 36px 26px 36px;
	border: 5px solid #ffd11a;
	content: "";
}

.lw-trust-icon--label::after {
	position: absolute;
	right: 34px;
	bottom: 29px;
	width: 20px;
	height: 20px;
	border-top: 5px solid #ffd11a;
	border-left: 5px solid #ffd11a;
	background: #0d2c52;
	content: "";
}

.lw-trust-icon--calendar {
	border-radius: 7px;
	background:
		linear-gradient(#eef1f5 0 22%, transparent 22%),
		repeating-linear-gradient(90deg, transparent 0 24%, rgba(15, 23, 42, 0.08) 24% 25%),
		repeating-linear-gradient(180deg, transparent 0 24%, rgba(15, 23, 42, 0.08) 24% 25%),
		#ffffff;
}

.lw-trust-icon--calendar::before {
	position: absolute;
	left: 58px;
	top: 47px;
	width: 24px;
	height: 24px;
	background: #126cb5;
	content: "";
}

.lw-trust-icon--quality {
	border-radius: 8px;
	background: #ffffff;
}

.lw-trust-icon--quality::before {
	position: absolute;
	inset: 24px;
	border: 8px solid #424852;
	content: "";
}

.lw-trust-icon--quality::after {
	position: absolute;
	left: 27px;
	top: 45px;
	width: 67px;
	height: 32px;
	border-left: 9px solid #13b552;
	border-bottom: 9px solid #13b552;
	content: "";
	transform: rotate(-45deg);
}

.labelworks-csc-product .lw-label-type p a,
.labelworks-csc-product .lw-label-type p a:visited,
.labelworks-csc-product .lw-section-heading a,
.labelworks-csc-product .lw-section-heading a:visited,
.labelworks-csc-product .lw-reviews-head strong {
	color: var(--lw-blue);
}

@media (max-width: 1120px) {
	.lw-product-hero .lw-product-shell {
		grid-template-columns: 1fr;
	}

	.lw-config-card {
		position: static;
		max-width: 620px;
	}
}

@media (max-width: 820px) {
	.lw-product-shell,
	.lw-narrow-shell {
		width: min(100% - 28px, 1300px);
	}

	.lw-product-hero {
		padding-top: 24px;
	}

	.lw-product-breadcrumb {
		margin-bottom: 24px;
	}

	.lw-feature-panel__grid,
	.lw-trust-grid {
		grid-template-columns: 1fr;
	}

	.lw-feature-panel {
		padding: 50px 0;
	}

	.lw-feature-panel__grid {
		gap: 24px;
	}

	.lw-trust-grid {
		gap: 36px;
		padding: 46px 0 60px;
	}

	.lw-section-heading {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.lw-product-copy h1 {
		font-size: 2.35rem;
	}

	.lw-product-rating {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
		margin-bottom: 22px;
	}

	.lw-config-card__header,
	.lw-label-type,
	.lw-static-options,
	.lw-config-card .csc-configurator {
		padding-inline: 14px;
	}

	.lw-label-type__grid,
	.lw-config-card .csc-shape-grid {
		grid-template-columns: 1fr;
	}

	.lw-config-card .csc-field,
	.lw-proxy-field,
	.lw-static-options div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.lw-config-card .csc-material-card {
		grid-template-columns: 24px minmax(0, 1fr);
	}

	.lw-config-card .csc-material-price {
		grid-column: 2;
	}

	.lw-config-card .csc-summary-inner {
		grid-template-columns: 1fr;
	}

	.lw-config-card .csc-price-total,
	.lw-config-card .csc-price-each {
		grid-column: auto;
		text-align: left;
	}

}
