/* ====================================================================
   Components & inner pages — header rows, hero, cards, forms, content
   patterns. Loaded after main.css; mirrors the reference chrome.
   ==================================================================== */

/* Reference buttons are 3px radius */
.btn { border-radius: 3px; }
.btn--green { background: var(--green); border-color: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* Hero paragraph inline link */
.hero.has-banner p a { color: var(--brand); font-weight: 600; }
.hero.has-banner p a:hover { color: var(--brand-700); }

/* ---------- Topbar: links · centered search pill · lang + cart ---------- */
.topbar .container { gap: 24px; }
.topbar__links { display: flex; align-items: center; gap: 14px; font-size: 15px; white-space: nowrap; }
.topbar__links .sep { width: 1px; height: 16px; background: rgba(255,255,255,.5); }
.topbar-search { display: flex; flex: 1; max-width: 500px; margin: 0 auto; background: #fff; border-radius: 30px; overflow: hidden; height: 42px; }
.topbar-search input[type="search"] { flex: 1; border: 0; padding: 0 20px; font: inherit; font-size: 15px; outline: none; min-width: 0; background: transparent; }
.topbar-search button { border: 0; background: #fff; color: var(--ink); width: 48px; cursor: pointer; display: grid; place-items: center; border-left: 1px solid var(--border); }
.topbar-search button:hover { color: var(--brand-700); }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.lang-active { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; font-size: 15px; }

/* ---------- Header row: two-tone logo left · uppercase nav right ---------- */
.cart-btn { position: relative; color: #fff; display: inline-flex; }
.cart-btn:hover { color: #fff; opacity: .85; }
.cart-count { position: absolute; top: -7px; right: -9px; background: #fff; color: var(--navy); font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px; }

.logo { gap: 12px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-size: 24px; letter-spacing: .5px; }
.logo__name b { color: var(--navy); font-weight: 800; }
.logo__name i { color: var(--brand); font-style: normal; font-weight: 800; }
.logo__sub { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: #9aa3ad; font-weight: 600; margin-top: 2px; }

/* Nav: right-aligned, uppercase, active cyan */
.nav { margin-left: auto; gap: 26px; }
.nav > a, .nav > span > a { display: inline-block; padding: 30px 0; text-transform: uppercase; font-size: 14.5px; font-weight: 500; letter-spacing: .02em; color: var(--ink-2); }
.nav > a:hover, .nav > span > a:hover, .nav > a.active, .nav > span > a.active { color: var(--brand); }
.nav > a.has-mega::after, .dd-wrap > a.has-dd::after { content: "▾"; font-size: 10px; margin-left: 6px; color: var(--muted); }

/* Simple dropdowns */
.dd-wrap { position: relative; }
.dd-wrap > a.has-dd::after { content: "▾"; font-size: 10px; margin-left: 5px; color: var(--muted); }
.dd { position: absolute; top: 100%; left: -14px; min-width: 240px; background: #fff; border: 1px solid var(--border);
  border-radius: 6px; box-shadow: var(--shadow-lg); padding: 10px 0; display: none; z-index: 60; }
.dd-wrap:hover .dd { display: block; }
.dd a { display: block; padding: 9px 18px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.dd a:hover { color: var(--brand-700); background: var(--bg-1); }

/* Mega with 3 headed columns */
.mega--cols { width: 860px; grid-template-columns: repeat(3, 1fr); gap: 0 34px; }
.mega__col { display: flex; flex-direction: column; }
.mega__head { font-size: 13px !important; letter-spacing: .08em; text-transform: uppercase; color: var(--ink) !important;
  font-weight: 800 !important; border-bottom: 2px solid var(--brand) !important; padding-bottom: 9px !important; margin-bottom: 6px; }

/* Hamburger (mobile) */
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; cursor: pointer; padding: 9px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 3px; background: var(--ink); border-radius: 2px; }

/* ---------- USP checkmark bar (contained solid blue, single-line items) ---------- */
.usp-wrap { padding: 28px 0 8px; }
.usp-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--brand-600); border-radius: 5px; padding: 8px 10px; }
.usp { display: flex; gap: 14px; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 600; padding: 1rem; }
.usp svg { flex: none; color: #fff; }

/* Front page keeps its own advantages strip; USP bar reuses .usp-strip inside .usp-bar */

/* ---------- Page hero (landing/listing pages) ---------- */
.page-hero { position: relative; height: 315px; background-size: cover; background-position: center; display: flex; align-items: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { font-size: 40px; margin: 0; max-width: 560px; }
.page-hero--plain { background: var(--bg-1); height: auto; padding: 46px 0; }
.page-hero--plain::before { display: none; }

/* Narrow single column (articles, cases, simple pages) */
.narrow { max-width: 820px; margin: 0 auto; }
.narrow h1 { font-size: 36px; margin-bottom: 24px; }

/* ---------- Card grid (news / references / services landing) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ccard { position: relative; background: #fff; border-radius: 5px; box-shadow: 0 0 10px #ccc; overflow: hidden; transition: box-shadow .2s; }
.ccard:hover { box-shadow: 0 0 20px #ccc; }
.ccard__img { height: 200px; background-size: cover; background-position: center; background-color: var(--bg-2); position: relative; }
.ccard__badge { position: absolute; top: 10px; left: 10px; background: var(--brand); color: #fff; font-size: .9em; padding: .3rem .8rem; border-radius: 3px; }
.ccard__body { padding: 1em; }
.ccard__body h3 { font-size: 18px; margin: 0 0 8px; }
.ccard__body p { color: var(--muted); font-size: 14.5px; margin: 0; }
.ccard__link { position: absolute; inset: 0; z-index: 2; font-size: 0; }

/* Category filter pills */
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 30px; }
.filter-pills a, .filter-pills button { border: 2px solid var(--brand); background: #fff; color: var(--brand-700);
  padding: 8px 18px; border-radius: 3px; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.filter-pills a.active, .filter-pills a:hover, .filter-pills button.active, .filter-pills button:hover { background: var(--brand); color: #fff; }

/* Load more */
.load-more { text-align: center; margin-top: 44px; }

/* ---------- Floating side CTA tabs: 2 blue minis + 2 green arrow tabs ---------- */
.side-tabs { position: fixed; right: 0; bottom: 50px; z-index: 100; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.side-tab { color: #fff !important; font-weight: 500; font-size: 1rem; line-height: 1.2; transition: all .3s; }
.side-tab--mini { background: var(--brand); border-radius: 5px; padding: 12px 28px; box-shadow: 0 4px 22px rgba(0,0,0,.2); }
.side-tab--mini:hover { background: var(--brand-700); }
/* Collapsible green tabs: arrow square toggles the label open/closed */
.side-tab--green { display: flex; align-items: stretch; box-shadow: 0 4px 22px rgba(0,0,0,.25); }
.side-tab--green .arr { background: var(--green-700); width: 53px; min-height: 53px; display: grid; place-items: center;
  border: 0; cursor: pointer; padding: 0; flex: none; }
.side-tab--green .arr svg { transition: transform .3s; }
.side-tab--green.open .arr svg { transform: rotate(0deg); }
.side-tab--green:not(.open) .arr svg { transform: rotate(180deg); }
.side-tab--green .lbl { background: var(--green); color: #fff; display: flex; align-items: center;
  white-space: nowrap; overflow: hidden; max-width: 320px; padding: 1rem 1.2rem;
  transition: max-width .35s ease, padding .35s ease; }
.side-tab--green:not(.open) .lbl { max-width: 0; padding: 1rem 0; }
.side-tab--green .lbl:hover { background: var(--green-700); }

/* ---------- Forms ---------- */
.vah-form { max-width: 760px; }
.vah-form label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 6px; color: var(--ink); }
.vah-form .req::after { content: " *"; color: #d33; }
.vah-form input[type="text"], .vah-form input[type="email"], .vah-form input[type="tel"], .vah-form input[type="url"],
.vah-form select, .vah-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 3px;
  font: inherit; font-size: 15px; background: #fff; }
.vah-form textarea { min-height: 130px; resize: vertical; }
.vah-form input:focus, .vah-form textarea:focus, .vah-form select:focus { outline: 2px solid rgba(0,176,240,.35); border-color: var(--brand); }
.form-row { margin-bottom: 20px; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 20px; }
.radio-list { display: flex; flex-direction: column; gap: 9px; }
.radio-list label { font-weight: 400; display: flex; gap: 9px; align-items: center; margin: 0; }
.radio-list input { width: 17px; height: 17px; accent-color: var(--brand); }
.check-inline { display: flex; gap: 9px; align-items: flex-start; font-weight: 400 !important; }
.check-inline input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brand); }

.form-section { border-top: 2px solid var(--border); padding-top: 28px; margin-top: 34px; }
.form-section > h2 { font-size: 21px; display: flex; align-items: center; gap: 12px; }
.form-section > h2 .num { width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 16px; display: grid; place-items: center; flex: none; }
.form-hint { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

.form-banner { padding: 16px 20px; border-radius: 5px; margin-bottom: 28px; font-weight: 600; }
.form-banner--ok { background: rgba(0,204,92,.12); color: var(--green-700); border: 1px solid rgba(0,204,92,.4); }
.form-banner--err { background: rgba(220,50,50,.08); color: #b02a2a; border: 1px solid rgba(220,50,50,.35); }

/* ---------- Content patterns (company / contacts pages) ---------- */
/* Timeline (history) */
.timeline { max-width: 820px; }
.timeline__item { border-left: 3px solid var(--brand); padding: 0 0 26px 26px; position: relative; }
.timeline__item::before { content: ""; position: absolute; left: -9px; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--brand); }
.timeline__item b { font-size: 20px; color: var(--ink); display: block; margin-bottom: 6px; }

/* Alternating media/text rows (approach) */
.alt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 56px; }
.alt-row img { border-radius: var(--radius); box-shadow: var(--shadow); }
.alt-row--rev > :first-child { order: 2; }

/* Certificates (quality page) */
.certs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 760px; }
.certs a { border: 1px solid var(--border); border-radius: 5px; overflow: hidden; display: block; }
.certs a:hover { box-shadow: var(--shadow-lg); }

/* Personnel list */
.dept { margin-bottom: 44px; }
.dept > h2 { font-size: 22px; border-bottom: 2px solid var(--brand); padding-bottom: 10px; margin-bottom: 20px; }
.person { padding: 14px 0; border-bottom: 1px solid var(--border-2); }
.person b { display: block; font-size: 16px; }
.person span { color: var(--muted); font-size: 14px; display: block; margin: 2px 0 6px; }
.person a { display: inline-block; margin-right: 18px; font-size: 14.5px; }

/* Distributors */
.region { margin-bottom: 50px; }
.region > h2 { font-size: 24px; border-bottom: 2px solid var(--brand); padding-bottom: 10px; margin-bottom: 24px; }
.region h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-700); margin: 26px 0 10px; }
.dist { padding: 12px 0; border-bottom: 1px solid var(--border-2); font-size: 14.5px; }
.dist b { font-size: 15.5px; }
.anchor-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Contact page email blocks */
.contact-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-block { border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: 5px; padding: 20px 22px; }
.contact-block h3 { font-size: 17px; margin-bottom: 6px; }
.contact-block a { font-weight: 600; }

/* Footer mission strip + legal */
.footer__mission { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 34px; margin-bottom: 44px; }
.footer__mission .footer__brand p { max-width: 520px; margin: 0; }
.footer__mission .logo { color: #fff; margin-bottom: 10px; }
.footer__grid { grid-template-columns: 1fr 1fr 1fr; }
.footer__legal { display: inline-flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Front page: hero with banner photo (measured: white gradient, dark text) ---------- */
.hero.has-banner { position: relative; overflow: hidden; background: none; }
.hero.has-banner::before { display: none; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero.has-banner::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.hero.has-banner .container { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 72px; }
.hero.has-banner h1 { color: var(--ink-2); font-size: var(--h1); font-weight: var(--hw); line-height: 1.3; max-width: 600px; letter-spacing: 0; }
.hero.has-banner p { color: var(--ink-2); font-size: .9375rem; line-height: 1.6; max-width: 650px; }

/* ---------- Front page: 6 category cards in one row ---------- */
.catrow-wrap { padding: 34px 0 10px; }
.catrow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.catcard { display: flex; flex-direction: column; background: #fff; border-radius: 5px; box-shadow: 0 0 10px #ccc; overflow: hidden; transition: box-shadow .2s; text-align: center; }
.catcard:hover { box-shadow: 0 0 20px #ccc; }
.catcard__img { display: grid; place-items: center; height: 150px; padding: 14px; background: #fff; }
.catcard__img img { max-height: 100%; width: auto; object-fit: contain; }
.catcard h3 { font-size: 14.5px; text-transform: uppercase; font-weight: 500; letter-spacing: .02em; margin: auto 0 0; padding: 10px 12px 18px; color: var(--ink); line-height: 1.35; }
.catcard:hover h3 { color: var(--brand-700); }

/* ---------- Front page: industries split (text 1/3 + overlay cards 2/3) ---------- */
.ind-split { display: grid; grid-template-columns: 1fr 2fr; gap: 44px; align-items: center; }
.ind-split__text p { color: var(--ink-2); }

/* Overlay photo cards (industries / solutions) */
.ovgrid { display: grid; gap: 18px; }
.ovgrid--3 { grid-template-columns: repeat(3, 1fr); }
.ovcard { position: relative; display: flex; align-items: flex-end; min-height: 430px; border-radius: 5px; overflow: hidden;
  background-size: cover; background-position: center; }
.ovgrid--low .ovcard { min-height: 350px; }
.ovcard::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,90,150,.15) 20%, rgba(13,60,110,.72) 100%); transition: background .2s; }
.ovcard:hover::after { background: linear-gradient(180deg, rgba(20,90,150,.3) 10%, rgba(13,60,110,.82) 100%); }
.ovcard__body { position: relative; z-index: 2; padding: 24px; color: #fff; }
.ovcard__body h3 { color: #fff; text-transform: uppercase; font-size: 19px; font-weight: 600; margin: 0 0 6px; letter-spacing: .02em; }
.ovcard__body p { color: #eaf3fa; font-size: 15px; margin: 0; }

/* ---------- Front page: why choose us (gray cards) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.whycard { background: var(--bg-1); border-radius: 5px; padding: 34px 32px; display: flex; flex-direction: column; }
.whycard__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.whycard__head h3 { margin: 0; font-size: 20px; }
.whycard p { color: var(--ink-2); font-size: 15.5px; }
.whycard > a { margin-top: auto; color: var(--brand); font-weight: 600; }
.whycard > a:hover { color: var(--brand-700); }

/* ---------- Front page: "Solutions for you" 4-card row ---------- */
.solcols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.solcol { background: #fff; border-radius: 5px; box-shadow: 0 0 10px #ccc; overflow: hidden; padding-bottom: 20px; transition: box-shadow .2s; }
.solcol:hover { box-shadow: 0 0 20px #ccc; }
.solcol__img { height: 160px; background-size: cover; background-position: center; background-color: var(--bg-2); margin-bottom: 16px; }
.solcol h3 { font-size: 18px; margin: 0 16px 8px; }
.solcol p { color: var(--muted); font-size: 14px; margin: 0 16px 12px; }
.solcol .ind-link { margin: 0 16px; }

/* ---------- Shop: sidebar category tree ---------- */
.cat-tree, .cat-tree ul { list-style: none; margin: 0; padding: 0; }
.cat-tree ul { padding-left: 14px; }
.cat-tree li { margin-bottom: 4px; }
.cat-tree a { display: block; padding: 6px 0; color: var(--ink-2); font-size: 14.5px; font-weight: 600; }
.cat-tree a:hover { color: var(--brand-700); }
.cat-tree .current-cat > a { color: var(--brand-700); }
.cat-tree ul a { font-weight: 400; font-size: 14px; }

/* ---------- Shop: top-level category cards ---------- */
.topcats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 8px 0 40px; }
.topcat { display: block; border: 1px solid var(--border); border-radius: 5px; overflow: hidden; background: #fff; transition: box-shadow .2s; }
.topcat:hover { box-shadow: 0 0 10px #ccc; }
.topcat__img { display: block; height: 170px; background-size: cover; background-position: center; background-color: var(--bg-1); }
.topcat h3 { font-size: 17px; margin: 0; padding: 14px 18px; color: var(--ink); }

/* ---------- Shop: Woo loop grid + cards ---------- */
ul.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
ul.products.columns-3 { grid-template-columns: repeat(3, 1fr); }
.pcard { background: #fff; border: 1px solid var(--border); border-radius: 5px; overflow: hidden; transition: box-shadow .2s; }
.pcard:hover { box-shadow: 0 0 10px #ccc; }
.pcard__wrap { display: flex; flex-direction: column; height: 100%; color: inherit; }
.pcard__media { height: 220px; padding: 1rem; display: grid; place-items: center; border-bottom: 1px solid var(--border); background: #fff; }
.pcard__media img { max-height: 100%; width: auto; object-fit: contain; }
.pcard__title { font-size: 16px; margin: 0; padding: 14px 16px 4px; color: var(--brand-700); font-weight: 700; }
.pcard:hover .pcard__title { color: var(--brand); }
.pcard__excerpt { padding: 0 16px 16px; color: #434343; font-size: 13px; }
.pcard__excerpt ul { margin: 6px 0 0; padding-left: 16px; }
.pcard__excerpt li { margin-bottom: 3px; }

/* Result count + pagination */
.woocommerce-result-count { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
/* Pagination (measured: square, #E8ECEF borders, hover fills #008bbd) */
.shop-pagination { margin-top: 40px; text-align: center; }
.shop-pagination .page-numbers { display: inline-flex; gap: 5px; list-style: none; padding: 0; margin-bottom: 3rem; }
.shop-pagination .page-numbers li a, .shop-pagination .page-numbers li span {
  display: grid; place-items: center; border: 1px solid #E8ECEF; background: #fff;
  border-radius: 0; font-size: 14px; color: #2b2b2b; padding: .5em .6em; min-width: 38px; }
.shop-pagination .page-numbers li span.current { background: #fff; color: #2b2b2b; border: 1px solid #6E6E6E; }
.shop-pagination .page-numbers li a:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }

/* ---------- Single product (calibrated to screenshots) ---------- */
.single .breadcrumb { margin-bottom: 26px; }
.summary h1 { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.5rem); margin-bottom: 10px; }
.summary__cat { font-size: 17px; margin: 0 0 18px; }
.summary__cat a { color: var(--brand); font-weight: 400; }
.summary__desc { color: var(--ink-2); font-size: 16px; }
.summary__desc h3 { font-size: 22px; margin: 26px 0 14px; }

/* Cyan check lists (summary bullets, Included tab, why/applications) */
.checks-style ul { list-style: none; margin: 14px 0; padding: 0; }
.checks-style ul li { position: relative; padding-left: 34px; margin-bottom: 10px; }
.checks-style ul li::before { content: ""; position: absolute; left: 2px; top: 3px; width: 18px; height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300b0f0" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') no-repeat center / contain; }

/* 2-column why/applications check list */
.why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }

/* Qty + Add to Quote row (bare) */
.buy-row { margin: 26px 0 20px; }
.buy-row form.cart { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; }
.buy-row .quantity { display: inline-flex; }
.buy-row .quantity input.qty { width: 60px; height: 52px; border: 1px solid var(--bg-2); background: var(--bg-1); text-align: center; font: inherit; font-size: 16px; -moz-appearance: textfield; }
.buy-row .quantity input.qty::-webkit-outer-spin-button, .buy-row .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.buy-row .qty-btn { width: 52px; height: 52px; border: 1px solid var(--bg-2); background: var(--bg-1); font-size: 20px; cursor: pointer; color: var(--ink); }
.buy-row .qty-btn:hover { background: var(--bg-2); }
.buy-row .single_add_to_cart_button, .buy-row button[type="submit"] {
  background: var(--brand); color: #fff; border: 1px solid var(--brand); border-radius: 3px;
  padding: 0 3rem; height: 52px; font: inherit; font-size: 1rem; font-weight: 400; cursor: pointer; }
.buy-row .single_add_to_cart_button:hover, .buy-row button[type="submit"]:hover { background: var(--green); border-color: var(--green); }

/* Info lines with (!) icon */
.pinfo { margin: 8px 0 22px; }
.pinfo__line { display: flex; gap: 9px; align-items: center; margin-bottom: 8px; font-size: 15.5px; color: var(--ink-2); }
.pinfo__line svg { flex: none; color: var(--ink-2); }
.pinfo__line a { color: var(--brand); font-weight: 400; }

/* 3 outline buttons row */
.single .anchor-nav { gap: 14px; margin: 4px 0 0; }
.single .anchor-nav .btn { padding: .9rem 1.6rem; font-size: 15.5px; }

/* Section heading rows (You may also like / accessories) */
.rowhead { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 44px; margin-bottom: 30px; }
.rowhead h2 { font-size: clamp(1.5rem, 1.4vw + 1rem, 2.2rem); margin: 0; }
.rowlink { color: var(--brand); font-weight: 400; font-size: 16px; }

/* You may also like — one row of 3 */
ul.products.upsell-row { grid-template-columns: repeat(3, 1fr); }
.upsell-row .pcard__title { font-size: 20px; color: var(--ink); font-weight: 500; padding: 18px 20px 6px; }
.upsell-row .pcard__excerpt { padding: 0 20px 22px; font-size: 15px; color: var(--ink-2); }
.upsell-row .pcard__media, .acc-strip .pcard__media { height: 280px; border-bottom: 0; }

/* Accessories — horizontal strip */
ul.products.acc-strip { display: flex; overflow-x: auto; gap: 20px; padding-bottom: 12px; scroll-snap-type: x proximity; }
.acc-strip .pcard { flex: 0 0 300px; scroll-snap-align: start; }
.acc-strip .pcard__title { font-size: 19px; color: var(--ink); font-weight: 500; }
.acc-strip .pcard__media { height: 250px; }

/* Check bullets inside loop cards */
.pcard__excerpt ul { list-style: none; margin: 8px 0 0; padding: 0; }
.pcard__excerpt li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.pcard__excerpt li::before { content: ""; position: absolute; left: 0; top: 3px; width: 15px; height: 15px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300b0f0" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') no-repeat center / contain; }

.summary__links { margin: 22px 0; font-size: 15px; }
.inquiry { border: 1px solid var(--border); border-radius: 5px; margin-top: 22px; }
.inquiry summary { cursor: pointer; padding: 14px 18px; font-weight: 700; color: var(--brand-700); text-transform: uppercase; font-size: 14px; letter-spacing: .04em; }
.inquiry[open] summary { border-bottom: 1px solid var(--border); }
.inquiry form { padding: 20px 18px; }
.single .anchor-nav { margin: 4px 0 0; }
.related h2 .ind-link { font-size: 14px; margin-left: 14px; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }

/* Gallery: thumbs in a 5-across row */
.gallery__thumbs { grid-template-columns: repeat(5, 1fr); }

/* Tabs: gray full-width bar */
.tabs { margin-top: 56px; }
.tabs__nav { display: flex; gap: 0; background: var(--bg-1); border-bottom: 0; }
.tabs__nav button { border: 0; background: transparent; padding: 22px 34px; font: inherit; font-size: 19px; font-weight: 500; color: var(--ink); cursor: pointer; margin: 0; border-bottom: 0; }
.tabs__nav button.active { background: #fff; box-shadow: inset 0 0 0 1px var(--bg-1); }
.tabs__panel { padding: 34px 2px 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
	:root { --header-h: var(--header-h-m); }
	.header .container { height: 60px; }
	.header-search { display: none; }
	.nav-toggle { display: flex; }
	.nav { display: none; }
	body.nav-open .nav { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; margin: 0; padding: 8px 20px 16px; box-shadow: 0 14px 20px -10px rgba(50,50,50,.2); max-height: 70vh; overflow-y: auto; }
	.header { position: relative; }
	.nav > a, .nav > span > a { padding: 12px 0; border-bottom: 1px solid var(--border-2); display: block; }
	.mega-wrap, .dd-wrap { display: block; }
	.mega, .dd { position: static; transform: none; width: auto; display: none; box-shadow: none; border: 0; padding: 0 0 0 16px; }
	.mega--cols { grid-template-columns: 1fr; gap: 0; }
	.mega-wrap.open .mega { display: grid; }
	.dd-wrap.open .dd { display: block; }
	.mega-wrap:hover .mega, .dd-wrap:hover .dd { display: none; }
	.mega-wrap.open:hover .mega, .dd-wrap.open:hover .dd { display: grid; }
	.usp-strip { grid-template-columns: 1fr 1fr; }
	.card-grid { grid-template-columns: 1fr 1fr; }
	ul.products, ul.products.columns-4 { grid-template-columns: repeat(2, 1fr); }
	.topcats { grid-template-columns: 1fr; }
	.catrow { grid-template-columns: repeat(3, 1fr); }
	.ind-split { grid-template-columns: 1fr; }
	.ovgrid--3 { grid-template-columns: repeat(3, 1fr); }
	.why-grid { grid-template-columns: 1fr; }
	.ovcard { min-height: 320px; }
	.topbar-search { display: none; }
	.topbar__links { font-size: 13.5px; }
	.form-cols-3 { grid-template-columns: 1fr; }
	.contact-blocks { grid-template-columns: 1fr; }
	.alt-row { grid-template-columns: 1fr; gap: 22px; }
	.alt-row--rev > :first-child { order: 0; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.side-tabs { display: none; }
}
@media (max-width: 620px) {
	.page-hero { height: 200px; }
	.page-hero h1 { font-size: 28px; }
	.usp-strip, .card-grid, .form-cols, .certs, .footer__grid { grid-template-columns: 1fr; }
	.catrow { grid-template-columns: 1fr 1fr; }
	.ovgrid--3 { grid-template-columns: 1fr; }
	.side-tab--green .lbl { font-size: 14px; padding: .8rem 1rem; }
	.header-cta { display: none; }
}
