/*
Theme Name: Capillary Pro
Theme URI: https://www.capillarytubing.net/
Author: Codex
Description: A technical database and buying-guide theme for capillary tubing specifications.
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: capillary-pro
*/

:root {
  --ct-ink: #111827;
  --ct-muted: #5d6877;
  --ct-line: #d9e0e8;
  --ct-soft: #f5f7fa;
  --ct-blue: #0f5f8f;
  --ct-blue-dark: #093f62;
  --ct-teal: #0a8a8f;
  --ct-gold: #b9822d;
  --ct-mint: #eef8f5;
  --ct-warm: #fff7ea;
  --ct-steel: #eef3f7;
  --ct-radius: 8px;
  --ct-shadow: 0 18px 50px rgba(17, 24, 39, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ct-ink);
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ct-blue);
  text-underline-offset: 3px;
}

.ct-container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.ct-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 224, 232, .92);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.ct-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ct-brand {
  color: var(--ct-ink);
  text-decoration: none;
}

.ct-brand-title {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 780;
}

.ct-brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--ct-muted);
  font-size: 12px;
  line-height: 1.2;
}

.ct-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.ct-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  color: #253041;
  text-decoration: none;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ct-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--ct-teal);
  transform: scaleX(0);
  transform-origin: center;
  opacity: .9;
  transition: transform .18s ease;
}

.ct-nav a:hover,
.ct-nav a:focus-visible {
  color: var(--ct-blue-dark);
  background: rgba(15, 95, 143, .07);
  outline: 0;
}

.ct-nav a:hover::after,
.ct-nav a:focus-visible::after {
  transform: scaleX(1);
}

.ct-nav .ct-nav-quote {
  min-height: 40px;
  margin-left: 8px;
  padding: 0 15px;
  border-radius: 6px;
  color: #fff;
  background: var(--ct-blue);
  box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
}

.ct-nav .ct-nav-quote::after {
  display: none;
}

.ct-nav .ct-nav-quote:hover,
.ct-nav .ct-nav-quote:focus-visible {
  color: #fff;
  background: var(--ct-blue-dark);
  box-shadow: 0 10px 22px rgba(9, 63, 98, .18);
  transform: translateY(-1px);
}

.ct-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: var(--ct-steel);
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ct-hero-image);
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.ct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.50) 58%, rgba(255,255,255,.12) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.62));
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  padding: 104px 0 82px;
}

.ct-eyebrow {
  margin: 0 0 18px;
  color: var(--ct-blue-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ct-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 820;
}

.ct-hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #354153;
  font-size: 19px;
  line-height: 1.65;
}

.ct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ct-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 24px;
}

.ct-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 999px;
  color: #253041;
  background: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}

.ct-button,
.ct-button-secondary,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 740;
  text-decoration: none;
  cursor: pointer;
}

.ct-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff;
  background: var(--ct-blue);
}

.ct-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: #fff;
  background: var(--ct-blue-dark);
}

.ct-button-secondary {
  color: var(--ct-ink);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,24,39,.16);
}

.ct-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin-top: 56px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(17,24,39,.10);
}

.ct-metric {
  padding: 20px 18px;
  background: rgba(255,255,255,.84);
}

.ct-metric strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.ct-metric span {
  display: block;
  margin-top: 8px;
  color: var(--ct-muted);
  font-size: 13px;
  line-height: 1.35;
}

.ct-section {
  padding: 86px 0;
}

.ct-section.ct-soft {
  background: var(--ct-soft);
}

.ct-priority-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--ct-line);
  background: #fff;
}

.ct-priority-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, .5fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 24px;
}

.ct-priority-head h2 {
  margin: 0;
}

.ct-priority-head p:last-child {
  margin: 0;
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ct-priority-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: var(--ct-line);
}

.ct-priority-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 28px;
  color: var(--ct-ink);
  background: #fff;
  text-decoration: none;
}

.ct-priority-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--ct-blue);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.ct-priority-card strong {
  max-width: 520px;
  font-size: 24px;
  line-height: 1.18;
}

.ct-priority-card em {
  color: var(--ct-muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.ct-priority-main {
  background:
    linear-gradient(135deg, rgba(15, 95, 143, .08), rgba(10, 138, 143, .05)),
    #fff;
}

.ct-priority-card:hover,
.ct-priority-card:focus-visible {
  color: var(--ct-blue-dark);
  outline: 0;
}

.ct-secondary-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ct-secondary-paths a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--ct-line);
  border-radius: 6px;
  color: #354153;
  background: #fff;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.ct-secondary-paths a:hover,
.ct-secondary-paths a:focus-visible {
  color: var(--ct-blue-dark);
  border-color: rgba(15, 95, 143, .28);
  background: rgba(15, 95, 143, .06);
  outline: 0;
}

.ct-showcase-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}

