/* ==========================================================================
   Glødwerk — main theme stylesheet
   Palette and component styles ported from the approved mockup pack (v2).
   Gradient use is intentionally limited to the emblem only — see brand
   guidance "Photography and imagery" section. Do not add gradients to
   buttons, text, or backgrounds elsewhere.
   ========================================================================== */

:root {
	--ink: #1C1C1E;
	--steel: #3A3F44;
	--paper: #F5F4F1;
	--ember: #D9622B;
	--ember-dark: #A8461C;
	--iron: #8A8F94;
	--line: #DEDCD6;
	--white: #FFFFFF;
	--ok: #2F6B45;
	--warn: #B23A2E;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Inter', Arial, sans-serif;
}

a { text-decoration: none; color: inherit; }

.gw-wrap { max-width: 1440px; margin: 0 auto; background: var(--white); min-height: 100vh; }

/* Utility bar */
.gw-utility {
	background: var(--ink);
	color: #C9CBCD;
	font-size: 13px;
	padding: 9px 48px;
	display: flex;
	justify-content: space-between;
}

/* Main nav */
.gw-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 48px;
	border-bottom: 1px solid var(--line);
	background: var(--white);
}
.gw-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; }
.gw-logo img { width: 32px; height: auto; display: block; }
.gw-logo .accent-o { color: var(--ember); }
.gw-navlinks { display: flex; gap: 28px; font-weight: 600; font-size: 14px; }

.gw-btn {
	display: inline-block;
	background: var(--ember);
	color: #fff;
	padding: 13px 20px;
	border-radius: 8px;
	font-weight: 800;
	border: none;
	cursor: pointer;
	transition: background .15s;
}
.gw-btn:hover { background: var(--ember-dark); }
.gw-btn.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }

.gw-section { padding: 52px 48px; }

/* Hero */
.gw-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: center;
	background: var(--paper);
	padding: 68px 48px;
}
.gw-hero h1 { font-size: 44px; line-height: 1.12; margin: 0 0 16px; }
.gw-hero p, .gw-muted { color: var(--steel); line-height: 1.6; }
.gw-visual {
	background: #ECEAE5;
	border-radius: 16px;
	height: 390px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--iron);
	font-weight: 700;
}

/* Grids */
.gw-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gw-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.gw-card {
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--white);
	padding: 22px;
}
.gw-card h3 { margin: 0 0 8px; }

