/* ============================================
   AMALGUM WELDING SHOP — DESIGN TOKENS + COMPONENTS
   Source of truth: skills/user/amalgum-website-development/references/tokens.md
   and references/components.html. Do not hardcode hex values outside this file.
   ============================================ */
:root{
  --black:#231F20; --orange:#F5821F; --cta:#B85C00; --cta-hover:#974B00;
  --slate:#44484B; --paper:#F8F9FA; --line:#E4E7EA; --white:#FFFFFF;
  --ink:#231F20; --muted:#6F7173;
  --wa:#25D366; --wa-ink:#0b3d20;
  --success:#176B3A; --warning:#8A4B00; --danger:#B42318;
  --steel-950:#151719; --steel-900:#202326; --steel-800:#303438;
  --steel-200:#D7DADD; --steel-100:#ECEEEF;
  --maxw:1200px; --r:10px; --r-sm:8px; --r-lg:14px;
  --shadow:0 1px 3px rgba(35,31,32,.06),0 8px 24px rgba(35,31,32,.06);
  --shadow-strong:0 2px 6px rgba(35,31,32,.08),0 14px 32px rgba(35,31,32,.10);
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --font-mono:'Space Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
}

/* ============================================
   BASE
   ============================================ */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;font-family:var(--font-body);color:var(--ink);background:var(--white);
  line-height:1.55;-webkit-font-smoothing:antialiased;overflow-x:hidden;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px;}
h1,h2,h3{margin:0;letter-spacing:-.02em;line-height:1.08;}
.eyebrow{font-size:.72rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--orange);}
:focus-visible{outline:3px solid var(--orange);outline-offset:2px;border-radius:4px;}
.skip-link:focus{position:fixed!important;top:12px;left:12px;z-index:10000;width:auto;height:auto;padding:12px 16px;clip:auto!important;clip-path:none;background:#fff;color:var(--ink);font-weight:800;box-shadow:var(--shadow);}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:.95rem;
  padding:13px 22px;border-radius:8px;cursor:pointer;border:2px solid transparent;
  transition:.15s;white-space:nowrap;min-height:44px;justify-content:center;touch-action:manipulation;}