.ct-section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .48fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.ct-section h2,
.ct-page h1,
.ct-entry h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.ct-section-head p,
.ct-muted,
.ct-entry {
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ct-grid-4,
.ct-grid-3,
.ct-grid-2 {
  display: grid;
  gap: 18px;
}

.ct-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ct-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ct-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.ct-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.ct-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.ct-card p,
.ct-card li {
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ct-card p:last-child,
.ct-card ul:last-child {
  margin-bottom: 0;
}

.ct-card ul {
  margin: 0;
  padding-left: 18px;
}

.ct-cert-grid {
  margin-top: 22px;
}

.ct-cert-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 18px;
  border: 1px solid var(--ct-line);
  border-radius: 6px;
  background: var(--ct-soft);
}

.ct-cert-card h3 {
  font-size: 18px;
}

.ct-answer-panel {
  display: grid;
  gap: 8px;
  max-width: 920px;
  padding: 24px 28px;
  border: 1px solid rgba(15, 95, 143, .22);
  border-left: 4px solid var(--ct-blue);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
}

.ct-answer-panel strong {
  color: var(--ct-blue-dark);
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ct-answer-panel span {
  color: #354153;
  font-size: 17px;
  line-height: 1.68;
}

.ct-icon-card {
  position: relative;
  overflow: hidden;
}

.ct-icon-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 108px;
  height: 108px;
  border: 18px solid rgba(15, 95, 143, .07);
  border-radius: 50%;
}

.ct-icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--ct-blue);
  font-size: 13px;
  font-weight: 800;
}

.ct-icon-mark-teal {
  background: var(--ct-teal);
}

.ct-icon-mark-gold {
  background: var(--ct-gold);
}

.ct-product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 3px solid var(--ct-blue);
}

.ct-product-card a {
  color: var(--ct-blue-dark);
  font-weight: 740;
  text-decoration: none;
}

.ct-size-record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ct-size-record-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 3px solid var(--ct-teal);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.98)),
    linear-gradient(135deg, rgba(15,95,143,.12), rgba(10,138,143,.10));
}

.ct-size-record-card h3 {
  margin-bottom: 0;
  color: var(--ct-ink);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.ct-record-keyword {
  margin: 0;
  color: var(--ct-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ct-record-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 4px 0 0;
  overflow: hidden;
  border: 1px solid var(--ct-line);
  border-radius: 6px;
  background: var(--ct-line);
}

.ct-record-specs div {
  min-width: 0;
  padding: 11px 12px;
  background: #fff;
}

.ct-record-specs dt {
  margin: 0 0 5px;
  color: var(--ct-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ct-record-specs dd {
  margin: 0;
  color: var(--ct-ink);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ct-record-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 42px;
  margin-top: auto;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(9, 63, 98, .28);
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    #0d3f5f;
  box-shadow: 0 12px 24px rgba(9, 63, 98, .14), inset 0 1px 0 rgba(255,255,255,.16);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ct-record-link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: translateY(-55%) rotate(45deg);
  transition: transform .18s ease;
}

.ct-record-link:hover,
.ct-record-link:focus-visible {
  color: #fff;
  border-color: rgba(10, 138, 143, .62);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    #082f49;
  box-shadow: 0 16px 32px rgba(9, 63, 98, .22), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-1px);
  outline: 0;
}

.ct-record-link:hover::after,
.ct-record-link:focus-visible::after {
  transform: translate(2px, -55%) rotate(45deg);
}

.ct-record-footer {
  margin-top: 26px;
}

.ct-showcase,
.ct-size-layout,
.ct-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 42px;
  align-items: center;
}

.ct-showcase-media {
  overflow: hidden;
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
  background: #d9e0e8;
}

.ct-showcase-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ct-showcase-copy h2,
.ct-size-layout h2,
.ct-contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.ct-showcase-copy p {
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.72;
}

.ct-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.ct-proof-list div,
.ct-callout {
  padding: 18px;
  border-left: 4px solid var(--ct-teal);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
}

.ct-proof-list strong,
.ct-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ct-ink);
}

.ct-proof-list span,
.ct-callout span {
  color: var(--ct-muted);
  line-height: 1.6;
}

.ct-spec-table {
  overflow: hidden;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #fff;
}

.ct-spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-top: 1px solid var(--ct-line);
}

.ct-spec-row:first-child {
  border-top: 0;
}