/* Product card */
.gw-product-card { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; transition: border-color .15s; }
.gw-product-card:hover { border-color: var(--ember); }
.gw-ph { height: 160px; background: #EFEDE8; display: flex; align-items: center; justify-content: center; color: var(--iron); font-weight: 700; }
.gw-product-body { padding: 16px; }
.gw-price { font-weight: 900; color: var(--ember-dark); font-size: 18px; }
.gw-pill { display: inline-block; border: 1px solid var(--line); background: var(--paper); padding: 4px 9px; border-radius: 999px; font-weight: 700; font-size: 12px; color: var(--steel); }
.gw-pill-tested { display: inline-flex; align-items: center; gap: 5px; border: none; background: #FBEDE4; color: var(--ember-dark); padding: 4px 10px; border-radius: 999px; font-weight: 700; font-size: 11.5px; }

/* Shop / filter layout */
.gw-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.gw-filter { border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--white); height: max-content; }
.gw-check { display: block; margin: 12px 0; color: var(--steel); }
.gw-breadcrumb { font-size: 13px; color: var(--iron); padding: 24px 48px 0; }

/* Product detail page */
.gw-pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; padding: 24px 48px 40px; }
.gw-gallery-main { height: 480px; background: #ECEAE5; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--iron); font-weight: 700; }
.gw-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gw-thumb { height: 80px; background: #EFEDE8; border-radius: 9px; }
.gw-buy h1 { font-size: 32px; margin: 10px 0; }
.gw-stock { color: var(--ok); font-weight: 800; }
.gw-sizes { display: flex; gap: 10px; margin: 18px 0; }
.gw-size { border: 1px solid var(--line); border-radius: 8px; padding: 10px 15px; font-weight: 800; cursor: pointer; }
.gw-size.active { border-color: var(--ember); background: #FBEDE4; color: var(--ember-dark); }
.gw-qtyrow { display: flex; gap: 12px; margin: 18px 0; }
.gw-qty { border: 1px solid var(--line); border-radius: 8px; padding: 13px 18px; }

/* Tabs / two-column content blocks */
.gw-tabs { display: flex; gap: 10px; border-bottom: 1px solid var(--line); padding: 0 48px; }
.gw-tab { padding: 16px 14px; font-weight: 800; color: var(--steel); cursor: pointer; }
.gw-tab.active { color: var(--ember-dark); border-bottom: 3px solid var(--ember); }
.gw-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.gw-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gw-table th, .gw-table td { padding: 12px; border-bottom: 1px solid #EEE; text-align: left; vertical-align: top; }
.gw-table th { background: var(--paper); }

.gw-callout { border: 1px solid #F0CFC6; background: #FBECE8; color: #7A2E22; border-radius: 12px; padding: 18px; }

/* Footer */
.gw-footer { background: var(--ink); color: #C9CBCD; padding: 40px 48px; margin-top: 40px; }
.gw-footergrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.gw-footer a { display: block; margin: 8px 0; color: #C9CBCD; }
.gw-footer a:hover { color: #fff; }

/* Legal / support content pages */
.gw-legal-block { max-width: 920px; }
.gw-legal-block h1 { font-size: 34px; }
.gw-legal-block h2 { margin-top: 32px; border-top: 1px solid var(--line); padding-top: 22px; }
.gw-support-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.gw-ticket { border: 1px solid var(--line); padding: 18px; border-radius: 12px; }
.gw-formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

input, select, textarea { width: 100%; border: 1px solid #CFCDC7; border-radius: 8px; padding: 13px; font-family: inherit; }
textarea { min-height: 130px; }

/* Full-width body class applied by functions.php */
.gw-fullwidth .content-area { width: 100%; float: none; }

@media (max-width: 900px) {
	.gw-hero, .gw-pdp, .gw-layout, .gw-two, .gw-grid3, .gw-grid4, .gw-support-tiles, .gw-footergrid {
		grid-template-columns: 1fr;
	}
	.gw-utility { display: none; }
	.gw-nav, .gw-section, .gw-hero, .gw-pdp, .gw-tabs { padding-left: 22px; padding-right: 22px; }
}

/* Operational hardening additions — keep approved visual direction intact. */
.gw-card-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.gw-product-card { display: flex; flex-direction: column; color: inherit; }
.gw-product-link { display: block; color: inherit; flex: 1 1 auto; }
.gw-product-card-footer { display:flex; justify-content:space-between; align-items:center; gap:12px; padding: 0 16px 16px; }
.gw-card-add { padding: 9px 14px; font-size: 12.5px; white-space: nowrap; }
.gw-tax-note { display:inline-block; font-size:13px; color:var(--iron); font-weight:500; margin-left:6px; }
.gw-sku, .gw-validation-source { color: var(--iron); font-size: 12.5px; margin: 4px 0 10px; }
.gw-validation-source { color: var(--steel); }
.gw-stock .stock { display:inline; color: var(--ok); font-weight:800; }
.gw-dispatch-note { color: var(--ok); font-weight: 700; }
.gw-compat-first { margin:0 48px 24px; }
.gw-filter-toggle { display:none; }
.gw-filter-actions { display:flex; align-items:center; gap:14px; margin-top:18px; }
.gw-filter-actions .gw-btn { padding:10px 14px; font-size:13px; }
.woocommerce-pagination { margin-top: 28px; text-align: center; }
.woocommerce-pagination ul { display: inline-flex; list-style:none; gap:8px; padding:0; margin:0; }
.woocommerce-pagination a, .woocommerce-pagination span { border:1px solid var(--line); border-radius:8px; padding:8px 12px; display:block; }
.woocommerce-pagination .current { background: var(--ember); color:#fff; border-color: var(--ember); }
.variations_form .variations { width: 100%; margin: 18px 0; }
.variations_form .variations td, .variations_form .variations th { display:block; padding: 5px 0; text-align:left; }
.single_variation_wrap { margin-top: 14px; }
.quantity { display:inline-flex; width:auto; margin-right:10px; }
.quantity input.qty { width: 76px; }
.single_add_to_cart_button.button, .gw-buy button.single_add_to_cart_button { background: var(--ember); border-radius: 8px; font-weight:800; }

@media (max-width: 900px) {
	.gw-filter-toggle { display:block; width:100%; background:var(--ink); color:#fff; border:0; border-radius:10px; padding:13px 16px; font-weight:800; text-align:left; margin-bottom:12px; }
	.gw-filter { display:none; }
	.gw-filter.is-open { display:block; }
	.gw-compat-first { margin-left:22px; margin-right:22px; }
	.gw-product-card-footer { align-items:flex-start; flex-direction:column; }
	.gw-card-add { width:100%; text-align:center; }
	.gw-tax-note { display:block; margin-left:0; margin-top:3px; }
	.gw-nav { flex-wrap:wrap; gap:14px; }
	.gw-navlinks { order: 3; width: 100%; overflow-x:auto; gap:18px; padding-bottom: 4px; }
}

/* Glødwerk v1.2 catalogue implementation */
.gw-utility { padding: 9px 48px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 24px; align-items: center; background:#050607; color:#fff; }
.gw-logo { gap: 10px; }
.gw-logo-text { display:flex; flex-direction:column; line-height:1.05; }
.gw-logo-text strong { font-size: 24px; letter-spacing:-.02em; }
.gw-logo-text small { margin-top:4px; color:var(--ember); text-transform:uppercase; font-size:10px; letter-spacing:.14em; font-weight:800; }
.gw-navlinks { gap: 24px; align-items:center; }
.gw-navlinks a { padding: 7px 0; border-bottom: 2px solid transparent; }
.gw-navlinks a:hover { color: var(--ember-dark); border-bottom-color: var(--ember); }
.gw-navicons { display:flex; gap:18px; align-items:center; font-size:22px; }
.gw-cart-link { position:relative; }
.gw-cart-count { position:absolute; top:-10px; right:-12px; min-width:18px; height:18px; border-radius:999px; background:var(--ember); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; padding:0 5px; }
.gw-breadcrumb { display:flex; gap:10px; align-items:center; padding:22px 48px 0; color:#667085; }
.gw-breadcrumb a { color:#667085; }
.gw-breadcrumb a:hover { color:var(--ember-dark); }
.gw-catalogue-hero { padding: 22px 48px 18px; }
.gw-catalogue-hero h1 { margin:0 0 8px; font-size:44px; line-height:1.1; letter-spacing:-.03em; }
.gw-catalogue-hero p { margin:0 0 22px; color:#475467; max-width:760px; font-size:17px; line-height:1.55; }
.gw-printer-tiles { display:grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); gap:14px; max-width:820px; }
.gw-printer-tile { min-height:58px; border:1px solid #D9DEE7; border-radius:10px; background:#fff; display:flex; align-items:center; justify-content:center; padding:12px 18px; font-weight:800; box-shadow:0 1px 1px rgba(16,24,40,.02); }
.gw-printer-tile.is-active { border-color:var(--ember); box-shadow:0 0 0 1px var(--ember) inset; color:var(--ink); }
.gw-printer-name { text-align:center; }
.gw-catalogue-body { display:grid; grid-template-columns: 280px 1fr; gap:28px; padding: 0 48px 48px; align-items:start; }
.gw-results-toolbar { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:22px; color:#344054; }
.gw-sort-wrap form { margin:0; }
.gw-sort-wrap select { min-width:210px; padding:12px 42px 12px 14px; }
.gw-product-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:22px; }
.gw-product-card { border-radius:16px; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.gw-product-card:hover { box-shadow:0 10px 24px rgba(16,24,40,.08); }
.gw-ph { height:250px; background:#FAFAF8; padding:22px; }
.gw-ph img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.gw-product-body { padding: 18px 20px 10px; min-height:132px; }
.gw-product-body h3 { font-size:17px !important; line-height:1.25; margin:10px 0 5px !important; }
.gw-product-card-footer { padding:0 20px 20px; }
.gw-card-add { background:#fff; color:var(--ember-dark); border:1px solid var(--ember); width:100%; text-align:center; }
.gw-card-add:hover { background:var(--ember); color:#fff; }
.gw-price { color:#1D2939; }
.gw-pill { background:#F8FAFC; border-color:#D0D5DD; color:#475467; }
.gw-pill-tested { background:#FFF1E8; color:#C2410C; }
.gw-filter { border-radius:16px; padding:0; overflow:hidden; position:sticky; top:18px; }
.gw-filter-head { display:flex; align-items:center; justify-content:space-between; padding:18px 18px; border-bottom:1px solid var(--line); }
.gw-filter-head h3 { margin:0; font-size:18px; }
.gw-filter-head a { color:var(--ember-dark); font-weight:700; font-size:13px; }
.gw-filter fieldset { margin:0; padding:18px; border:0; border-bottom:1px solid var(--line); }
.gw-filter legend { font-weight:800; color:#1D2939; margin-bottom:10px; }
.gw-check { display:flex; align-items:center; gap:9px; margin:10px 0; font-size:14px; color:#475467; }
.gw-check input { width:auto; accent-color: var(--ember); }
.gw-price-filter { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.gw-filter-actions { padding:16px 18px; margin:0; }
.gw-filter-actions .gw-btn { width:100%; }
.gw-scroll-sentinel { text-align:center; min-height:64px; padding:28px; color:#667085; }
.gw-scroll-sentinel .gw-end-text { display:none; }
.gw-scroll-sentinel.is-complete .gw-loading-text { display:none; }
.gw-scroll-sentinel.is-complete .gw-end-text { display:inline; }
.woocommerce-pagination { display:none !important; }
@media (max-width: 1100px) {
	.gw-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.gw-catalogue-body { grid-template-columns: 240px 1fr; padding-left:28px; padding-right:28px; }
	.gw-catalogue-hero, .gw-breadcrumb { padding-left:28px; padding-right:28px; }
}
@media (max-width: 900px) {
	.gw-utility { display:none; }
	.gw-logo-text small { display:none; }
	.gw-catalogue-body { display:block; padding-left:22px; padding-right:22px; }
	.gw-catalogue-hero h1 { font-size:34px; }
	.gw-printer-tiles { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.gw-product-grid { grid-template-columns: 1fr; }
	.gw-filter { position:static; margin-bottom:20px; }
	.gw-results-toolbar { align-items:flex-start; flex-direction:column; }
}

/* Glødwerk v1.3 approved design updates */
.gw-product-hero-v13 { display:grid; grid-template-columns:minmax(360px, 1.08fr) minmax(340px, .82fr) 300px; gap:28px; padding: 10px 48px 28px; align-items:start; }
.gw-product-media-v13 .gw-gallery-main { margin:0; min-height:520px; display:flex; align-items:center; justify-content:center; background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.gw-product-media-v13 img { max-height:500px; object-fit:contain; }
.gw-buy-v13 { padding:20px 0; }
.gw-brandline { font-size:13px; font-weight:700; margin-bottom:12px; color:#475467; }
.gw-brandline span { color:var(--ember-dark); }
.gw-buy-v13 h1 { font-size:32px; line-height:1.1; letter-spacing:-.03em; margin:0 0 14px; }
.gw-shortdesc { color:#344054; font-size:15px; line-height:1.55; max-width:520px; }
.gw-price-v13 { font-size:30px !important; color:var(--ember-dark); margin:18px 0 8px; font-weight:800; }
.gw-stockline { display:flex; gap:12px; align-items:center; font-size:13px; color:#667085; margin:10px 0 22px; }
.gw-stockline .stock { color:var(--ok); font-weight:800; margin:0; }
.gw-sku-inline { color:#667085; }
.gw-buy-v13 form.cart { margin-top:22px; }
.gw-buy-v13 .variations select { max-width:180px; }
.gw-buy-v13 .single_add_to_cart_button { min-width:210px; min-height:52px; background:linear-gradient(180deg,#ee5c16,#d9480f) !important; border:0 !important; color:#fff !important; border-radius:10px !important; font-weight:800 !important; }
.gw-buy-v13 .quantity .qty { min-height:52px; }
.gw-inline-warning { display:inline-flex; align-items:center; gap:8px; background:#FFF4DB; color:#553100; border:1px solid #FFE0A3; border-radius:8px; padding:10px 14px; font-size:13px; font-weight:700; margin-top:12px; }
.gw-purchase-box-v13 { border:1px solid var(--line); border-radius:18px; background:#fff; overflow:hidden; box-shadow:0 8px 26px rgba(16,24,40,.04); }
.gw-purchase-row { display:grid; grid-template-columns:36px 1fr; gap:12px; padding:24px 22px; border-bottom:1px solid var(--line); }
.gw-purchase-row strong { display:block; margin-bottom:7px; font-size:16px; }
.gw-purchase-row p { margin:0; color:#344054; font-size:13px; line-height:1.5; }
.gw-purchase-row a { color:var(--ember-dark); font-size:13px; font-weight:800; display:inline-block; margin-top:8px; }
.gw-purchase-icon { width:34px; height:34px; border:1px solid #E6E8EC; border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--ink); font-weight:800; }
.gw-payments-v13 { padding:18px 22px; color:#344054; font-size:12px; font-weight:800; }
.gw-compat-checker-v13 { margin:20px 48px 24px; display:grid; grid-template-columns:220px 1fr 330px; gap:22px; align-items:start; }
.gw-compat-checker-v13 h2 { font-size:24px; margin:0 0 10px; }
.gw-compat-checker-v13 p { color:#475467; line-height:1.55; }
.gw-compat-selects-v13 { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.gw-compat-selects-v13 label { font-size:13px; font-weight:800; color:#344054; }
.gw-compat-selects-v13 select { margin-top:8px; background:#fff; }
.gw-compat-result-v13 { background:#F0FDF4; border:1px solid #DCFCE7; border-radius:14px; padding:20px; }
.gw-compat-result-v13 strong { color:#15803D; display:block; margin-bottom:8px; }
.gw-compat-result-v13 p { margin:0; font-size:14px; color:#1F2937; }
.gw-compat-result-v13 small { display:block; margin-top:10px; color:#667085; }
.gw-addons-grid-v13 { grid-column:1 / -1; display:grid; grid-template-columns:230px 1fr; gap:18px; margin-top:6px; }
.gw-addon-card-v13 { border:1px solid var(--line); border-radius:14px; padding:18px; background:#fff; }
.gw-addon-card-v13 h3 { margin-top:0; font-size:16px; }
.gw-addon-card-v13 p { font-size:13px; }
.gw-upgrade-list-v13 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.gw-upgrade-list-v13 a { color:var(--ember-dark); font-weight:800; font-size:13px; }
.gw-specs-v13, .gw-fit-v13, .gw-brand-docs-v13, .gw-print-settings-v13, .gw-box-v13 { margin:0 48px 18px; }
.gw-specs-v13 h2, .gw-fit-v13 h2, .gw-brand-docs-v13 h2, .gw-print-settings-v13 h2, .gw-box-v13 h2 { font-size:20px; margin-top:0; }
.gw-specs-v13 table, .gw-print-settings-v13 table { width:100%; }
.gw-good-title { color:var(--ok); }
.gw-bad-title { color:var(--warn); }
.gw-fit-v13 ul { list-style:none; margin-left:0; padding-left:0; line-height:1.9; }
.gw-brand-docs-grid-v13 { display:grid; grid-template-columns:1.05fr .9fr 1.4fr; gap:28px; }
.gw-data-list-v13 div { display:grid; grid-template-columns:150px 1fr; padding:7px 0; border-bottom:1px solid #F2F4F7; }
.gw-data-list-v13 span { color:#667085; }
.gw-cert-docs-v13 h3, .gw-storage-v13 h3 { margin:0 0 8px; font-size:15px; }
.gw-cert-docs-v13 p { margin:8px 0; }
.gw-cert-docs-v13 a { color:var(--ember-dark); font-weight:800; }
.gw-storage-v13 ul, .gw-box-v13 ul { margin:0; line-height:1.8; }
.gw-print-settings-v13 small { color:#667085; font-size:14px; font-weight:600; }

/* Light Design category page */
.gw-design-light { background:linear-gradient(180deg,#F5F4F1 0%,#FAFAF8 46%,#fff 100%); color:#202124; padding-bottom:56px; }
.gw-design-navspace .gw-breadcrumb { padding-top:26px; }
.gw-design-hero-light { min-height:500px; display:grid; grid-template-columns: .82fr 1.18fr; gap:36px; padding:34px 48px 28px; align-items:center; }
.gw-design-copy h1 { font-size:72px; letter-spacing:-.055em; line-height:.95; margin:0 0 18px; }
.gw-design-copy h2 { color:var(--ember-dark); font-size:30px; margin:0 0 16px; }
.gw-design-copy p { max-width:500px; font-size:18px; line-height:1.55; color:#344054; }
.gw-design-steps { display:grid; grid-template-columns:repeat(4,minmax(110px,1fr)); gap:18px; margin-top:36px; max-width:620px; }
.gw-design-steps span { display:flex; align-items:center; gap:9px; color:#344054; font-weight:700; font-size:13px; }
.gw-design-steps svg { width:30px; height:30px; color:var(--ember); flex:0 0 auto; }
.gw-design-visual-light { position:relative; min-height:430px; border-radius:26px; background:radial-gradient(circle at 34% 32%,rgba(255,255,255,.92),rgba(238,238,234,.72) 40%,rgba(216,217,211,.58)); overflow:hidden; box-shadow:inset 0 0 0 1px rgba(255,255,255,.7); }
.gw-scanner-shape { position:absolute; left:80px; top:70px; width:260px; height:66px; border-radius:20px; background:linear-gradient(145deg,#44484D,#131518); box-shadow:0 22px 44px rgba(0,0,0,.22); }
.gw-scanner-shape:before { content:""; position:absolute; inset:22px 36px; background:repeating-linear-gradient(90deg,#0B74D1 0 10px,#17191D 10px 38px); border-radius:999px; opacity:.9; }
.gw-scanner-shape:after { content:""; position:absolute; left:116px; top:66px; width:24px; height:110px; background:#191B1E; border-radius:10px; box-shadow:-38px 64px 0 -8px #202226, 42px 64px 0 -8px #202226; }
.gw-turntable-shape { position:absolute; left:270px; bottom:54px; width:320px; height:80px; border-radius:50%; background:radial-gradient(circle,#323438 0%,#161719 72%); box-shadow:0 30px 50px rgba(0,0,0,.22); }
.gw-simple-part-shape { position:absolute; left:112px; bottom:54px; width:106px; height:136px; background:linear-gradient(145deg,#777D83,#33383E); clip-path:polygon(34% 0,68% 0,88% 42%,100% 96%,73% 100%,62% 68%,38% 68%,27% 100%,0 96%,12% 42%); }
.gw-simple-part-shape:after { content:""; position:absolute; left:34px; top:23px; width:38px; height:38px; border-radius:50%; background:#E8E8E4; box-shadow:0 80px 0 -10px #E8E8E4; }
.gw-laptop-shape { position:absolute; right:28px; top:62px; width:310px; height:220px; border-radius:16px; background:#20242A; box-shadow:0 24px 44px rgba(0,0,0,.2); }
.gw-laptop-shape:after { content:""; position:absolute; left:-20px; right:-20px; bottom:-18px; height:22px; background:#BFC3C6; border-radius:0 0 18px 18px; }
.gw-model-shape { position:absolute; left:82px; top:50px; width:140px; height:118px; background:#127BD1; clip-path:polygon(36% 0,65% 0,80% 36%,100% 100%,72% 100%,60% 70%,39% 70%,27% 100%,0 100%,20% 36%); }
.gw-caliper-shape { position:absolute; right:78px; bottom:44px; width:210px; height:28px; background:#272B2F; transform:rotate(-8deg); border-radius:5px; box-shadow:-80px -10px 0 -3px #E2A427; }
.gw-design-tiles-light { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:10px; padding: 0 32px 28px; }
.gw-design-tile-light { border:1px solid rgba(33,37,41,.13); border-radius:14px; background:rgba(255,255,255,.72); display:grid; grid-template-columns:64px 1fr; gap:12px; padding:18px; color:inherit; min-height:136px; box-shadow:0 12px 34px rgba(16,24,40,.05); }
.gw-design-tile-light:hover { border-color:var(--ember); transform:translateY(-2px); }
.gw-design-tile-icon { color:var(--ember-dark); }
.gw-design-tile-icon svg { width:48px; height:48px; }
.gw-design-tile-light h3 { margin:0 0 8px; font-size:17px; }
.gw-design-tile-light p { margin:0 0 12px; color:#475467; font-size:13px; line-height:1.45; }
.gw-design-tile-light span { color:var(--ember-dark); font-weight:800; font-size:13px; }
.gw-design-lower-light { display:grid; grid-template-columns:1.05fr .95fr; gap:28px; padding:0 48px; }
.gw-design-lower-light h2 { font-size:26px; margin:0 0 8px; }
.gw-design-lower-light p { color:#475467; }
.gw-design-product-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
.gw-demo-product { padding:18px; }
.gw-demo-product-img { height:130px; border-radius:12px; background:linear-gradient(145deg,#EDF0F2,#D8DCE0); margin-bottom:16px; }
.gw-demo-product h3 { margin:0 0 6px; font-size:17px; }
.gw-demo-product p { margin:0 0 12px; font-size:13px; }
.gw-next-digital-light { border:1px solid rgba(33,37,41,.13); border-radius:18px; padding:30px; background:rgba(255,255,255,.72); box-shadow:0 14px 36px rgba(16,24,40,.06); }
.gw-digital-coming-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:28px; }
.gw-digital-coming-grid span { border:1px solid #E4E7EC; border-radius:12px; padding:16px; font-weight:800; background:#fff; }
.gw-digital-coming-grid small { display:inline-block; margin-top:10px; color:#B45309; background:#FFF7ED; padding:4px 8px; border-radius:999px; font-size:11px; }

@media (max-width:1100px) {
  .gw-product-hero-v13, .gw-compat-checker-v13, .gw-brand-docs-grid-v13, .gw-design-hero-light, .gw-design-lower-light { grid-template-columns:1fr; }
  .gw-product-hero-v13, .gw-compat-checker-v13, .gw-specs-v13, .gw-fit-v13, .gw-brand-docs-v13, .gw-print-settings-v13, .gw-box-v13 { margin-left:22px; margin-right:22px; padding-left:18px; padding-right:18px; }
  .gw-compat-selects-v13, .gw-addons-grid-v13, .gw-upgrade-list-v13, .gw-design-tiles-light, .gw-design-product-grid, .gw-digital-coming-grid, .gw-design-steps { grid-template-columns:1fr; }
  .gw-design-hero-light, .gw-design-lower-light { padding-left:22px; padding-right:22px; }
  .gw-design-visual-light { min-height:330px; }
}

/* Glødwerk v1.4 approved homepage replacement and Storefront full-width fix */
.gw-fullwidth .site-content .col-full,
.gw-fullwidth .col-full,
.gw-fullwidth #primary,
.gw-fullwidth .content-area,
.gw-fullwidth .site-main {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.gw-fullwidth .storefront-breadcrumb,
.gw-fullwidth .entry-header { display:none !important; }
.gw-fullwidth .hentry { margin:0 !important; }
.gw-fullwidth .entry-content { margin:0 !important; }
.gw-nav { min-height:76px; padding:18px 42px; }
.gw-logo img { width:46px; }
.gw-logo-text strong { font-size:27px; }
.gw-logo-text small { font-size:10px; letter-spacing:.15em; color:#D9531E; }
.gw-navlinks { gap:28px; font-size:14px; }
.gw-navlinks a { white-space:nowrap; }
.gw-navicons a { font-size:26px; line-height:1; }

.gw-home-approved {
  background:#F7F6F2;
  color:#101418;
  padding:0 36px 44px;
}
.gw-home-hero {
  max-width:1560px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.78fr 1fr;
  gap:58px;
  align-items:center;
  padding:72px 14px 40px;
}
.gw-home-copy h1 {
  margin:0 0 22px;
  font-size:54px;
  line-height:1.13;
  letter-spacing:-.045em;
  color:#101418;
  font-weight:800;
}
.gw-home-copy h1 span { color:#D9531E; }
.gw-home-copy p {
  max-width:580px;
  font-size:18px;
  line-height:1.65;
  color:#475467;
  margin:0 0 32px;
}
.gw-home-search {
  display:flex;
  align-items:center;
  max-width:590px;
  min-height:62px;
  border:1px solid #D5DAE1;
  border-radius:14px;
  background:#fff;
  box-shadow:0 12px 30px rgba(16,24,40,.05);
  overflow:hidden;
  color:#101418;
}
.gw-home-search svg { margin-left:20px; flex:0 0 auto; color:#101418; }
.gw-home-search input {
  border:0 !important;
  box-shadow:none !important;
  outline:0 !important;
  background:transparent !important;
  height:62px;
  font-size:16px;
  padding:0 18px;
}
.gw-home-search button {
  width:52px;
  height:52px;
  margin-right:5px;
  border:0;
  border-radius:10px;
  background:#D9531E;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}
.gw-home-visual {
  min-height:420px;
  border:1px solid #D9DEE7;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 22px 46px rgba(16,24,40,.06);
  background:#fff;
}
.gw-home-visual svg { width:100%; height:100%; display:block; }

.gw-home-printers,
.gw-home-apps {
  max-width:1560px;
  margin:0 auto;
  display:grid;
  grid-template-columns:250px 1fr;
  gap:24px;
  align-items:start;
  padding:26px 14px 0;
}
.gw-home-side-title h2 {
  font-size:28px;
  line-height:1.1;
  margin:8px 0 10px;
  letter-spacing:-.03em;
}
.gw-home-side-title p { color:#475467; font-size:16px; line-height:1.55; margin:0; }
.gw-home-printer-row {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.gw-printer-logo-card {
  min-height:108px;
  border:1px solid #D9DEE7;
  background:#fff;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  box-shadow:0 10px 28px rgba(16,24,40,.04);
  transition:transform .15s,border-color .15s,box-shadow .15s;
}
.gw-printer-logo-card:hover { transform:translateY(-2px); border-color:#D9531E; box-shadow:0 14px 34px rgba(16,24,40,.08); }
.gw-printer-logo-card strong { font-size:30px; letter-spacing:-.03em; color:#0B0C0E; }
.gw-printer-logo-card small { font-size:12px; font-weight:900; letter-spacing:.08em; color:#0B0C0E; }
.gw-printer-logo-card.gw-qidi strong { color:#1454BE; font-size:22px; letter-spacing:.02em; }
.gw-printer-logo-card.gw-voron strong { color:#111; font-size:25px; letter-spacing:.08em; }
.gw-printer-logo-card.gw-voron:before { content:'◇'; color:#E21E2C; font-size:30px; line-height:1; }
.gw-printer-logo-card.gw-all span { font-size:40px; color:#D9531E; line-height:.9; }
.gw-printer-logo-card.gw-all strong { font-size:18px; margin-top:8px; }

.gw-home-app-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.gw-home-app-card {
  border:1px solid #D9DEE7;
  border-radius:16px;
  padding:20px 20px 18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(16,24,40,.04);
}
.gw-home-app-card h3 { margin:0 0 7px; font-size:22px; line-height:1.2; letter-spacing:-.02em; }
.gw-home-app-card p { margin:0 0 15px; color:#475467; font-size:15px; line-height:1.45; min-height:42px; }
.gw-home-app-card > a { color:#D9531E; font-weight:900; display:inline-block; margin-top:12px; }
.gw-home-mini-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.gw-home-mini {
  border:1px solid #E1E5EA;
  border-radius:12px;
  padding:10px;
  min-height:152px;
  background:#FBFCFD;
}
.gw-home-mini-img { height:74px; border-radius:9px; background:#ECEFF2; margin-bottom:8px; position:relative; overflow:hidden; }
.gw-home-mini strong { display:block; font-size:12.5px; line-height:1.15; min-height:30px; }
.gw-home-mini span { display:block; color:#D9531E; font-weight:900; margin-top:6px; }
.gw-mini-spool:before { content:''; position:absolute; width:66px; height:66px; border-radius:50%; background:radial-gradient(circle at 50% 50%,#F2F2F2 0 13%,#111 14% 58%,#2C2F33 59%); left:50%; top:50%; transform:translate(-50%,-50%); }
.gw-mini-plate:before,.gw-mini-plate-brown:before { content:''; position:absolute; width:68px; height:48px; background:repeating-linear-gradient(45deg,#161719,#161719 4px,#292C2F 4px,#292C2F 8px); left:50%; top:50%; transform:translate(-50%,-50%) skew(-8deg); border-radius:3px; }
.gw-mini-plate-brown:before { background:#6B5641; }
.gw-mini-nozzle:before,.gw-mini-nozzle-dark:before,.gw-mini-nozzle-copper:before { content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:44px; height:62px; clip-path:polygon(50% 0,78% 34%,65% 100%,35% 100%,22% 34%); background:linear-gradient(90deg,#B38343,#F1C37A,#8C5E27); }
.gw-mini-nozzle-dark:before { background:linear-gradient(90deg,#222,#555,#111); }
.gw-mini-nozzle-copper:before { background:linear-gradient(90deg,#AE4A18,#F08A38,#7A2A0F); }
.gw-mini-hotend:before { content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:62px; height:68px; border-radius:8px; background:linear-gradient(135deg,#CBCFD2,#454A4F); box-shadow:inset 0 -18px 0 #1E2226; }

.gw-home-trust-strip {
  max-width:1560px;
  margin:28px auto 0;
  border:1px solid #D9DEE7;
  border-radius:16px;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  box-shadow:0 12px 30px rgba(16,24,40,.04);
}
.gw-home-trust-strip div { padding:24px 28px; display:grid; grid-template-columns:42px 1fr; column-gap:16px; border-right:1px solid #D9DEE7; }
.gw-home-trust-strip div:last-child { border-right:0; }
.gw-home-trust-strip span { color:#D9531E; font-size:36px; grid-row:1 / span 2; line-height:1; }
.gw-home-trust-strip strong { font-size:17px; line-height:1.2; }
.gw-home-trust-strip p { margin:4px 0 0; color:#475467; font-size:14px; line-height:1.35; }

@media (max-width:1200px) {
  .gw-home-hero { grid-template-columns:1fr; }
  .gw-home-printers,.gw-home-apps { grid-template-columns:1fr; }
  .gw-home-printer-row { grid-template-columns:repeat(2,1fr); }
  .gw-home-app-grid { grid-template-columns:1fr; }
  .gw-home-trust-strip { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:700px) {
  .gw-home-approved { padding-left:18px; padding-right:18px; }
  .gw-home-hero { padding-top:40px; gap:28px; }
  .gw-home-copy h1 { font-size:38px; }
  .gw-home-printer-row,.gw-home-trust-strip,.gw-home-mini-row { grid-template-columns:1fr; }
  .gw-home-trust-strip div { border-right:0; border-bottom:1px solid #D9DEE7; }
}