.btn:active{filter:brightness(.94);}
.btn-primary{background:var(--cta);color:#fff;}
.btn-primary:hover{background:var(--cta-hover);color:#fff;}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35);}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.btn-dark{background:var(--black);color:#fff;}
.btn-dark:hover{background:#000;color:#fff;}
.btn-wa{background:var(--wa);color:var(--wa-ink);}
.btn-wa:hover{filter:brightness(1.05);}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--ink);}
.btn-outline:hover{background:var(--ink);color:#fff;}
.btn-sm{padding:9px 16px;font-size:.88rem;min-height:44px;}

/* ============================================
   HEADER — product search + consolidated navigation
   ============================================ */
header.site{background:#fff;border-bottom:1px solid var(--line);}
.hdr{display:flex;align-items:center;gap:28px;height:162px;padding-top:20px;padding-bottom:20px;}
.brand{display:flex;align-items:center;gap:11px;flex:0 0 auto;}
.brand .mark{width:40px;height:40px;flex:0 0 auto;}
.brand .logo-img{height:99px;width:auto;flex:0 0 auto;}
.brand .name{font-weight:800;font-size:1.18rem;line-height:1;letter-spacing:-.01em;}
.brand .name small{display:block;font-size:.62rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);margin-top:3px;}
.hdr .actions{display:flex;align-items:center;gap:10px;flex:0 0 auto;}
.icbtn{background:none;border:none;cursor:pointer;color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;padding:6px;border-radius:6px;transition:.15s;
  min-width:44px;min-height:44px;touch-action:manipulation;}
.icbtn:hover{background:var(--paper);}
.cart-dot{position:relative;}
.cart-dot b{position:absolute;top:-3px;right:-4px;background:var(--orange);color:#fff;
  font-size:.6rem;font-weight:800;width:15px;height:15px;border-radius:50%;
  display:grid;place-items:center;}
.header-whatsapp{font-size:.85rem;font-weight:800;color:var(--wa-ink);background:var(--wa);
  border-radius:var(--r-sm);padding:9px 13px;min-height:44px;display:inline-flex;align-items:center;}
.live-search{position:relative;flex:1;max-width:560px;margin-left:auto;}
.live-search-field{height:48px;display:flex;align-items:center;gap:10px;border:2px solid var(--line);
  border-radius:var(--r-sm);padding:0 14px;background:var(--paper);transition:border-color .15s,box-shadow .15s;}
.live-search-field:focus-within{border-color:var(--cta);box-shadow:0 0 0 3px rgba(184,92,0,.13);background:#fff;}
.live-search-field svg{color:var(--muted);flex:0 0 auto;}
.live-search input{width:100%;border:0;outline:0;background:transparent;font:600 .92rem var(--font-body);color:var(--ink);padding:0;}
.live-search input::placeholder{color:var(--muted);font-weight:500;}
.live-search-spinner{display:none;width:17px;height:17px;border:2px solid var(--line);border-top-color:var(--cta);border-radius:50%;animation:searchSpin .7s linear infinite;}
.live-search.is-loading .live-search-spinner{display:block;}
@keyframes searchSpin{to{transform:rotate(360deg);}}
.live-search-results{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:90;background:#fff;
  border:1px solid var(--line);border-radius:var(--r-sm);box-shadow:var(--shadow-strong);overflow:hidden;}
.live-search-result{display:flex;align-items:center;gap:12px;padding:10px 12px;border-bottom:1px solid var(--line);}
.live-search-result:last-child{border-bottom:0;}
.live-search-result:hover,.live-search-result[aria-selected="true"]{background:var(--paper);}
.live-search-result img{width:56px;height:56px;object-fit:cover;border-radius:var(--r-sm);border:1px solid var(--line);}
.live-search-result-copy{display:flex;flex-direction:column;gap:3px;min-width:0;}
.live-search-result-copy strong{font-size:.88rem;line-height:1.25;}
.live-search-result-copy span{font-size:.75rem;color:var(--muted);font-family:var(--font-mono);}
.live-search-message{padding:18px;font-size:.86rem;color:var(--muted);line-height:1.45;}

/* Sticky primary navigation */
.navbar{position:sticky;top:0;z-index:50;background:var(--black);
  border-bottom:1px solid rgba(255,255,255,.06);}
.navbar-row .wrap{display:flex;align-items:stretch;justify-content:flex-start;gap:14px;position:relative;max-width:none;}
.navbar-actions{display:flex;align-items:center;gap:4px;margin-left:auto;flex:0 0 auto;}
nav.main{display:flex;gap:2px;flex-wrap:nowrap;min-width:0;}
nav.main ul{list-style:none;margin:0;padding:0;display:flex;align-items:stretch;gap:2px;flex-wrap:nowrap;}
nav.main .primary-menu>li{display:flex;align-items:stretch;}
nav.main a{color:#fff;font-weight:600;font-size:.86rem;padding:16px 10px;
  position:relative;transition:color .15s;display:inline-flex;align-items:center;white-space:nowrap;}
nav.main a::after{content:"";position:absolute;left:12px;right:12px;bottom:8px;height:2px;
  background:var(--orange);transform:scaleX(0);transform-origin:left;transition:transform .25s;}
nav.main a:hover,nav.main a[aria-current="page"]{color:var(--orange);}
nav.main a:hover::after,nav.main a[aria-current="page"]::after{transform:scaleX(1);}
body nav.main .shop-menu-item>a{font-size:1.2rem;}
.navbar .cta-inline{color:var(--orange);font-weight:700;font-size:1.43rem;
  letter-spacing:.05em;text-transform:uppercase;padding:14px 4px;white-space:nowrap;display:inline-flex;align-items:center;gap:7px;}
.navbar .cta-inline__icon{width:1em;height:1em;flex:0 0 auto;color:inherit;}
.navbar .cta-inline:hover{color:#fff;}
.burger{display:none;color:#fff;background:none;border:none;padding:12px;cursor:pointer;}
.menu-item-has-children{position:relative;display:flex;align-items:center;}
.submenu-toggle{color:var(--orange);background:transparent;border:0;width:44px;height:44px;padding:0;display:inline-grid;place-items:center;cursor:pointer;}
.submenu-chevron{width:22px;height:22px;filter:drop-shadow(0 0 0 rgba(245,130,31,0));animation:submenuChevronPulse 2.6s ease-in-out infinite;transition:transform .25s ease,filter .25s ease;}
.submenu-toggle:hover .submenu-chevron{filter:drop-shadow(0 0 5px rgba(245,130,31,.6));}
.submenu-toggle[aria-expanded="true"] .submenu-chevron{transform:rotate(180deg);animation:none;}
@keyframes submenuChevronPulse{
  0%,100%{transform:translateY(0) scale(1);opacity:.82;}
  50%{transform:translateY(2px) scale(1.08);opacity:1;filter:drop-shadow(0 0 4px rgba(245,130,31,.4));}
}
@media(prefers-reduced-motion:reduce){.submenu-chevron{animation:none;}}
nav.main .sub-menu{display:none;position:absolute;left:0;top:100%;width:520px;background:#fff;
  grid-template-columns:repeat(2,minmax(0,1fr));gap:0;padding:10px;border:1px solid var(--line);
  border-top:3px solid var(--orange);border-radius:0 0 var(--r-sm) var(--r-sm);box-shadow:var(--shadow-strong);}
.shop-menu-item:hover .sub-menu,.shop-menu-item:focus-within .sub-menu,.shop-menu-item.is-submenu-open .sub-menu{display:grid;}
nav.main .sub-menu li{display:block;}
body nav.main .sub-menu a{display:block;color:var(--ink)!important;padding:11px 12px;border-radius:var(--r-sm);font-size:.84rem;}
body nav.main .sub-menu a:hover{color:var(--cta)!important;background:var(--paper);}
nav.main .sub-menu a::after{display:none;}

/* ============================================
   HERO — skewed orange panel + copy + animated spark
   ============================================ */
.hero{position:relative;background:var(--black);color:#fff;overflow:hidden;}
.hero::after{content:"";position:absolute;right:-8%;top:0;bottom:0;width:46%;
  background:var(--orange);transform:skewX(-11deg);transform-origin:top;opacity:1;}
.hero::before{content:"";position:absolute;inset:0;width:100%;height:100%;
  background-image:
    linear-gradient(90deg,rgba(18,15,16,.18) 0%,rgba(18,15,16,.48) 52%,#121010 72%,#121010 100%),
    linear-gradient(180deg,rgba(18,15,16,.12) 0%,rgba(18,15,16,.28) 100%),
    url('../images/generated/homepage-hero-subtle-welding-sparks.webp');
  background-size:cover;
  background-position:left bottom;
  background-repeat:no-repeat;
  opacity:.72;
  pointer-events:none;}
.hero .wrap{position:relative;z-index:2;display:grid;grid-template-columns:1.15fr .85fr;
  gap:36px;align-items:center;padding-top:72px;padding-bottom:72px;}
.hero h1{font-size:3.05rem;font-weight:800;letter-spacing:-.02em;line-height:1.08;
  margin-top:14px;}
.hero h1 .hl{color:var(--orange);}
.hero p.sub{color:#cdd0d2;font-size:1.12rem;margin:18px 0 26px;max-width:33ch;line-height:1.55;}
.hero .ctas{display:flex;gap:12px;flex-wrap:wrap;}
.hero .ctas .btn-primary:hover{background:#fff;color:var(--cta);border-color:#fff;}
.hero .ctas .btn-ghost:hover{color:var(--cta);border-color:var(--cta);background:rgba(255,255,255,.08);}
.hero .chips{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:26px;font-size:.86rem;color:#e7e9ea;}
.hero .chips span{display:inline-flex;align-items:center;gap:7px;white-space:nowrap;}
.tick{color:var(--orange);font-weight:900;}

.hero-art{position:relative;z-index:2;display:grid;place-items:center;}
.hero-art .panel{background:rgba(18,15,16,.60);border:1px solid rgba(255,255,255,.14);
  border-radius:14px;padding:26px;width:100%;text-align:center;backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);}
.spark{width:170px;height:170px;margin:0 auto 6px;overflow:visible;}
.spark .rays{transform-origin:60px 60px;animation:sparkRotate 45s linear infinite;}
.spark .core{transform-origin:60px 60px;animation:sparkPulse 2.4s ease-in-out infinite;}
@keyframes sparkRotate{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}
@keyframes sparkPulse{
  0%,100%{transform:scale(1);opacity:1;}
  50%{transform:scale(1.15);opacity:.85;}
}
.hero-art .panel b{display:block;font-size:1.5rem;font-weight:800;letter-spacing:-.01em;}
.hero-art .panel small{color:#e7e9ea;}
.hero-art .home-product-panel{padding:14px 14px 22px;overflow:hidden;}
.home-product-photo{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;object-position:center;border-radius:10px;margin:0 0 18px;box-shadow:0 14px 34px rgba(0,0,0,.32);}
.home-product-panel small{display:block;margin-top:6px;line-height:1.5;}

/* ============================================
   TRUST STRIP — feature icons
   ============================================ */
.trust{background:var(--paper);border-bottom:1px solid var(--line);}
.trust .wrap{display:flex;flex-wrap:wrap;justify-content:space-between;gap:14px;padding:18px 20px;}
.trust .item{display:flex;align-items:center;gap:10px;font-weight:600;font-size:.9rem;color:var(--slate);}
.trust .item svg{flex:0 0 auto;color:var(--orange);}

/* ============================================
   SECTION SCAFFOLDING
   ============================================ */
section.block{padding:62px 0;}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:28px;}
.sec-head h2{font-size:1.9rem;font-weight:800;}
.sec-head p{color:var(--muted);margin:6px 0 0;}
.sec-head a.more{font-weight:700;color:var(--cta);white-space:nowrap;min-height:44px;display:inline-flex;align-items:center;}
.sec-head a.more:hover{text-decoration:underline;}

/* ============================================
   CATEGORY GRID
   ============================================ */
.cats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.cat{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  transition:.15s;display:flex;flex-direction:column;}
.cat:hover{box-shadow:var(--shadow);transform:translateY(-2px);border-color:#d8dcdf;}
.ph{position:relative;background:
    repeating-linear-gradient(135deg,#eceff1 0 12px,#e6eaec 12px 24px);
  aspect-ratio:16/10;display:grid;place-items:center;color:#9aa1a6;font-size:.74rem;font-weight:600;
  letter-spacing:.04em;text-align:center;}
.ph::before{content:"▦";font-size:1.4rem;opacity:.5;position:absolute;top:10px;left:12px;}
.cat .ph{overflow:hidden;background:#17191b;}
.cat .ph::before{display:none;}
.cat .ph img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease,filter .35s ease;}
.cat:hover .ph img{transform:scale(1.035);filter:contrast(1.04) saturate(1.04);}
.cat .body{padding:15px 16px 17px;}
.cat .body h3{font-size:1.06rem;font-weight:700;}
.cat .body p{color:var(--muted);font-size:.85rem;margin:4px 0 10px;}
.cat .body .go{font-weight:700;color:var(--cta);font-size:.88rem;min-height:44px;display:inline-flex;align-items:center;}

/* ============================================
   PRODUCT TILE
   ============================================ */
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.prod{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  transition:.15s;display:flex;flex-direction:column;}
.prod:hover{box-shadow:var(--shadow);transform:translateY(-2px);}
.prod .ph{aspect-ratio:1/1;overflow:hidden;background:#fff;}
.prod .ph::before{display:none;}
.prod:not(.aws-product-feature) .ph>img{display:block;width:100%;height:100%;object-fit:contain;padding:10px;}
.prod .badge{position:absolute;top:10px;right:10px;background:#FCEEDD;color:#B45309;
  font-size:.65rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:5px 9px;border-radius:5px;}
.prod .body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.prod .brandline{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);}
.prod h3{font-size:1rem;font-weight:700;line-height:1.25;}
.prod h3 a{color:inherit;text-decoration:none;}
.prod h3 a:hover{text-decoration:underline;text-decoration-color:var(--orange);text-underline-offset:3px;}
.prod .specs{font-family:var(--font-mono);font-size:.82rem;color:var(--slate);letter-spacing:.02em;}
.prod .price{font-size:1.15rem;font-weight:800;color:var(--ink);margin-top:auto;}
.prod .price.quote{font-size:.95rem;font-weight:700;color:var(--slate);font-style:italic;}
.prod .btn{width:100%;justify-content:center;}
.aws-range-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.aws-product-feature{position:relative;border:0;background:var(--steel-900);color:#fff;box-shadow:0 18px 42px rgba(22,25,27,.16);}
.aws-product-feature .ph{aspect-ratio:16/10;background:linear-gradient(145deg,#303538,#17191b);overflow:hidden;}
.aws-product-feature .ph::before{display:none;}
.aws-product-feature .ph a{position:absolute;inset:0;display:block;width:100%;height:100%;}
.aws-product-feature .ph img{display:block;width:100%;height:100%;}
.aws-product-feature .ph img{object-fit:contain;object-position:50% 55%;padding:22px;transition:transform .35s ease;}
.page-template-page-aws-welders .hero-art .temp-site-image,
.page-template-page-aws-welders .split .img-slot .temp-site-image{object-position:50% 50%;}
.aws-product-feature:hover .ph img{transform:translateY(-4px) scale(1.025);}
.aws-feature-flag{position:absolute;z-index:2;top:14px;left:14px;padding:7px 10px;background:var(--orange);color:var(--ink);font:800 .68rem var(--font-mono);letter-spacing:.08em;text-transform:uppercase;}
.aws-product-feature .body{padding:24px;gap:12px;}
.aws-product-feature .brandline{color:var(--orange);}
.aws-product-feature h3{font-size:clamp(1.3rem,2.2vw,1.8rem);}
.aws-product-feature h3 a{color:#fff;}
.aws-product-pitch{margin:0;color:rgba(255,255,255,.78);line-height:1.6;}
.aws-product-benefits{display:grid;gap:7px;margin:2px 0 4px;padding:0;list-style:none;}
.aws-product-benefits li{position:relative;padding-left:20px;color:#fff;font-size:.88rem;font-weight:700;}
.aws-product-benefits li::before{content:"";position:absolute;left:0;top:.42em;width:9px;height:9px;border:2px solid var(--orange);transform:rotate(45deg);}
.aws-product-feature .price,.aws-product-feature .price.quote{color:#fff;font-style:normal;}

/* ============================================
   SIGNATURE: WORKSHOPS (dark)
   ============================================ */
.workshops{background:var(--black);color:#fff;position:relative;overflow:hidden;}
.workshops::before{content:"";position:absolute;left:0;top:0;height:5px;width:100%;
  background:linear-gradient(90deg,var(--orange),transparent 60%);}
.workshops .sec-head h2{color:#fff;}
.workshops .sec-head p{color:#b9bcbe;}
.wgrid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.wcard{background:#2c2829;border:1px solid #3a3637;border-radius:var(--r);overflow:hidden;}
.wcard .ph{background:repeating-linear-gradient(135deg,#332f30 0 12px,#2b2728 12px 24px);color:#7a7d7f;}
.wcard .body{padding:22px;}
.wcard h3{font-size:1.3rem;font-weight:800;}
.wcard p{color:#c4c7c9;margin:8px 0 16px;font-size:.95rem;}
.wcard .tagrow{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:16px;}
.wcard .tagrow span{font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:var(--orange);border:1px solid #4a4647;border-radius:20px;padding:4px 11px;}

/* Homepage editorial workshop feature. */
.home-workshops{padding-top:86px;padding-bottom:72px;}
.home-workshop-intro{max-width:760px;margin-bottom:34px;}
.home-workshop-intro h2{font-size:clamp(2.15rem,4.5vw,4.2rem);line-height:.98;letter-spacing:-.035em;margin:10px 0 16px;}
.home-workshop-intro>p:last-child{max-width:62ch;color:#c4c7c9;font-size:1.02rem;line-height:1.65;}
.home-workshop-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:22px;align-items:end;}
.home-workshop-panel{position:relative;display:flex;align-items:flex-end;min-height:520px;overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:14px;background:#201d1e;isolation:isolate;box-shadow:0 24px 54px rgba(0,0,0,.28);}
.home-workshop-panel--primary{min-height:590px;}
.home-workshop-panel>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .6s cubic-bezier(.2,.65,.25,1),filter .6s ease;}
.home-workshop-panel::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(18,15,16,.02) 12%,rgba(18,15,16,.2) 42%,rgba(18,15,16,.95) 100%);}
.home-workshop-panel:hover>img{transform:scale(1.035);filter:saturate(1.04) contrast(1.03);}
.home-workshop-copy{width:100%;padding:34px;}
.home-workshop-label{display:inline-block;color:var(--orange);font-size:.72rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase;margin-bottom:10px;}
.home-workshop-copy h3{max-width:15ch;font-size:clamp(1.55rem,2.6vw,2.35rem);line-height:1.05;letter-spacing:-.025em;}
.home-workshop-copy p{max-width:48ch;color:#d5d7d8;font-size:.96rem;line-height:1.6;margin:12px 0 18px;}
.home-workshop-link{display:inline-flex;align-items:center;gap:8px;min-height:44px;color:#fff;font-weight:800;text-decoration:none;border-bottom:2px solid var(--orange);}
.home-workshop-link:hover{color:var(--orange);}
.home-workshop-link--wa{border-bottom-color:var(--wa);}
.home-workshop-trust{display:flex;justify-content:center;flex-wrap:wrap;gap:12px 30px;margin-top:30px;color:#c4c7c9;font-size:.82rem;font-weight:700;letter-spacing:.02em;}
.home-workshop-trust span{display:inline-flex;align-items:center;gap:10px;}
.home-workshop-trust span::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 4px rgba(245,130,31,.12);}

/* ============================================
   GAS BAND
   ============================================ */
.gas{background:var(--paper);}
.gas .wrap{display:grid;grid-template-columns:1.3fr 1fr;gap:30px;align-items:center;}
.gas h2{font-size:1.7rem;font-weight:800;}
.gas p{color:var(--slate);margin:10px 0 18px;}
.gas .badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--line);
  border-radius:30px;padding:7px 14px;font-weight:700;font-size:.84rem;color:var(--slate);margin-bottom:14px;}
.gas .badge .dot{width:9px;height:9px;border-radius:50%;background:var(--orange);}
.gas-art{background:var(--black);border-radius:14px;padding:28px;color:#fff;text-align:center;}
.gas-art .big{font-size:2.4rem;font-weight:900;color:var(--orange);line-height:1;}
.gas-art small{color:#cfd2d4;}

/* ============================================
   BRAND WALL
   ============================================ */
.brands{padding:42px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff;}
.brands p.lbl{text-align:center;color:var(--muted);font-size:.8rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;margin:0 0 20px;}
.brandrow{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 30px;align-items:center;}
.brandrow span{font-weight:800;color:#aeb3b6;font-size:1.05rem;letter-spacing:.02em;
  transition:color .2s;}
.brandrow span:hover{color:var(--ink);}

/* ============================================
   REVIEWS
   ============================================ */
.reviews{padding:62px 0;}
.stars{color:var(--orange);font-size:1.1rem;letter-spacing:2px;}
.rgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:8px;}
.rcard{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:20px;box-shadow:var(--shadow);}
.rcard .q{font-size:.98rem;color:var(--ink);margin:10px 0 14px;font-style:italic;line-height:1.5;}
.rcard .who{font-weight:700;font-size:.88rem;}
.rcard .who small{display:block;color:var(--muted);font-weight:500;}
.sample-note{font-size:.74rem;color:var(--muted);margin-top:14px;}

/* ============================================
   WHATSAPP BAND (orange bg, dark text — safe)
   ============================================ */
.waband{background:var(--orange);color:#231a10;}
.waband .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:30px 20px;flex-wrap:wrap;}
.waband h2{font-size:1.6rem;font-weight:800;color:#231a10;letter-spacing:-.01em;}
.waband p{margin:4px 0 0;color:#3a2c18;font-weight:500;}

/* ============================================
   FORM PRIMITIVES
   ============================================ */
.form-grid{display:grid;gap:18px;max-width:560px;}
.form-row{display:grid;gap:6px;}
.form-label{font-size:.86rem;font-weight:700;color:var(--ink);}
.req{color:#B42318;}
.form-input,.form-textarea,.form-select{
  font-family:inherit;font-size:.95rem;padding:11px 14px;background:#fff;
  border:1px solid var(--line);border-radius:var(--r-sm);color:var(--ink);
  transition:border-color .15s,box-shadow .15s;}
.form-input:focus,.form-textarea:focus,.form-select:focus{
  outline:none;border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(245,130,31,.25);}
.form-textarea{min-height:140px;resize:vertical;}
.form-help{font-size:.75rem;color:var(--muted);}

/* ============================================
   FOOTER
   ============================================ */
footer.site{position:relative;overflow:hidden;background:#121010!important;color:#b9bcbe;padding:54px 0 26px;font-size:.9rem;}
footer.site::before{content:"";position:absolute;left:0;right:0;top:-70px;bottom:-70px;pointer-events:none;
  background-image:
    linear-gradient(90deg,rgba(18,15,16,.04) 0%,rgba(18,15,16,.28) 100%),
    url('../images/generated/homepage-hero-subtle-welding-sparks.webp');
  background-repeat:no-repeat;
  background-position:left bottom;
  background-size:125% auto;
  background-attachment:scroll;
  transform:translate3d(0,var(--footer-parallax-y,0px),0) scaleX(-1);
  transform-origin:center;
  will-change:transform;
  opacity:.24;}
footer.site>.wrap{position:relative;z-index:1;}
.fgrid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:30px;}
footer h4{color:#fff;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;margin:0 0 14px;}
footer ul{list-style:none;margin:0;padding:0;}
footer ul li{margin:7px 0;}
footer a{transition:color .15s;}
footer a:hover{color:var(--orange);}
footer .brand .name{color:#fff;}
.footer-logo-link{display:block;width:min(100%,360px);}
.footer-brand-logo{display:block;width:100%;height:auto;}
footer .blurb{margin:14px 0 16px;max-width:34ch;line-height:1.6;}
.naprow{display:flex;gap:9px;margin:7px 0;}
.naprow svg{flex:0 0 auto;color:var(--orange);margin-top:2px;}
.fbar{border-top:1px solid #3a3637;margin-top:34px;padding-top:18px;display:flex;
  justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:.82rem;color:#8a8e90;}
.pay{display:flex;gap:8px;align-items:center;}
.pay span{background:#2c2829;border:1px solid #3a3637;border-radius:5px;padding:4px 9px;
  font-weight:700;font-size:.72rem;color:#cfd2d4;}

/* ============================================
   COMPACT HERO (About-style pages)
   No animated spark, no CTAs, ~50% homepage hero height.
   ============================================ */
.hero--compact .wrap{grid-template-columns:1fr;padding-top:56px;padding-bottom:56px;
  max-width:620px;margin-left:max(20px,calc((100% - var(--maxw)) / 2));margin-right:auto;}
.hero--compact h1{font-size:2.5rem;}
.hero--compact p.sub{max-width:52ch;}

/* ============================================
   SPLIT SECTION (two-column copy + image, e.g. origin story)
   ============================================ */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;}
.split .copy h2{font-size:1.9rem;font-weight:800;margin-top:8px;}
.split .copy p{color:var(--slate);margin:14px 0;line-height:1.65;}
.split .img-slot{aspect-ratio:4/5;border-radius:var(--r);overflow:hidden;}
.split .img-slot img{width:100%;height:100%;object-fit:cover;}

/* ============================================
   CAPABILITY GRID (3-card, "what makes us different")
   ============================================ */
.capability-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.capability{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:26px 22px;
  transition:.15s;}
.capability:hover{box-shadow:var(--shadow);transform:translateY(-2px);}
.capability .icon{color:var(--orange);margin-bottom:14px;}
.capability h3{font-size:1.1rem;font-weight:800;margin-bottom:8px;}
.capability p{color:var(--slate);font-size:.92rem;line-height:1.55;margin:0 0 12px;}
.capability a.go{font-weight:700;color:var(--cta);font-size:.88rem;min-height:44px;display:inline-flex;align-items:center;}
.capability a.go:hover{text-decoration:underline;}

/* ============================================
   TEAM GRID (Meet the Team)
   ============================================ */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.team-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  text-align:left;}
.team-card .photo{aspect-ratio:1/1;background:
    repeating-linear-gradient(135deg,#eceff1 0 12px,#e6eaec 12px 24px);
  display:grid;place-items:center;color:#9aa1a6;font-size:.7rem;font-weight:600;text-align:center;padding:0 10px;}
.team-card .photo img{width:100%;height:100%;object-fit:cover;}
.team-card .body{padding:16px;}
.team-card h3{font-size:1.02rem;font-weight:800;}
.team-card .role{display:block;color:var(--muted);font-size:.82rem;font-weight:600;margin:2px 0 8px;}
.team-card .bio{font-size:.85rem;color:var(--slate);line-height:1.5;margin:0 0 10px;}
.team-card .since{font-size:.72rem;color:var(--muted);margin-bottom:10px;}
.team-card .contact-row{display:flex;align-items:center;gap:8px;font-size:.82rem;font-weight:700;color:var(--cta);}
.team-card .contact-row svg{color:var(--wa);flex:0 0 auto;}

/* ============================================
   STATIC HERO VARIANT (Torch page — no animated spark)
   ============================================ */
.hero--static .spark .rays,
.hero--static .spark .core{animation:none;}
.hero--static .wrap{padding-top:64px;padding-bottom:64px;}
.hero--static h1{font-size:2.6rem;}

/* ============================================
   PROCESS ROW (numbered steps — "How to spec a torch")
   ============================================ */
.process-row{display:flex;gap:28px;align-items:flex-start;}
.process-step{flex:1;display:flex;gap:14px;}
.process-step .num{flex:0 0 auto;width:34px;height:34px;border-radius:50%;background:var(--orange);
  color:#231a10;font-weight:800;font-size:1rem;display:grid;place-items:center;}
.process-step h3{font-size:1.05rem;font-weight:800;margin-bottom:6px;}
.process-step p{color:var(--slate);font-size:.9rem;line-height:1.55;margin:0;}

/* ============================================
   REPAIRS — single wide dark card
   ============================================ */
.repair-card{background:#2c2829;border:1px solid #3a3637;border-radius:var(--r);padding:34px;}
.repair-card p{color:#c4c7c9;line-height:1.65;}
.repair-card .tagrow{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0;}
.repair-card .tagrow span{font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:var(--orange);border:1px solid #4a4647;border-radius:20px;padding:4px 11px;}
.keypoints{list-style:none;margin:18px 0;padding:0;display:grid;gap:10px;}
.keypoints li{display:flex;gap:10px;align-items:flex-start;color:#e7e9ea;font-size:.92rem;}
.keypoints li .tick{flex:0 0 auto;}

/* ============================================
   FAQ — native details/summary accordion
   ============================================ */
.faq-list{display:grid;gap:2px;border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{cursor:pointer;padding:18px 4px;font-weight:700;font-size:1rem;color:var(--ink);
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+";font-size:1.3rem;font-weight:400;color:var(--orange);flex:0 0 auto;
  transition:transform .2s;}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item .a{padding:0 4px 20px;color:var(--slate);font-size:.94rem;line-height:1.6;}
.faq-whatsapp-link{display:inline-flex;align-items:center;min-height:44px;margin-top:10px;color:var(--cta);font-weight:800;text-decoration:none;}
.faq-whatsapp-link:hover{text-decoration:underline;text-underline-offset:3px;}

/* ============================================
   CONTACT CHANNEL CARDS (WhatsApp / Phone / Email)
   ============================================ */
.channel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.channel-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:26px 22px;
  display:flex;flex-direction:column;gap:10px;transition:.15s;}
.channel-card:hover{box-shadow:var(--shadow);transform:translateY(-2px);}
.channel-card .icon{width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  background:var(--paper);}
.channel-card .icon.wa{color:var(--wa);}
.channel-card .icon.brand{color:var(--orange);}
.channel-card h3{font-size:1.05rem;font-weight:800;}
.channel-card p{color:var(--slate);font-size:.9rem;line-height:1.5;margin:0;}
.channel-card .direct{font-family:var(--font-mono);font-size:.85rem;color:var(--ink);font-weight:700;}
.channel-card .btn{margin-top:auto;justify-content:center;}

/* ============================================
   MINI TEAM ROW (Contact page — smaller than About cards)
   ============================================ */
.mini-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.mini-team-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:18px;
  display:flex;align-items:center;gap:14px;}
.mini-team-card .photo{width:64px;height:64px;border-radius:50%;flex:0 0 auto;background:
    repeating-linear-gradient(135deg,#eceff1 0 8px,#e6eaec 8px 16px);
  display:grid;place-items:center;color:#9aa1a6;font-size:.6rem;text-align:center;overflow:hidden;}
.mini-team-card .photo img{width:100%;height:100%;object-fit:cover;}
.mini-team-card .info .role{display:block;font-size:.72rem;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;color:var(--muted);margin-bottom:2px;}
.mini-team-card .info h3{font-size:.98rem;font-weight:800;margin-bottom:4px;}
.mini-team-card .info a{font-size:.82rem;font-weight:700;color:var(--wa);}

/* ============================================
   DETAILS BLOCK (Contact — address / hours / social)
   ============================================ */
.details-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.details-col .icon{color:var(--orange);margin-bottom:10px;}
.details-col h3{font-size:1rem;font-weight:800;margin-bottom:10px;}
.details-col address,
.details-col p{font-style:normal;color:var(--slate);font-size:.92rem;line-height:1.65;margin:0;}
.details-col .hours-note{font-size:.78rem;color:var(--muted);margin-top:10px;}
.details-col ul{list-style:none;margin:0;padding:0;display:grid;gap:8px;}
.details-col ul a{font-weight:700;color:var(--cta);font-size:.92rem;}

/* ============================================
   CATEGORY LAYOUT — filter rail (25%) + product grid (75%)
   No sticky filter rail (rule 1: only nav pins).
   ============================================ */
.breadcrumbs{font-size:.8rem;color:#c4c7c9;margin-bottom:10px;}
.breadcrumbs a{color:#c4c7c9;}
.breadcrumbs a:hover{color:var(--orange);}
.product-breadcrumb-band{
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,var(--steel-950),var(--steel-900));
  border-top:1px solid color-mix(in srgb,var(--orange) 34%,transparent);
  border-bottom:1px solid var(--orange);
}
.product-breadcrumb-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.3;
  background:repeating-linear-gradient(118deg,transparent 0 28px,color-mix(in srgb,var(--white) 8%,transparent) 29px 30px);
}
.product-breadcrumb-band .wrap{position:relative;z-index:1;}
.product-breadcrumbs{
  min-height:58px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  color:var(--orange);
  font-family:var(--font-mono);
  font-size:.78rem;
  font-weight:700;
  line-height:1.4;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.product-breadcrumbs a,
.product-breadcrumbs .breadcrumb-current{color:var(--orange);}
.product-breadcrumbs a{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  transition:color .15s ease;
}
.product-breadcrumbs a:hover{color:var(--white);}
.product-breadcrumbs .breadcrumb-separator{color:color-mix(in srgb,var(--orange) 42%,transparent);}
.cat-layout{display:grid;grid-template-columns:1fr 3fr;gap:32px;align-items:start;}
.filter-rail{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:20px;}
.filter-group{border-bottom:1px solid var(--line);padding:16px 0;}
.filter-group:first-child{padding-top:0;}
.filter-group:last-child{border-bottom:none;padding-bottom:0;}
.filter-group h3{font-size:.82rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;
  color:var(--slate);margin-bottom:12px;}
.filter-check{display:flex;align-items:center;gap:10px;font-size:.9rem;color:var(--ink);margin:0;min-height:44px;cursor:pointer;touch-action:manipulation;}
.filter-check input{accent-color:var(--orange);width:20px;height:20px;flex:0 0 auto;}
.filter-range{display:flex;align-items:center;gap:8px;}
.filter-range input[type="number"]{width:100%;font-family:inherit;font-size:.85rem;padding:8px 10px;
  border:1px solid var(--line);border-radius:6px;min-height:44px;}
.filter-actions{display:flex;gap:8px;margin-top:16px;}
.filter-actions .btn{flex:1;justify-content:center;}

.grid-toolbar{display:flex;justify-content:space-between;align-items:center;gap:16px;
  margin-bottom:18px;flex-wrap:wrap;}
.grid-toolbar .count{color:var(--muted);font-size:.88rem;}
.grid-toolbar .sort{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.grid-toolbar .sort select{font-family:inherit;font-size:.88rem;padding:9px 12px;border:1px solid var(--line);
  border-radius:var(--r-sm);background:#fff;min-height:44px;}

.pagination{display:flex;gap:6px;justify-content:center;margin-top:36px;flex-wrap:wrap;}
.pagination a,.pagination span{display:inline-flex;align-items:center;justify-content:center;
  min-width:44px;height:44px;border-radius:6px;border:1px solid var(--line);font-size:.88rem;
  font-weight:600;color:var(--ink);padding:0 8px;}
.pagination a:hover{border-color:var(--orange);color:var(--orange);}
.pagination span.current{background:var(--ink);border-color:var(--ink);color:#fff;}

.no-results{background:var(--paper);border:1px dashed var(--line);border-radius:var(--r);
  padding:40px 24px;text-align:center;color:var(--slate);}

/* ============================================
   ZONE 2 — buyer's guide + FAQ (below grid)
   ============================================ */
.zone2{max-width:78ch;}
.zone2 h2{font-size:1.5rem;font-weight:800;margin-bottom:14px;}
.zone2 h3{font-size:1.15rem;font-weight:800;margin:0 0 12px;}
.zone2 p{color:var(--slate);line-height:1.7;margin:0 0 16px;}
.zone2 a{color:var(--cta);font-weight:700;}
.zone2 a:hover{text-decoration:underline;}

/* ============================================
   PRODUCT PAGE — gallery + buy box
   ============================================ */
.product-hero-row{display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:start;}
.gallery .featured{aspect-ratio:1/1;border-radius:var(--r);overflow:hidden;position:relative;
  border:1px solid var(--line);}
.gallery .featured img{width:100%;height:100%;object-fit:cover;}
.gallery .featured .badge{position:absolute;top:12px;left:12px;}
.thumb-strip{display:flex;gap:8px;margin-top:10px;overflow-x:auto;padding-bottom:4px;}
.thumb-strip button{flex:0 0 auto;width:64px;height:64px;border-radius:8px;border:2px solid var(--line);
  overflow:hidden;padding:0;cursor:pointer;background:none;}
.thumb-strip button.active{border-color:var(--orange);}
.thumb-strip img{width:100%;height:100%;object-fit:cover;display:block;}

.buybox .brandline{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);}
.buybox .brandline a{color:var(--muted);}
.buybox .brandline a:hover{color:var(--cta);}
.buybox h1{font-size:var(--fs-h2,1.9rem);font-weight:800;margin:6px 0 10px;letter-spacing:-.01em;}
.buybox .rating{color:var(--orange);font-size:.95rem;margin-bottom:8px;}
.buybox .spec-strip{font-family:var(--font-mono);font-size:.92rem;color:var(--slate);
  letter-spacing:.02em;margin-bottom:12px;}
.buybox .short-desc{color:var(--slate);line-height:1.6;margin-bottom:18px;}
.buybox .price-row{margin-bottom:6px;}
.buybox .price-row .price{font-size:1.5rem;font-weight:800;color:var(--ink);}
.buybox .price-row .price del{color:var(--muted);font-weight:400;font-size:1rem;margin-right:8px;}
.buybox .price-row .price ins{text-decoration:none;}
.buybox .price-row .price.quote{font-size:1.05rem;font-weight:700;font-style:italic;color:var(--slate);}
.qty-row{display:flex;gap:10px;margin:14px 0;}
.qty-row input[type="number"]{width:72px;font-family:inherit;font-size:1rem;padding:11px 12px;
  border:1px solid var(--line);border-radius:var(--r-sm);text-align:center;}
.qty-row .btn{flex:1;justify-content:center;}
.stock-indicator{font-size:.86rem;font-weight:700;display:flex;align-items:center;gap:7px;margin:10px 0;}
.stock-indicator.in-stock{color:var(--success);}
.stock-indicator.low-stock{color:var(--warning);}
.stock-indicator.on-backorder{color:var(--warning);}
.stock-indicator.out-of-stock{color:var(--danger);}
.stock-indicator .dot{width:8px;height:8px;border-radius:50%;background:currentColor;}
.meta-row{font-size:.82rem;color:var(--muted);margin:14px 0;display:grid;gap:4px;}
.meta-row a{color:var(--muted);font-weight:600;}
.meta-row a:hover{color:var(--cta);}
.secondary-ctas{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px;}
.secondary-ctas .btn{border-color:var(--line);color:var(--ink);background:transparent;}
.secondary-ctas .btn:hover{background:var(--paper);}

/* ============================================
   PRODUCT FUNNEL — angled steel stage + purchase card
   ============================================ */
.product-stage{position:relative;overflow:hidden;background:
  radial-gradient(circle at 22% 42%,rgba(245,130,31,.20),transparent 30%),
  linear-gradient(125deg,var(--steel-950) 0%,var(--steel-900) 58%,var(--steel-800) 100%);
  color:#fff;padding-top:54px;padding-bottom:46px;}
.product-stage::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.28;background:
  repeating-linear-gradient(118deg,transparent 0 38px,rgba(255,255,255,.045) 39px 40px),
  linear-gradient(100deg,transparent 0 64%,rgba(245,130,31,.18) 64% 66%,transparent 66%);}
.product-stage .wrap{position:relative;z-index:1;}
.product-stage .product-hero-row{grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);gap:56px;align-items:center;}
.product-machine-stage{display:block!important;width:100%;}
.product-machine-stage .featured{aspect-ratio:1.08/1;border:1px solid rgba(255,255,255,.17);border-radius:0;
  width:100%;
  clip-path:polygon(0 0,calc(100% - 52px) 0,100% 52px,100% 100%,52px 100%,0 calc(100% - 52px));
  background:
    linear-gradient(135deg,rgba(255,255,255,.07),transparent 44%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0 1px,transparent 1px 7px),
    radial-gradient(circle at 46% 52%,#596066 0%,#353a3e 48%,#24272a 100%);}
.product-machine-stage .featured::before{content:"";position:absolute;left:7%;right:7%;bottom:7%;height:14%;
  background:radial-gradient(ellipse,rgba(0,0,0,.55),transparent 67%);filter:blur(10px);}
.product-machine-stage .featured::after{content:"";position:absolute;right:-34px;top:8%;width:92px;height:72%;
  background:linear-gradient(180deg,var(--orange),var(--cta));transform:skewX(-12deg);opacity:.88;}
.product-machine-stage .featured img{position:relative;z-index:2;object-fit:contain;padding:22px;
  filter:drop-shadow(0 24px 22px rgba(0,0,0,.42));transition:transform .28s ease-out;}
.product-machine-stage .featured:hover img{transform:translate3d(0,-5px,0) scale(1.01);}
.product-machine-stage .thumb-strip button{border-color:rgba(255,255,255,.24);background:var(--steel-900);}
.product-machine-stage .thumb-strip button.active{border-color:var(--orange);}
.product-purchase-card{position:sticky;top:92px;color:var(--ink);background:rgba(255,255,255,.97);padding:34px;
  clip-path:polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,0 100%);
  box-shadow:0 24px 64px rgba(0,0,0,.28);}
.product-purchase-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--orange);}
.product-purchase-card .brandline{color:var(--cta);}
.product-purchase-card .brandline a{color:var(--cta);}
.product-purchase-card h1{font-size:clamp(2rem,3.5vw,3.25rem);line-height:1.02;max-width:12ch;}
.product-purchase-card .spec-strip{display:inline-flex;background:var(--steel-100);border-left:3px solid var(--orange);
  padding:9px 12px;color:var(--steel-900);margin:4px 0 16px;}
.product-purchase-card .short-desc{font-size:1.02rem;}
.product-purchase-card .qty-row input{min-height:52px;border:2px solid var(--steel-200);}
.product-purchase-card .qty-row .btn{min-height:52px;}
.product-disabled-cta{width:100%;opacity:.45;cursor:not-allowed;}
.purchase-pending{font-size:.82rem;color:var(--muted);line-height:1.5;margin:9px 0 0;}
.product-variation-summary{margin:20px 0 16px;padding:18px;background:var(--paper);border:1px solid var(--steel-200);border-left:4px solid var(--orange);}
.product-variation-summary h2{font-size:1rem;line-height:1.3;margin:0 0 12px;max-width:none;}
.product-variation-summary ul{list-style:none;margin:0;padding:0;display:grid;gap:8px;}
.product-variation-summary li{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:10px 0;border-top:1px solid var(--steel-200);font-size:.9rem;line-height:1.4;}
.product-variation-summary li:first-child{border-top:0;padding-top:0;}
.product-variation-summary small{font-family:var(--font-mono);color:var(--muted);font-size:.72rem;white-space:nowrap;}
.product-variable-form .variations{width:100%;margin:16px 0;border-collapse:separate;border-spacing:0 10px;}
.product-variable-form .variations th,.product-variable-form .variations td{display:block;text-align:left;padding:0;}
.product-variable-form .variations label{display:block;font-size:.82rem;font-weight:700;margin:0 0 6px;color:var(--ink);}
.product-variable-form .variations select{width:100%;min-height:48px;border:2px solid var(--steel-200);border-radius:6px;background:#fff;padding:10px 42px 10px 12px;font:inherit;color:var(--ink);}
.product-variable-form .variations select:focus-visible{outline:3px solid rgba(184,92,0,.24);outline-offset:2px;border-color:var(--cta);}
.product-variable-form .reset_variations{display:inline-flex;min-height:44px;align-items:center;margin-top:4px;color:var(--cta);font-weight:700;}
.product-variable-form .woocommerce-variation-price{margin:12px 0;}
.product-variable-form .single_variation_wrap .quantity{display:inline-flex;margin-right:8px;}
.product-variable-form .single_add_to_cart_button{min-height:52px;border:0;border-radius:6px;background:var(--cta);color:#fff;padding:12px 22px;font:700 1rem/1 var(--font-body);cursor:pointer;}
.product-variable-form .single_add_to_cart_button:hover{background:var(--cta-hover);}
.product-variable-form .single_add_to_cart_button.disabled{cursor:not-allowed;opacity:.55;}
.product-assurance-list{display:grid;gap:9px;margin:18px 0 2px;padding:14px 0;border-top:1px solid var(--steel-200);border-bottom:1px solid var(--steel-200);}
.product-assurance-item{display:grid;grid-template-columns:18px 1fr;gap:10px;align-items:start;}
.product-assurance-mark{position:relative;width:16px;height:16px;margin-top:2px;border:1px solid var(--orange);clip-path:polygon(0 0,100% 0,100% 72%,72% 100%,0 100%);}
.product-assurance-mark::after{content:"";position:absolute;left:4px;top:2px;width:5px;height:8px;border-right:2px solid var(--orange);border-bottom:2px solid var(--orange);transform:rotate(40deg);}
.product-assurance-item strong,.product-assurance-item span{display:block;}
.product-assurance-item strong{font:700 .78rem var(--font-mono);letter-spacing:.04em;text-transform:uppercase;color:var(--steel-900);}
.product-assurance-item div>span{margin-top:2px;font-size:.76rem;line-height:1.42;color:var(--muted);}
.product-key-metrics{display:grid;grid-template-columns:repeat(3,1fr);margin-top:38px;border-top:1px solid rgba(255,255,255,.16);
  border-bottom:1px solid rgba(255,255,255,.16);}
.product-key-metric{position:relative;padding:18px 24px 20px;display:flex;align-items:baseline;justify-content:space-between;gap:16px;}
.product-key-metric+.product-key-metric{border-left:1px solid rgba(255,255,255,.16);}
.product-key-metric span{font-size:.7rem;text-transform:uppercase;letter-spacing:.14em;color:rgba(255,255,255,.72);font-weight:700;}
.product-key-metric strong{font:700 1.12rem var(--font-mono);color:var(--orange);white-space:nowrap;}

/* Interactive evidence list and conversion story. */
.product-story{position:relative;background:var(--steel-100);overflow:hidden;}
.product-story::after{content:"";position:absolute;right:-130px;top:60px;width:340px;height:340px;border:52px solid rgba(245,130,31,.10);
  transform:rotate(45deg);pointer-events:none;}
.product-story .wrap{position:relative;z-index:1;}
.product-story-heading{max-width:720px;margin-bottom:34px;}
.product-story-heading h2{font-size:clamp(2rem,4vw,3.3rem);max-width:15ch;margin:8px 0 14px;}
.product-story-heading>p:last-child{color:var(--slate);max-width:64ch;}
.product-story .eyebrow{color:var(--cta);}
.product-story-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);gap:32px;align-items:start;}
.industrial-spec-list{display:grid;gap:8px;}
.industrial-spec-item{background:var(--steel-900);color:#fff;border-left:4px solid transparent;overflow:hidden;interpolate-size:allow-keywords;
  clip-path:polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,0 100%);transition:border-color .24s ease,transform .28s cubic-bezier(.22,1,.36,1);}
.industrial-spec-item[open]{border-left-color:var(--orange);transform:translateX(4px);}
.industrial-spec-item summary{list-style:none;display:grid;grid-template-columns:minmax(120px,1fr) auto 28px;align-items:center;gap:18px;
  min-height:64px;padding:11px 18px;cursor:pointer;touch-action:manipulation;}
.industrial-spec-item summary::-webkit-details-marker{display:none;}
.industrial-spec-item summary:hover{background:rgba(255,255,255,.055);}
.industrial-spec-label{font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.13em;color:rgba(255,255,255,.72);}
.industrial-spec-item summary strong{font:700 .98rem var(--font-mono);color:#fff;text-align:right;}
.industrial-spec-toggle{position:relative;width:24px;height:24px;border:1px solid rgba(255,255,255,.32);}
.industrial-spec-toggle::before,.industrial-spec-toggle::after{content:"";position:absolute;left:5px;right:5px;top:11px;height:2px;background:var(--orange);}
.industrial-spec-toggle::after{transform:rotate(90deg);transition:transform .2s ease;}
.industrial-spec-item[open] .industrial-spec-toggle::after{transform:rotate(0);}
.industrial-spec-detail{padding:0 64px 18px 18px;color:rgba(255,255,255,.78);line-height:1.6;font-size:.9rem;
  animation:productSpecIn .22s ease-out;}
@keyframes productSpecIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
@supports selector(details::details-content){
  .industrial-spec-item::details-content{block-size:0;overflow:hidden;opacity:0;
    transition:content-visibility .28s allow-discrete,block-size .28s cubic-bezier(.22,1,.36,1),opacity .18s ease;}
  .industrial-spec-item[open]::details-content{block-size:auto;opacity:1;}
  .industrial-spec-detail{animation:none;}
}
.product-benefit-stack{display:grid;gap:12px;}
.product-benefit-stack>.eyebrow{margin:0 0 2px;}
.product-benefit-card{position:relative;background:#fff;padding:22px 24px 22px 28px;border:1px solid var(--steel-200);
  box-shadow:var(--shadow);clip-path:polygon(0 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);}
.product-benefit-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--orange);}
.product-benefit-card h3{font-size:1.05rem;margin-bottom:8px;}
.product-benefit-card p{color:var(--slate);font-size:.91rem;line-height:1.58;margin:0;}

.product-conversion-close{background:#fff;padding-top:26px;}
.product-close-panel{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:42px;align-items:center;color:#fff;
  background:linear-gradient(120deg,var(--steel-950),var(--steel-800));padding:38px 44px;
  clip-path:polygon(0 0,calc(100% - 34px) 0,100% 34px,100% 100%,34px 100%,0 calc(100% - 34px));}
.product-close-panel h2{font-size:clamp(1.7rem,3vw,2.5rem);margin:8px 0 12px;color:#fff!important;}
.product-close-panel p{color:rgba(255,255,255,.78);max-width:64ch;}
.product-close-panel .product-policy-note{font-size:.79rem;margin-bottom:0;}
.product-close-action{display:grid;gap:10px;}
.product-close-action .price{font-size:1.55rem;font-weight:800;color:#fff;}
.product-close-action .qty-row{margin:0;}
.product-close-action .qty-row input{background:#fff;min-height:52px;}
.product-close-action .qty-row .btn{min-height:52px;}
.product-close-action>.btn{width:100%;border-color:#fff;color:#fff;}
.product-close-action>.btn:hover{background:#fff;color:var(--ink);}

/* ============================================
   PRODUCT TABS — real buttons, aria-controls/aria-selected
   ============================================ */
.prod-tabs{border-bottom:1px solid var(--line);display:flex;gap:4px;flex-wrap:wrap;}
.prod-tabs button{background:none;border:none;padding:14px 18px;font-weight:700;font-size:.92rem;
  color:var(--muted);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px;}
.prod-tabs button[aria-selected="true"]{color:var(--ink);border-bottom-color:var(--orange);}
.tab-panel{padding:26px 0;display:none;}
.tab-panel.active{display:block;}
.tab-panel h3{font-size:1.1rem;font-weight:800;margin:18px 0 10px;}
.tab-panel h3:first-child{margin-top:0;}
.tab-panel p{color:var(--slate);line-height:1.7;margin:0 0 14px;}
.spec-table{width:100%;border-collapse:collapse;font-size:.92rem;}
.spec-table tr{border-bottom:1px solid var(--line);}
.spec-table td{padding:10px 8px;}
.spec-table td:first-child{color:var(--muted);font-weight:600;width:40%;}
.spec-table td:last-child{font-family:var(--font-mono);color:var(--ink);}
.box-list{list-style:none;margin:0;padding:0;display:grid;gap:8px;}
.box-list li{display:flex;gap:8px;color:var(--slate);font-size:.94rem;}
.box-list li::before{content:"\2713";color:var(--orange);font-weight:800;}

/* ============================================
   COMPATIBILITY PANEL ("This fits")
   ============================================ */
.compat-panel{border:2px solid var(--orange);border-radius:var(--r);padding:22px 24px;background:#fff;}
.compat-panel h3{font-size:1.05rem;font-weight:800;margin:4px 0 10px;}
.compat-panel p{color:var(--slate);font-size:.92rem;margin:0;}
.compat-panel .models{font-weight:700;color:var(--ink);}
.compat-panel .ask{margin-top:12px;font-size:.85rem;color:var(--muted);}
.compat-panel .ask a{color:var(--cta);font-weight:700;}

/* ============================================
   THE LIBRARY — blog index + article
   ============================================ */
.post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.post-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  transition:.15s;display:flex;flex-direction:column;}
.post-card:hover{box-shadow:var(--shadow);transform:translateY(-2px);border-color:#d8dcdf;}
.post-card .ph{aspect-ratio:16/10;}
.post-card .body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.post-card .cat-label{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);}
.post-card h3{font-size:1.05rem;font-weight:700;line-height:1.3;}
.post-card p{color:var(--muted);font-size:.88rem;margin:0;line-height:1.5;}
.post-card .meta{font-size:.78rem;color:var(--muted);margin-top:auto;padding-top:6px;}

.article-header{max-width:78ch;margin:0 auto;text-align:left;}
.article-header .cat-label{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--orange);}
.article-header h1{font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:800;margin:10px 0 14px;line-height:1.15;}
.article-header .meta{color:var(--muted);font-size:.88rem;}
.article-featured{max-width:900px;margin:28px auto 0;border-radius:var(--r);overflow:hidden;aspect-ratio:16/9;}
.article-content{max-width:78ch;margin:0 auto;color:var(--slate);line-height:1.75;font-size:1.02rem;}
.article-content h2{font-size:1.5rem;font-weight:800;color:var(--ink);margin:36px 0 14px;}
.article-content h3{font-size:1.2rem;font-weight:800;color:var(--ink);margin:28px 0 12px;}
.article-content p{margin:0 0 18px;}
.article-content ul,.article-content ol{margin:0 0 18px;padding-left:22px;}
.article-content img{border-radius:var(--r);margin:20px 0;}
.article-content a{color:var(--cta);font-weight:700;}
.article-content blockquote{border-left:3px solid var(--orange);padding:4px 0 4px 18px;
  color:var(--ink);font-style:italic;margin:24px 0;}
.article-tags{max-width:78ch;margin:30px auto 0;display:flex;gap:8px;flex-wrap:wrap;}
.article-tags a{font-size:.78rem;font-weight:700;color:var(--slate);border:1px solid var(--line);
  border-radius:20px;padding:5px 12px;}
.article-tags a:hover{border-color:var(--orange);color:var(--orange);}
.author-box{max-width:78ch;margin:36px auto 0;display:flex;gap:14px;align-items:center;
  background:var(--paper);border-radius:var(--r);padding:18px 20px;}
.author-box .photo{width:52px;height:52px;border-radius:50%;flex:0 0 auto;background:
    repeating-linear-gradient(135deg,#eceff1 0 8px,#e6eaec 8px 16px);}
.author-box .photo img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.author-box .name{font-weight:800;font-size:.92rem;}
.author-box .role{color:var(--muted);font-size:.8rem;}

/* ============================================
   WOOCOMMERCE CORE PAGES — cart / checkout / thank-you
   Re-skins WooCommerce's own default markup with brand tokens rather than
   replacing its templates outright (amalgum-cart-checkout-brief.md).
   Selectors below are WooCommerce's real, stable class/ID names.
   ============================================ */
.cart-hero{position:relative;overflow:hidden;color:var(--white);background:linear-gradient(120deg,var(--steel-950),var(--steel-800));border-bottom:1px solid var(--orange);}
.cart-hero::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.32;background:repeating-linear-gradient(118deg,transparent 0 34px,rgba(255,255,255,.05) 35px 36px);}
.cart-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);gap:54px;align-items:end;padding-top:52px;padding-bottom:48px;}
.cart-hero h1{max-width:13ch;margin:8px 0 14px;color:var(--white);font-size:clamp(2.2rem,5vw,4rem);line-height:1.02;}
.cart-hero p:last-child{max-width:62ch;color:rgba(255,255,255,.76);}
.cart-progress ol{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin:0;padding:0;list-style:none;border:1px solid rgba(255,255,255,.2);}
.cart-progress li{min-height:70px;padding:14px 16px;color:rgba(255,255,255,.62);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;border-left:1px solid rgba(255,255,255,.16);}
.cart-progress li:first-child{border-left:0;}
.cart-progress li span{display:block;margin-bottom:6px;color:var(--orange);font:700 .72rem var(--font-mono);}
.cart-progress li.is-current{color:var(--white);background:rgba(245,130,31,.12);box-shadow:inset 0 -3px 0 var(--orange);}
.cart-page-body{padding:52px 0 58px;background:var(--paper);}
.cart-page-body.has-items .woocommerce{display:block;}
.cart-page-body.has-items .woocommerce-notices-wrapper{grid-column:1/-1;}
.cart-page-body.has-items .kadence-woo-cart-form-wrap{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(310px,.72fr);gap:28px;align-items:start;}
.cart-page-body.has-items .kadence-woo-cart-form-wrap::before,
.cart-page-body.has-items .kadence-woo-cart-form-wrap::after{display:none!important;content:none!important;}
.cart-page-body.has-items .woocommerce-cart-form,.cart-page-body.has-items .cart-collaterals{float:none!important;width:auto!important;}
.cart-page-body.has-items .kadence-woo-cart-form-wrap>form{grid-column:1;grid-row:1;padding-right:0!important;}
.cart-page-body.has-items .kadence-woo-cart-form-wrap>.cart-collaterals{grid-column:2;grid-row:1;}
.cart-page-body.has-items .cart-collaterals .cart_totals{float:none!important;width:100%!important;}
.cart-page-body.is-empty .woocommerce{max-width:820px;margin:0 auto;text-align:center;}
.cart-page-body .woocommerce:has(.cart-empty-copy){display:block;max-width:820px;margin:0 auto;text-align:center;}
.cart-page-body .return-to-shop{display:none;}
.cart-page-body.is-empty .cart-empty.woocommerce-info{margin:0;padding:0;border:0;background:transparent;box-shadow:none;}
.cart-page-body .woocommerce:has(.cart-empty-copy) .cart-empty.woocommerce-info{margin:0;padding:0;border:0;background:transparent;box-shadow:none;}
.cart-page-body .woocommerce:has(.cart-empty-copy) .cart-empty.woocommerce-info::before{display:none;}
.cart-page-body.is-empty .cart-empty.woocommerce-info::before{display:none;}
.cart-empty-copy{position:relative;padding:42px;background:var(--white);border-left:5px solid var(--orange);box-shadow:var(--shadow);clip-path:polygon(0 0,calc(100% - 24px) 0,100% 24px,100% 100%,0 100%);}
.cart-empty-copy h2{margin:8px 0 10px;font-size:clamp(1.8rem,4vw,2.7rem);}
.cart-empty-copy>p:not(.eyebrow):not(.cart-empty-actions){max-width:56ch;margin:0 auto;color:var(--slate);font-size:.98rem;line-height:1.6;}
.cart-empty-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:22px;}
.cart-empty-actions .btn{min-height:48px;}
.cart-page-body .woocommerce-cart-form{overflow:hidden;padding:0;background:var(--white);border:1px solid var(--line);border-top:4px solid var(--orange);box-shadow:0 12px 34px rgba(24,30,34,.09);}
.cart-page-body .cart-summary{padding:22px 26px 18px;background:var(--white);border-bottom:1px solid var(--line);}
.cart-page-body .cart-summary h2{margin:0;color:var(--ink);font-size:clamp(1.45rem,2.3vw,2rem);line-height:1.15;}
.cart-page-body .woocommerce table.shop_table{margin:0;border:0;border-radius:0;}
.cart-page-body .woocommerce-cart-form table.shop_table{table-layout:fixed;}
.cart-page-body .woocommerce-cart-form table.shop_table th{padding:14px 12px;background:var(--steel-900);color:rgba(255,255,255,.8);font-size:.72rem;letter-spacing:.09em;}
.cart-page-body .woocommerce-cart-form th.product-remove{width:58px;}
.cart-page-body .woocommerce-cart-form th.product-thumbnail{width:94px;}
.cart-page-body .woocommerce-cart-form th.product-price{width:118px;}
.cart-page-body .woocommerce-cart-form th.product-quantity{width:94px;text-align:center;}
.cart-page-body .woocommerce-cart-form th.product-subtotal{width:128px;text-align:right;}
.cart-page-body .woocommerce-cart-form table.shop_table td{padding:20px 12px;vertical-align:middle;border-color:var(--line);}
.cart-page-body .woocommerce td.product-name a{display:inline-flex;align-items:center;min-height:44px;color:var(--ink);font-weight:800;}
.cart-page-body .woocommerce td.product-thumbnail img{display:block;width:70px;border:1px solid var(--line);background:var(--steel-100);}
.cart-page-body .woocommerce td.product-price,
.cart-page-body .woocommerce td.product-subtotal{font-variant-numeric:tabular-nums;white-space:nowrap;}
.cart-page-body .woocommerce td.product-subtotal{text-align:right;font-weight:800;color:var(--ink);}
.cart-page-body .woocommerce td.product-quantity{text-align:center;}
.cart-page-body .woocommerce td.product-remove a.remove{display:inline-flex!important;align-items:center;justify-content:center;width:44px!important;height:44px!important;border:1px solid rgba(176,36,36,.3);border-radius:50%;background:#fff!important;color:var(--danger)!important;font-size:1.25rem!important;line-height:1!important;transition:background .18s ease,color .18s ease,border-color .18s ease;touch-action:manipulation;}
.cart-page-body .woocommerce td.product-remove a.remove:hover,.cart-page-body .woocommerce td.product-remove a.remove:focus-visible{border-color:var(--danger);background:var(--danger)!important;color:#fff!important;}
.cart-page-body .woocommerce .quantity .qty{width:68px;min-width:68px;min-height:48px;border:1px solid var(--steel-300);border-radius:var(--r-sm);background:#fff;text-align:center;font-weight:700;}
.cart-page-body .woocommerce td.actions{padding:18px 22px!important;background:var(--steel-100);border-top:1px solid var(--line);}
.cart-page-body .woocommerce td.actions .coupon{display:flex;gap:10px;}
.cart-page-body .woocommerce td.actions .coupon .input-text{min-height:48px!important;width:190px!important;border:1px solid var(--steel-300)!important;border-radius:var(--r-sm)!important;background:#fff;}
.cart-page-body .woocommerce td.actions .button,
.cart-page-body .woocommerce .shipping-calculator-button{display:inline-flex!important;align-items:center;justify-content:center;min-height:48px!important;touch-action:manipulation;}
.cart-page-body .woocommerce td.actions .coupon .button{min-width:136px;white-space:nowrap;}
.cart-page-body .woocommerce td.actions>button[name="update_cart"]{float:right;}
.cart-page-body .woocommerce .cart_totals{padding:26px;border:1px solid var(--line);border-top:4px solid var(--orange);border-radius:0;box-shadow:0 12px 34px rgba(24,30,34,.09);clip-path:none;}
.cart-page-body .woocommerce .cart_totals h2{margin:0 0 18px;padding-bottom:14px;border-bottom:1px solid var(--line);font-size:1.45rem;}
.cart-page-body .woocommerce .cart_totals table th{background:transparent;color:var(--muted);}
.cart-page-body .woocommerce .cart_totals table td{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums;}
.cart-page-body .woocommerce a.checkout-button{display:flex!important;justify-content:center;align-items:center;min-height:52px;margin-top:18px!important;}
.cart-trust-row{margin-top:18px;padding-top:16px;border-top:1px solid var(--line);font-size:.82rem;line-height:1.5;color:var(--muted);}
.cart-payment-options{display:flex;gap:8px;align-items:center;margin-bottom:8px;color:var(--ink);font-weight:800;}
.cart-trust-row p{margin:0 0 10px;}
.cart-trust-row>a{display:inline-flex;align-items:center;min-height:48px;color:var(--cta);font-weight:800;}
.cart-add-ons{background:var(--white);}
.cart-add-ons-heading{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:28px;}
.cart-add-ons-heading h2{margin-top:8px;font-size:clamp(1.8rem,4vw,2.7rem);}
.cart-add-ons-heading>p{max-width:52ch;color:var(--muted);}
.cart-add-on-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.cart-add-on-card{position:relative;min-height:250px;padding:26px 26px 24px;background:var(--steel-900);color:var(--white);border-left:4px solid var(--orange);clip-path:polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);transition:transform .22s ease,background .22s ease;}
.cart-add-on-card:hover{transform:translateY(-3px);background:var(--steel-800);}
.cart-add-on-label{margin:0 0 24px;color:var(--orange);font:700 .7rem var(--font-mono);letter-spacing:.12em;text-transform:uppercase;}
.cart-add-on-card h3{margin:0 0 10px;color:var(--white);font-size:1.3rem;}
.cart-add-on-card>p:not(.cart-add-on-label){margin:0 0 24px;color:rgba(255,255,255,.72);line-height:1.6;}
.cart-add-on-card>a{position:absolute;left:26px;right:26px;bottom:12px;display:flex;align-items:center;min-height:48px;color:var(--orange);font-weight:800;touch-action:manipulation;}
.cart-add-on-card>a:hover{color:var(--white);}
.woocommerce table.shop_table{border-collapse:collapse;width:100%;border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;}
.woocommerce table.shop_table th{background:var(--paper);text-align:left;font-size:.78rem;
  font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);padding:12px 14px;}
.woocommerce table.shop_table td{padding:14px;border-top:1px solid var(--line);}
.woocommerce table.shop_table td.product-remove a{color:var(--danger);font-weight:800;}
.woocommerce td.actions .button,
.woocommerce .cart-collaterals .button,
.woocommerce #place_order,
.woocommerce a.checkout-button,
.woocommerce input.button,
.woocommerce button.button{
  background:var(--cta)!important;color:#fff!important;border-radius:var(--r-sm)!important;
  font-weight:700!important;padding:13px 22px!important;border:none!important;
  text-transform:none!important;font-size:.95rem!important;}
.woocommerce td.actions .button:hover,
.woocommerce #place_order:hover,
.woocommerce a.checkout-button:hover{background:var(--cta-hover)!important;}
.woocommerce .cart_totals,
.woocommerce #order_review{background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:20px;}
.woocommerce .cart_totals table,
.woocommerce table.woocommerce-checkout-review-order-table{border:none;}
.woocommerce .cart_totals .order-total .amount{font-weight:800;font-size:1.2rem;color:var(--ink);}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea{
  border:1px solid var(--line)!important;border-radius:var(--r-sm)!important;
  padding:11px 14px!important;font-family:inherit!important;}
.woocommerce form .form-row input.input-text:focus{outline:none!important;border-color:var(--orange)!important;
  box-shadow:0 0 0 3px rgba(245,130,31,.25)!important;}
.woocommerce-checkout #payment{background:var(--paper)!important;border-radius:var(--r)!important;}
.woocommerce-checkout #payment div.payment_box{background:#fff!important;border:1px solid var(--line)!important;
  border-radius:var(--r-sm)!important;}
.woocommerce-message,.woocommerce-info{border-top-color:var(--orange)!important;}
.woocommerce-message::before,.woocommerce-info::before{color:var(--orange)!important;}
.woocommerce-error{border-top-color:var(--danger)!important;}
.woocommerce-error::before{color:var(--danger)!important;}
.woocommerce-order-details,.woocommerce-customer-details{background:#fff;border:1px solid var(--line);
  border-radius:var(--r);padding:20px;margin-bottom:18px;}

/* ============================================
   CHECKOUT — page-checkout.php
   Same funnel-hero/progress language as Cart. Uses WooCommerce's native
   classic [woocommerce_checkout] shortcode markup (col2-set customer
   details + order_review), re-skinned rather than replaced.
   ============================================ */
.checkout-hero{position:relative;overflow:hidden;color:var(--white);background:linear-gradient(120deg,var(--steel-950),var(--steel-800));border-bottom:1px solid var(--orange);}
.checkout-hero::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.32;background:repeating-linear-gradient(118deg,transparent 0 34px,rgba(255,255,255,.05) 35px 36px);}
.checkout-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);gap:54px;align-items:end;padding-top:52px;padding-bottom:48px;}
.checkout-hero h1{max-width:15ch;margin:8px 0 14px;color:var(--white);font-size:clamp(2.2rem,5vw,4rem);line-height:1.02;}
.checkout-hero p:last-child{max-width:62ch;color:rgba(255,255,255,.76);}
.checkout-progress ol{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin:0;padding:0;list-style:none;border:1px solid rgba(255,255,255,.2);}
.checkout-progress li{min-height:70px;padding:14px 16px;color:rgba(255,255,255,.62);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;border-left:1px solid rgba(255,255,255,.16);}
.checkout-progress li:first-child{border-left:0;}
.checkout-progress li span{display:block;margin-bottom:6px;color:var(--orange);font:700 .72rem var(--font-mono);}
.checkout-progress li.is-current{color:var(--white);background:rgba(245,130,31,.12);box-shadow:inset 0 -3px 0 var(--orange);}
.checkout-progress li.is-done{color:rgba(255,255,255,.85);}
.checkout-progress li.is-done span{font-size:1rem;}

.checkout-page-body{padding:52px 0 58px;background:var(--paper);}
.checkout-page-body.is-empty .woocommerce{max-width:820px;margin:0 auto;}
.checkout-empty-copy{position:relative;max-width:820px;margin:0 auto;padding:42px;text-align:center;background:var(--white);border-left:5px solid var(--orange);box-shadow:var(--shadow);clip-path:polygon(0 0,calc(100% - 24px) 0,100% 24px,100% 100%,0 100%);}
.checkout-empty-copy h2{margin:8px 0 10px;font-size:clamp(1.8rem,4vw,2.7rem);}
.checkout-empty-copy>p:not(.eyebrow):not(.checkout-empty-actions){max-width:56ch;margin:0 auto;color:var(--slate);font-size:.98rem;line-height:1.6;}
.checkout-empty-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:22px;}

/* Native classic-checkout DOM: #customer_details (col2-set) then
   #order_review_heading + #order_review as siblings of form.checkout. */
.checkout-page-body.has-items form.checkout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(390px,.8fr);gap:36px;align-items:start;max-width:1180px;margin:0 auto;}
.checkout-page-body.has-items form.checkout::before,
.checkout-page-body.has-items form.checkout::after{display:none!important;content:none!important;}
.checkout-page-body.has-items form.checkout #customer_details{grid-column:1;grid-row:1/3;}
.checkout-page-body.has-items form.checkout #order_review_heading{grid-column:2;grid-row:1;float:none!important;width:auto!important;margin:0 0 14px;padding-left:0!important;font-size:1.45rem;}
.checkout-page-body.has-items form.checkout #order_review{grid-column:2;grid-row:2;float:none!important;width:auto!important;padding-left:26px!important;}
.checkout-page-body.has-items form.checkout #customer_details{float:none!important;width:auto!important;padding-right:32px;padding-left:32px;}
.checkout-page-body .col2-set{display:block;}
.checkout-page-body .col2-set .col-1,
.checkout-page-body .col2-set .col-2{float:none!important;width:100%!important;}
.checkout-page-body .col2-set .col-2{margin-top:30px;padding-top:26px;border-top:1px solid var(--line);}
.checkout-page-body #customer_details{background:var(--white);padding:32px;border:1px solid var(--line);border-top:4px solid var(--orange);box-shadow:0 12px 34px rgba(24,30,34,.09);}
.checkout-page-body #customer_details h3{margin:0 0 22px;font-size:1.4rem;}
.checkout-page-body .woocommerce form .form-row{margin:0 0 18px;}
.checkout-page-body .woocommerce form .form-row label{margin-bottom:7px;color:var(--ink);font-size:.84rem;font-weight:700;}
.checkout-page-body #order_review{overflow:hidden;padding:26px;border:1px solid var(--line);border-top:4px solid var(--orange);border-radius:0;box-shadow:0 12px 34px rgba(24,30,34,.09);clip-path:none;}
.checkout-page-body #order_review_heading{padding:0 2px;}
.checkout-page-body #order_review table{table-layout:fixed;margin:0 0 22px;}
.checkout-page-body #order_review table th,
.checkout-page-body #order_review table td{padding:14px 10px;vertical-align:top;}
.checkout-page-body #order_review table th.product-name{width:68%;}
.checkout-page-body #order_review table th.product-total,
.checkout-page-body #order_review table td.product-total,
.checkout-page-body #order_review table tfoot td{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums;}
.checkout-page-body #order_review table .product-name{overflow-wrap:anywhere;}
.checkout-page-body #payment{margin:0 -26px -26px;padding:22px 26px 26px!important;border-top:1px solid var(--line);}
.checkout-page-body .woocommerce-form-coupon-toggle{max-width:1180px;margin:0 auto 24px;}
.checkout-page-body form.checkout_coupon{max-width:1180px;margin:0 auto 28px!important;}
.checkout-page-body #place_order{width:100%!important;display:flex!important;justify-content:center;align-items:center;min-height:52px;margin-top:18px!important;}
.checkout-page-body .woocommerce form .form-row input.input-text,
.checkout-page-body .woocommerce form .form-row select,
.checkout-page-body .woocommerce form .form-row textarea,
.checkout-page-body .select2-container .select2-selection--single{min-height:48px;}
.checkout-page-body .select2-container .select2-selection--single{display:flex;align-items:center;border:1px solid var(--line);border-radius:var(--r-sm);}
.checkout-page-body .select2-container--default .select2-selection--single .select2-selection__arrow{top:10px;right:8px;}
.checkout-page-body .woocommerce form .form-row.woocommerce-invalid label{color:var(--danger);}
.checkout-page-body .woocommerce form .form-row.woocommerce-invalid input.input-text,
.checkout-page-body .woocommerce form .form-row.woocommerce-invalid .select2-selection{border-color:var(--danger)!important;box-shadow:0 0 0 3px rgba(180,35,24,.12)!important;}
.checkout-trust-row{margin-top:18px;padding-top:16px;border-top:1px solid var(--line);font-size:.82rem;line-height:1.5;color:var(--muted);}
.checkout-payment-options{display:flex;gap:8px;align-items:center;margin-bottom:8px;color:var(--ink);font-weight:800;}
.checkout-trust-row p{margin:0 0 10px;}
.checkout-trust-row>a{color:var(--cta);font-weight:800;}

/* Order received: WooCommerce still owns the order data and status. */
.checkout-page-body.is-order-received{background:linear-gradient(180deg,var(--paper) 0,var(--paper) 62%,var(--white) 62%);}
.checkout-page-body.is-order-received .woocommerce{max-width:980px;margin:0 auto;}
.checkout-page-body.is-order-received .woocommerce-order>p:first-child{position:relative;margin:0 0 24px;padding:24px 28px 24px 76px;background:var(--white);border:1px solid var(--line);border-left:5px solid var(--success);box-shadow:var(--shadow);color:var(--ink);font-size:1rem;font-weight:800;line-height:1.5;}
.checkout-page-body.is-order-received .woocommerce-order>p:first-child::before{content:"";position:absolute;left:25px;top:50%;width:28px;height:15px;border-left:4px solid var(--success);border-bottom:4px solid var(--success);transform:translateY(-65%) rotate(-45deg);}
.checkout-page-body.is-order-received .woocommerce-order-overview{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;margin:0 0 32px!important;padding:1px!important;background:var(--line);box-shadow:var(--shadow);}
.checkout-page-body.is-order-received .woocommerce-order-overview li{float:none!important;width:auto!important;margin:0!important;padding:18px!important;background:var(--white);border:0!important;color:var(--muted);font-size:.7rem;line-height:1.45;}
.checkout-page-body.is-order-received .woocommerce-order-overview li strong{margin-top:6px;color:var(--ink);font-size:.95rem;line-height:1.35;overflow-wrap:anywhere;}
.checkout-page-body.is-order-received .woocommerce-order-details,
.checkout-page-body.is-order-received .woocommerce-customer-details{margin:0 0 24px;padding:26px;border:0;border-top:4px solid var(--orange);border-radius:0;box-shadow:var(--shadow);}
.checkout-page-body.is-order-received .woocommerce-order-details__title,
.checkout-page-body.is-order-received .woocommerce-column__title{margin:0 0 16px;font-size:1.45rem;}
.checkout-page-body.is-order-received .woocommerce-order-details table{margin:0;border:0;}
.checkout-page-body.is-order-received .woocommerce-order-details table th,
.checkout-page-body.is-order-received .woocommerce-order-details table td{padding:14px 10px;}
.checkout-page-body.is-order-received .woocommerce-customer-details address{padding:0;border:0;line-height:1.7;}
.order-next-steps{display:grid;grid-template-columns:auto 1fr;gap:20px;align-items:start;margin:0 0 32px;padding:28px;background:var(--steel-900);color:var(--white);border-left:5px solid var(--orange);clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,0 100%);}
.order-next-steps-mark{display:grid;place-items:center;width:52px;height:52px;background:var(--orange);color:var(--steel-950);}
.order-next-steps-mark svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round;}
.order-next-steps .eyebrow{margin:0 0 7px;}
.order-next-steps h2{margin:0 0 10px;color:var(--white);font-size:clamp(1.45rem,3vw,2rem);}
.order-next-steps p:not(.eyebrow){max-width:68ch;margin:0 0 18px;color:rgba(255,255,255,.76);line-height:1.65;}
.order-next-steps strong{color:var(--white);}
.order-next-steps .btn{min-height:48px;}

@media(max-width:1100px){
  .checkout-page-body.has-items form.checkout{grid-template-columns:1fr;max-width:780px;}
  .checkout-page-body.has-items form.checkout #customer_details,
  .checkout-page-body.has-items form.checkout #order_review_heading,
  .checkout-page-body.has-items form.checkout #order_review{grid-column:1;grid-row:auto;}
}

@media(max-width:980px){
  .cart-hero-grid,.cart-page-body.has-items .woocommerce{grid-template-columns:1fr;}
  .cart-page-body.has-items .kadence-woo-cart-form-wrap{grid-template-columns:1fr;}
  .cart-page-body.has-items .kadence-woo-cart-form-wrap>form{grid-column:1;grid-row:1;}
  .cart-page-body.has-items .kadence-woo-cart-form-wrap>.cart-collaterals{grid-column:1;grid-row:2;}
  .cart-add-on-grid{grid-template-columns:repeat(2,1fr);}
  .cart-add-on-card:last-child{grid-column:1/-1;}
  .checkout-hero-grid{grid-template-columns:1fr;}
  .checkout-page-body.has-items form.checkout{grid-template-columns:1fr;}
  .checkout-page-body.has-items form.checkout #customer_details,
  .checkout-page-body.has-items form.checkout #order_review_heading,
  .checkout-page-body.has-items form.checkout #order_review{grid-column:1;grid-row:auto;}
}
/* The phone action is useful on wide screens, but the menu takes priority once
   the two can no longer sit together without crowding. */
@media(max-width:1500px){
  .navbar-actions{display:none;}
}

/* Switch the navigation before its long labels can collide. Page layouts keep
   their narrower 760px breakpoint below. */
@media(max-width:1200px){
  nav.main{display:none;}
  .burger{display:inline-flex;align-items:center;justify-content:center;min-width:48px;min-height:48px;}
  .navbar .cta-inline{display:none;}
  .navbar-row .wrap{position:relative;flex-wrap:wrap;}
  .navbar.is-open nav.main{display:block;width:100%;order:10;padding-top:6px;}
  .navbar.is-open nav.main ul{flex-direction:column;align-items:stretch;gap:0;width:100%;}
  .navbar.is-open nav.main .primary-menu>li{display:flex;}
  .navbar.is-open nav.main a{padding:13px 4px;border-bottom:1px solid rgba(255,255,255,.06);width:100%;}
  .navbar.is-open nav.main a::after{display:none;}
  .navbar.is-open .menu-item-has-children{display:grid;grid-template-columns:1fr auto;}
  .navbar.is-open .submenu-toggle{padding:12px;}
  .navbar.is-open nav.main .sub-menu{position:static;width:100%;grid-column:1/-1;box-shadow:none;border:0;
    border-left:2px solid var(--orange);border-radius:0;background:rgba(255,255,255,.05);padding:0 0 0 12px;}
  .navbar.is-open .shop-menu-item:hover .sub-menu,.navbar.is-open .shop-menu-item:focus-within .sub-menu{display:none;}
  .navbar.is-open .shop-menu-item.is-submenu-open .sub-menu{display:flex;}
  body .navbar.is-open nav.main .sub-menu a{color:#fff!important;background:transparent;border-radius:0;}
  .burger[aria-expanded="true"] svg{transform:rotate(90deg);transition:transform .2s;}
}

@media(max-width:760px){
  .cart-hero-grid{gap:28px;padding-top:38px;padding-bottom:34px;}
  .cart-progress ol{grid-template-columns:1fr;}
  .cart-progress li{min-height:52px;display:flex;align-items:center;gap:10px;border-left:0;border-top:1px solid rgba(255,255,255,.16);}
  .cart-progress li:first-child{border-top:0;}
  .cart-progress li span{display:inline;margin:0;}
  .cart-page-body{padding:34px 0 42px;}
  .cart-empty-copy{padding:30px 20px;}
  .cart-add-ons-heading{display:block;}
  .cart-add-ons-heading>p{margin-top:12px;}
  .cart-add-on-grid{grid-template-columns:1fr;}
  .cart-add-on-card:last-child{grid-column:auto;}
  .cart-page-body .woocommerce td.actions .coupon{float:none!important;width:100%;margin-bottom:10px;}
  .cart-page-body .woocommerce td.actions .coupon .input-text{width:100%!important;}
  .cart-page-body .woocommerce td.actions>button[name="update_cart"]{float:none;width:100%;}
  .cart-page-body .woocommerce-cart-form table.shop_table{table-layout:auto;}
  .cart-page-body .woocommerce-cart-form table.shop_table td{padding:14px 18px;}
  .cart-page-body .woocommerce-cart-form td.product-remove{padding-top:18px;}
  .cart-page-body .woocommerce-cart-form td.product-price,
  .cart-page-body .woocommerce-cart-form td.product-subtotal,
  .cart-page-body .woocommerce-cart-form td.product-quantity{text-align:right;}
  .checkout-hero-grid{gap:28px;padding-top:38px;padding-bottom:34px;}
  .checkout-progress ol{grid-template-columns:1fr;}
  .checkout-progress li{min-height:52px;display:flex;align-items:center;gap:10px;border-left:0;border-top:1px solid rgba(255,255,255,.16);}
  .checkout-progress li:first-child{border-top:0;}
  .checkout-progress li span{display:inline;margin:0;}
  .checkout-page-body{padding:34px 0 42px;}
  .checkout-page-body.has-items form.checkout #customer_details{padding:24px 20px;}
  .checkout-page-body.has-items form.checkout #order_review{padding:22px 18px!important;}
  .checkout-page-body #payment{margin:0 -18px -22px;padding:20px 18px 22px!important;}
  .checkout-page-body .woocommerce form .form-row-first,
  .checkout-page-body .woocommerce form .form-row-last{float:none!important;width:100%!important;}
  .checkout-empty-copy{padding:30px 20px;}
  .checkout-page-body #customer_details{padding:20px;}
  .checkout-page-body.is-order-received .woocommerce-order-overview{grid-template-columns:1fr 1fr;}
  .checkout-page-body.is-order-received .woocommerce-order>p:first-child{padding:22px 20px 22px 66px;}
  .checkout-page-body.is-order-received .woocommerce-order>p:first-child::before{left:22px;}
  .order-next-steps{grid-template-columns:1fr;padding:24px 20px;}
}

@media(max-width:430px){
  .checkout-page-body.is-order-received .woocommerce-order-overview{grid-template-columns:1fr;}
}

/* ============================================
   HEADING COLOUR LOCK
   Kadence's global styles print as :root :where(h1,h2,h3...){color:...}
   which outranks our plain h1,h2,h3 selector on specificity even though
   this file loads later. Force brand colours on our dark/brand sections
   explicitly so headings never fall back to Kadence's blue link/heading
   colour.
   ============================================ */
body .hero h1,
body .hero h1 .hl,
body .hero-art .panel b,
body .workshops h2,
body .workshops h3,
body .repair-card h2,
body .waband h2,
body footer.site .brand .name{color:#fff!important;}
body .hero h1 .hl{color:var(--orange)!important;}
body .waband h2{color:#231a10!important;}
body .cat h3,
body .prod h3,
body .capability h3,
body .team-card h3,
body .sec-head h2,
body .split .copy h2,
body .gas h2,
body .channel-card h3,
body .mini-team-card h3,
body .details-col h3,
body .filter-group h3,
body .zone2 h2,
body .zone2 h3,
body .faq-item summary,
body .buybox h1,
body .tab-panel h3,
body .compat-panel h3,
body .post-card h3,
body .article-header h1,
body .article-content h2,
body .article-content h3{color:var(--ink)!important;}
body .hero--compact h1,
body .hero--static h1{color:#fff!important;}
body nav.main a{color:#fff!important;}
body nav.main a:hover,
body nav.main a[aria-current="page"]{color:var(--orange)!important;}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:980px){
  .hero h1{font-size:2.5rem;}
  .cats,.rgrid,.prod-grid{grid-template-columns:repeat(2,1fr);}
  .fgrid{grid-template-columns:1fr 1fr;}
  nav.main a{padding:14px 7px;font-size:.78rem;}
  .navbar .cta-inline{display:none;}
  .hdr{gap:16px;}
  .header-whatsapp{font-size:0;width:40px;height:40px;padding:0;display:grid;place-items:center;}
  .header-whatsapp::after{content:"WA";font-size:.7rem;}
  .capability-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .split{grid-template-columns:1fr;}
  .split .img-slot{order:-1;aspect-ratio:16/9;}
  .channel-grid,.mini-team-grid,.details-grid{grid-template-columns:1fr;}
  .cat-layout{grid-template-columns:1fr;}
  .product-hero-row,.product-stage .product-hero-row{grid-template-columns:1fr;}
  .product-purchase-card{position:static;}
  .product-story-grid{grid-template-columns:1fr;}
  .product-close-panel{grid-template-columns:1fr;}
  .prod-tabs{overflow-x:auto;flex-wrap:nowrap;}
  .post-grid{grid-template-columns:1fr;}
}
@media(max-width:760px){
  nav.main{display:none;}
  .burger{display:inline-flex;}
  .navbar .cta-inline{display:none;}
  .hero::before{
    width:100%;
    background-image:
      linear-gradient(90deg,rgba(18,15,16,.28) 0%,rgba(18,15,16,.66) 72%,#121010 100%),
      linear-gradient(180deg,rgba(18,15,16,.16) 0%,rgba(18,15,16,.48) 100%),
      url('../images/generated/homepage-hero-subtle-welding-sparks.webp');
    background-size:cover;
    background-position:14% bottom;
    opacity:.68;
  }
  footer.site::before{top:-48px;bottom:-48px;background-position:12% bottom;background-size:175% auto;opacity:.14;}

  /* Mobile menu — opened by the burger button (assets/js/nav.js) */
  .navbar-row .wrap{position:relative;flex-wrap:wrap;}
  .navbar.is-open nav.main{display:block;}
  .navbar.is-open nav.main{width:100%;order:10;padding-top:6px;}
  .navbar.is-open nav.main ul{flex-direction:column;gap:0;width:100%;}
  .navbar.is-open nav.main a{padding:13px 4px;border-bottom:1px solid rgba(255,255,255,.06);width:100%;}
  .navbar.is-open nav.main a::after{display:none;}
  .navbar.is-open .menu-item-has-children{display:grid;grid-template-columns:1fr auto;}
  .navbar.is-open .submenu-toggle{padding:12px;}
  .navbar.is-open nav.main .sub-menu{position:static;width:100%;grid-column:1/-1;box-shadow:none;border:0;
    border-left:2px solid var(--orange);border-radius:0;background:rgba(255,255,255,.05);padding:0 0 0 12px;}
  .navbar.is-open .shop-menu-item:hover .sub-menu,.navbar.is-open .shop-menu-item:focus-within .sub-menu{display:none;}
  .navbar.is-open .shop-menu-item.is-submenu-open .sub-menu{display:flex;}
  body .navbar.is-open nav.main .sub-menu a{color:#fff!important;background:transparent;border-radius:0;}
  .burger[aria-expanded="true"] svg{transform:rotate(90deg);transition:transform .2s;}

  .hdr{display:grid;grid-template-columns:1fr auto;height:auto;min-height:84px;gap:8px 12px;padding-top:14px;padding-bottom:16px;}
  .hdr .actions{gap:4px;}
  .brand .logo-img{height:70px;}
  .live-search{grid-column:1/-1;grid-row:2;max-width:none;width:100%;}
  .live-search-field{height:44px;}
  .header-whatsapp{display:none;}
  .hero .wrap{grid-template-columns:1fr;padding-top:44px;padding-bottom:48px;}
  .hero::after{width:100%;right:0;transform:skewX(0);opacity:.10;}
  .hero::before{width:100%;}
  .hero h1{font-size:2.15rem;}
  .hero p.sub{max-width:none;}
  .hero-art{display:none;}
  .wgrid,.gas .wrap{grid-template-columns:1fr;}
  .home-workshops{padding-top:64px;padding-bottom:56px;}
  .home-workshop-intro{margin-bottom:26px;}
  .home-workshop-intro h2{font-size:2.45rem;}
  .home-workshop-grid{grid-template-columns:1fr;gap:18px;}
  .home-workshop-panel,.home-workshop-panel--primary{min-height:460px;}
  .home-workshop-copy{padding:26px 22px;}
  .home-workshop-copy h3{font-size:1.75rem;}
  .home-workshop-trust{justify-content:flex-start;flex-direction:column;gap:14px;margin-top:26px;}
  .cats,.rgrid,.prod-grid{grid-template-columns:1fr;}
  .fgrid{grid-template-columns:1fr;gap:24px;}
  .sec-head{flex-direction:column;align-items:flex-start;}
  .capability-grid,.team-grid{grid-template-columns:1fr;}
  .hero--compact h1{font-size:1.9rem;}
  .hero--static h1{font-size:2rem;}
  .process-row{flex-direction:column;gap:22px;}
  .product-stage{padding-top:30px;padding-bottom:28px;}
  .product-stage .product-hero-row{gap:24px;}
  .product-machine-stage .featured{clip-path:polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));}
  .product-machine-stage .featured img{padding:12px;}
  .product-purchase-card{padding:26px 22px;clip-path:polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);}
  .product-purchase-card h1{font-size:2rem;max-width:none;}
  .product-variation-summary li{display:grid;gap:4px;}
  .product-variation-summary small{white-space:normal;}
  .product-key-metrics{grid-template-columns:1fr;margin-top:26px;}
  .product-key-metric{padding:14px 8px;}
  .product-key-metric+.product-key-metric{border-left:0;border-top:1px solid rgba(255,255,255,.16);}
  .product-story-heading h2{font-size:2rem;}
  .industrial-spec-item summary{grid-template-columns:minmax(100px,1fr) auto 24px;gap:10px;padding:10px 12px;}
  .industrial-spec-item summary strong{font-size:.84rem;white-space:normal;}
  .industrial-spec-detail{padding:0 44px 16px 12px;}
  .product-close-panel{padding:30px 24px;clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px));}
  .product-close-action .qty-row{display:grid;grid-template-columns:72px 1fr;}
}

.temp-site-image{display:block;width:100%;height:100%;min-height:260px;object-fit:cover;border-radius:inherit;background:var(--paper);}