.ct-spec-row strong,
.ct-spec-row span {
  padding: 17px 20px;
  font-size: 15px;
  line-height: 1.5;
}

.ct-spec-row strong {
  background: #f8fafc;
}

.ct-spec-row span {
  color: var(--ct-muted);
}

.ct-spec-table-large .ct-spec-row {
  grid-template-columns: 190px 1fr;
}

.ct-callout {
  margin-top: 28px;
  border-left-color: var(--ct-gold);
  background: var(--ct-warm);
}

.ct-process {
  counter-reset: process;
}

.ct-process .ct-card h3::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--ct-blue);
  font-size: 13px;
  font-weight: 800;
}

.ct-rfq-card {
  border-top: 3px solid var(--ct-gold);
}

.ct-value-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)),
    linear-gradient(135deg, rgba(10, 138, 143, .16), rgba(185, 130, 45, .14));
}

.ct-value-card h3 {
  color: var(--ct-blue-dark);
}

.ct-compare-table {
  overflow: hidden;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .03);
}

.ct-compare-table > div {
  display: grid;
  grid-template-columns: .55fr 1fr 1fr;
  border-top: 1px solid var(--ct-line);
}

.ct-compare-table > div:first-child {
  border-top: 0;
}

.ct-compare-table span {
  padding: 19px 20px;
  border-left: 1px solid var(--ct-line);
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.56;
}

.ct-compare-table span:first-child {
  border-left: 0;
  color: var(--ct-ink);
  background: #f8fafc;
  font-weight: 760;
}

.ct-compare-head span {
  color: #fff;
  background: var(--ct-blue-dark);
  font-weight: 780;
}

.ct-compare-head span:first-child {
  color: #fff;
  background: var(--ct-blue-dark);
}

.ct-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ct-faq-grid details {
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #fff;
}

.ct-faq-grid summary {
  min-height: 62px;
  padding: 20px 22px;
  color: var(--ct-ink);
  font-weight: 760;
  cursor: pointer;
}

.ct-faq-grid p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ct-muted);
  line-height: 1.68;
}

.ct-contact-section {
  background:
    linear-gradient(135deg, rgba(10, 138, 143, .08), rgba(185, 130, 45, .10)),
    #fff;
}

.ct-contact-panel {
  align-items: start;
}

.ct-contact-panel p {
  max-width: 620px;
  color: var(--ct-muted);
  line-height: 1.72;
}

.ct-contact-grid {
  display: grid;
  gap: 12px;
}

.ct-contact-grid a,
.ct-contact-grid div {
  display: block;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, .11);
  border-radius: var(--ct-radius);
  color: var(--ct-ink);
  background: rgba(255, 255, 255, .86);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .03);
}

.ct-contact-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ct-blue-dark);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ct-contact-grid span {
  display: block;
  color: #354153;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.ct-cta {
  padding: 74px 0;
  color: #fff;
  background: linear-gradient(135deg, #0b2535 0%, #103f5f 58%, #0f5f8f 100%);
}

.ct-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.ct-cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.ct-cta p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.ct-cta .ct-button {
  background: #fff;
  color: var(--ct-blue-dark);
}

.ct-site-footer {
  padding: 48px 0 28px;
  background: #0d1721;
  color: rgba(255,255,255,.78);
}

.ct-footer-inner {
  display: grid;
  grid-template-columns: 1.05fr .75fr 1.2fr;
  gap: 36px;
}

.ct-site-footer h3,
.ct-site-footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.ct-site-footer p,
.ct-site-footer a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

.ct-site-footer a {
  display: block;
  text-decoration: none;
  margin: 7px 0;
}

.ct-footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.ct-footer-bottom p {
  margin: 0 0 8px;
}

.ct-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  align-items: center;
}

.ct-footer-legal a,
.ct-footer-legal span {
  display: inline-flex;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
}

.ct-footer-legal a:hover,
.ct-footer-legal a:focus-visible {
  color: #fff;
}

.ct-footer-contact span {
  display: block;
  margin: 7px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.ct-page,
.ct-entry {
  padding: 72px 0;
}

.ct-entry-content {
  margin-top: 28px;
}

.ct-entry-content > * {
  max-width: 900px;
}

.ct-entry-content > .ct-contact-page {
  max-width: none;
}

.ct-content-section {
  margin: 34px 0;
}

.ct-content-section:first-child {
  margin-top: 0;
}

.ct-content-section h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.ct-content-section p,
.ct-content-section li {
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.72;
}

.ct-content-section ul {
  margin: 0;
  padding-left: 20px;
}

.ct-content-section .ct-grid-3,
.ct-content-section .ct-faq-grid,
.ct-content-section .ct-spec-table {
  max-width: none;
  margin-top: 20px;
}

.ct-contact-page {
  display: grid;
  gap: 28px;
}

.ct-contact-page .ct-contact-grid,
.ct-contact-page .ct-grid-3 {
  max-width: none;
}

.ct-seo-hero-media {
  max-width: none;
  margin: 26px 0 34px;
  overflow: hidden;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #f8fafc;
  box-shadow: var(--ct-shadow);
}

.ct-seo-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 20px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,24,39,.03);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  max-width: none;
  aspect-ratio: 1 / 1;
  margin: 0 0 16px !important;
  border: 1px solid #eef2f6;
  border-radius: 6px;
  background: #f8fafc;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ct-ink);
  font-size: 16px;
  line-height: 1.38;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.woocommerce ul.products li.product .button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  margin-top: 16px;
  min-height: 40px;
  padding: 0 42px 0 15px;
  border: 1px solid rgba(9, 63, 98, .32);
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0)),
    #0d3f5f;
  box-shadow: 0 12px 24px rgba(9, 63, 98, .16), inset 0 1px 0 rgba(255,255,255,.16);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.woocommerce ul.products li.product .button::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 1.6px solid rgba(255,255,255,.92);
  border-radius: 3px;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)) 3px 3px / 5px 1px no-repeat,
    linear-gradient(rgba(255,255,255,.50), rgba(255,255,255,.50)) 3px 6px / 7px 1px no-repeat,
    linear-gradient(rgba(255,255,255,.42), rgba(255,255,255,.42)) 3px 9px / 4px 1px no-repeat;
  flex: 0 0 auto;
}

.woocommerce ul.products li.product .button::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: translateY(-55%) rotate(45deg);
  transition: transform .18s ease;
}

.woocommerce ul.products li.product .button:hover {
  color: #fff;
  border-color: rgba(10, 138, 143, .62);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    #082f49;
  box-shadow: 0 16px 32px rgba(9, 63, 98, .24), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.woocommerce ul.products li.product .button:hover::after {
  transform: translate(2px, -55%) rotate(45deg);
}

.woocommerce-result-count {
  color: var(--ct-muted);
  font-size: 14px;
}

.woocommerce-ordering select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ct-line);
  border-radius: 6px;
  color: var(--ct-ink);
  background: #fff;
}

.ct-shop-page {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 360px, #fff 700px);
}

.ct-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .45fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 22px;
}

.ct-shop-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 820;
}

.ct-shop-hero p {
  max-width: 760px;
  color: var(--ct-muted);
  font-size: 17px;
  line-height: 1.68;
}

.ct-shop-rfq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(15, 95, 143, .18);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: var(--ct-shadow);
}

.ct-shop-rfq strong {
  color: var(--ct-ink);
  font-size: 20px;
  line-height: 1.2;
}

.ct-shop-rfq span {
  color: var(--ct-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ct-shop-rfq .ct-button {
  align-self: flex-start;
}

.ct-shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.ct-shop-tags span,
.ct-shop-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 999px;
  color: #253041;
  background: #fff;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.ct-shop-tags a:hover {
  color: #fff;
  border-color: var(--ct-blue);
  background: var(--ct-blue);
}

.ct-shop-index-guide {
  display: grid;
  gap: 18px;
  margin: 0 0 34px;
}

.ct-shop-answer {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 95, 143, .20);
  border-left: 4px solid var(--ct-blue);
  border-radius: var(--ct-radius);
  background: #fff;
}

.ct-shop-answer strong {
  color: var(--ct-blue-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ct-shop-answer span {
  color: #253041;
  font-size: 16px;
  line-height: 1.65;
}

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

.ct-shop-guide-grid .ct-card {
  padding: 22px;
}

.ct-shop-guide-grid h2 {
  margin: 0 0 10px;
  color: var(--ct-ink);
  font-size: 19px;
  line-height: 1.25;
}

.ct-shop-guide-grid p {
  margin: 0;
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.65;
}

.woocommerce div.product {
  max-width: 1180px;
  margin: 72px auto;
  padding: 0 22px;
}

.woocommerce div.product .product_title {
  color: var(--ct-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.woocommerce div.product .summary {
  color: var(--ct-muted);
  line-height: 1.7;
}

.ct-product-data-block {
  clear: both;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--ct-line);
}

.ct-product-data-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.ct-product-data-head h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.18;
}

.ct-product-data-head p {
  margin: 0;
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ct-product-answer {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 95, 143, .20);
  border-left: 4px solid var(--ct-blue);
  border-radius: var(--ct-radius);
  background: #f8fbfd;
}

.ct-product-answer strong {
  color: var(--ct-blue-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ct-product-answer span {
  color: #253041;
  font-size: 16px;
  line-height: 1.68;
}

.ct-product-spec-table {
  margin-bottom: 24px;
}

.ct-product-intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.ct-product-intent-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(10, 138, 143, .18);
  border-radius: 999px;
  color: #253041;
  background: #f2fbfa;
  font-size: 13px;
  font-weight: 740;
  line-height: 1.25;
}

.ct-product-guide-grid {
  margin-top: 20px;
}

.ct-product-guide-grid .ct-card h3 {
  margin-top: 0;
}

.ct-product-guide-grid .ct-card a {
  font-weight: 760;
}

.ct-product-faq {
  margin-top: 30px;
}

.ct-product-faq h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.18;
}

.woocommerce table.shop_table {
  border-color: var(--ct-line);
  border-radius: var(--ct-radius);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ct-ai-article {
  max-width: 1040px;
  margin: 0 auto;
}

.ct-ai-answer {
  margin: 32px 0 34px;
  padding: 28px;
  border: 1px solid rgba(10, 138, 143, .22);
  border-radius: var(--ct-radius);
  background: linear-gradient(180deg, #f2fbfa 0%, #fff 100%);
}

.ct-ai-answer-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: center;
  gap: 30px;
  padding: 0;
  overflow: hidden;
}

.ct-ai-answer-with-media > div {
  padding: 30px 0 30px 30px;
}

.ct-ai-media {
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  background: var(--ct-steel);
}

.ct-ai-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ct-ai-answer h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.ct-ai-answer p:last-child {
  margin-bottom: 0;
  color: #253041;
  font-size: 17px;
  line-height: 1.75;
}

.ct-ai-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ct-ai-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--ct-radius);
  background: #fff;
  color: #253041;
  line-height: 1.65;
}

.ct-ai-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ct-teal);
}

.ct-ai-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ct-ai-link-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  color: var(--ct-ink);
  background: #fff;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ct-ai-link-card strong {
  color: var(--ct-blue-dark);
  font-size: 15px;
  line-height: 1.35;
}

.ct-ai-link-card span {
  color: var(--ct-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ct-ai-link-card:hover,
.ct-ai-link-card:focus-visible {
  border-color: rgba(10, 138, 143, .45);
  box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
  transform: translateY(-1px);
  outline: 0;
}

.ct-ai-rfq {
  padding: 28px;
  border-radius: var(--ct-radius);
  background: var(--ct-warm);
}

.ct-ai-topic-section {
  max-width: 900px;
}

@media (max-width: 900px) {
  .ct-container {
    width: min(100% - 36px, 1180px);
  }
  .ct-header-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .ct-nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    white-space: normal;
    padding-bottom: 2px;
    gap: 10px 14px;
    font-size: 13px;
  }
  .ct-nav .ct-nav-quote {
    padding: 8px 12px;
  }
  .ct-hero {
    min-height: 620px;
  }
  .ct-hero::before {
    background-position: 68% center;
  }
  .ct-hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82));
  }
  .ct-hero-inner {
    padding-top: 78px;
  }
  .ct-metrics,
  .ct-grid-4,
  .ct-grid-3,
  .ct-grid-2,
  .ct-size-record-grid,
  .ct-section-head,
  .ct-priority-head,
  .ct-priority-grid,
  .ct-showcase,
  .ct-size-layout,
  .ct-contact-panel,
  .ct-faq-grid,
  .ct-ai-link-grid,
  .ct-ai-answer-with-media,
  .ct-shop-guide-grid,
  .ct-shop-hero,
  .ct-cta-inner,
  .ct-footer-inner,
  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .ct-ai-answer-with-media > div {
    padding: 24px 24px 0;
  }

  .ct-ai-media,
  .ct-ai-media img {
    min-height: 230px;
  }
  .ct-spec-row {
    grid-template-columns: 1fr;
  }
  .ct-spec-table-large .ct-spec-row {
    grid-template-columns: 1fr;
  }
  .ct-record-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-record-link {
    width: 100%;
  }
  .ct-compare-table > div {
    grid-template-columns: 1fr;
  }
  .ct-compare-table span {
    border-left: 0;
    border-top: 1px solid var(--ct-line);
  }
  .ct-compare-table span:first-child {
    border-top: 0;
  }
  .ct-seo-hero-media {
    margin: 22px 0 28px;
  }
  .ct-seo-hero-media img {
    aspect-ratio: 16 / 10;
  }
  .ct-section {
    padding: 62px 0;
  }
}
