/* ==========================================================================
   Entrol Fishing — carbon fishing rod OEM / Weihai, Shandong, China
   Independent design system. Do NOT reuse copy or palette from other sites.
   ========================================================================== */
:root {
  --color-bg: #F6F9FA;
  --color-bg-alt: #EAF1F4;
  --color-white: #FFFFFF;
  --color-text: #12242C;
  --color-text-mid: #48626D;
  --color-text-light: #7C94A0;
  --color-primary: #0E6E8C;
  --color-primary-dark: #094C61;
  --color-accent: #E8912D;
  --color-border: #D5E2E8;
  --wa-green: #25D366;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 6px rgba(18, 36, 44, 0.07);
  --shadow-md: 0 10px 34px rgba(18, 36, 44, 0.12);
  --ease: cubic-bezier(0.22, 0.8, 0.35, 1);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(52px, 7vw, 92px) 0; }
.section-alt { background: var(--color-bg-alt); }

/* ---------- typography ---------- */
h1, h2, h3 { line-height: 1.25; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.lead { color: var(--color-text-mid); font-size: 1.06rem; max-width: 760px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.96rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { filter: brightness(0.94); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; text-decoration: none; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; color: var(--color-text); }
.logo:hover { text-decoration: none; }
.logo svg { width: 30px; height: 30px; }
.logo .logo-sub { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-light); }
.main-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text-mid);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--radius);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-primary); background: var(--color-bg-alt); text-decoration: none; }
.nav-dropdown { position: relative; }
.nav-dropdown > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px !important;
  flex-direction: column;
  gap: 0 !important;
}
.nav-dropdown:hover > ul, .nav-dropdown:focus-within > ul { display: flex; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--color-text); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(135deg, #0B3543 0%, #0E6E8C 62%, #1290A8 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 118px) 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.hero .eyebrow { color: #9ADBE8; }
.hero h1 { color: #fff; max-width: 780px; }
.hero .lead { color: rgba(255, 255, 255, 0.88); margin-top: 16px; }
.hero .btn-row .btn-accent { color: #3A2506; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 42px; }
.hero-stat strong { display: block; font-size: 1.55rem; font-weight: 800; }
.hero-stat span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 a { color: var(--color-text); }
.card p { color: var(--color-text-mid); font-size: 0.94rem; margin-top: 6px; }
.card .card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.88rem; }

/* ---------- buyer guides / organic search content ---------- */
.guide-hero {
  padding: clamp(48px, 7vw, 82px) 0;
  background: linear-gradient(145deg, #EAF1F4 0%, #F6F9FA 62%, #FFF7EC 100%);
  border-bottom: 1px solid var(--color-border);
}
.guide-hero h1 { max-width: 860px; }
.guide-hero .lead { margin-top: 16px; }
.guide-narrow { max-width: 900px; }
.guide-meta { margin-top: 22px; color: var(--color-text-light); font-size: 0.86rem; }
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 72px;
}
.guide-article { min-width: 0; }
.guide-section { padding: 0 0 32px; }
.guide-section h2 { font-size: clamp(1.3rem, 2.4vw, 1.72rem); }
.guide-section p { color: var(--color-text-mid); }
.guide-takeaway {
  border-left: 4px solid var(--color-accent);
  background: #FFF7EC;
  padding: 20px 22px;
  margin-bottom: 34px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.guide-takeaway p { color: var(--color-text-mid); margin-top: 5px; }
.guide-next { margin-top: 12px; padding: 28px; background: var(--color-bg-alt); border-radius: var(--radius-lg); }
.guide-next p { color: var(--color-text-mid); }
.guide-aside {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.guide-aside h2 { font-size: 1.08rem; }
.guide-aside ul { list-style: none; display: grid; gap: 12px; margin: 15px 0 24px; }
.guide-aside li { border-bottom: 1px solid var(--color-border); padding-bottom: 11px; }
.guide-aside p { color: var(--color-text-mid); font-size: 0.9rem; margin-bottom: 14px; }
.guide-card h2 { font-size: 1.25rem; margin-bottom: 8px; }
.guide-card h2 a { color: var(--color-text); }

@media (max-width: 820px) {
  .guide-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 34px; }
  .guide-aside { position: static; }
}

/* category card with image */
.cat-card { padding: 0; overflow: hidden; }
.cat-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cat-card .cat-body { padding: 20px 22px 24px; }
.cat-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* ---------- feature list ---------- */
.feature-list { list-style: none; display: grid; gap: 14px; margin-top: 18px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-text-mid); }
.feature-list li::before {
  content: "✓";
  flex: 0 0 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  margin-top: 3px;
}

/* ---------- spec table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); margin-top: 26px; }
table.spec { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 760px; }
table.spec th, table.spec td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--color-border); white-space: nowrap; }
table.spec th { background: var(--color-primary-dark); color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; position: sticky; top: 0; }
table.spec tr:nth-child(even) td { background: var(--color-bg); }
table.spec td:first-child { font-weight: 700; color: var(--color-primary-dark); }
.table-note { font-size: 0.8rem; color: var(--color-text-light); margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #0B3543, #0E6E8C);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 640px; margin: 0 auto; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.cta-band .btn-outline:hover { background: #fff; color: var(--color-primary-dark); }

/* ---------- contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.86rem; }
.form-field label span { color: #C0392B; }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--color-text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14, 110, 140, 0.14);
}
.form-hint { font-size: 0.8rem; color: var(--color-text-light); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); background: #E7F6EC; color: #1D7A43; font-weight: 600; }
.form-status.show { display: block; }

/* ---------- breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--color-text-light); padding: 18px 0 0; }
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb span[aria-current] { color: var(--color-text-mid); font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { background: #0B2530; color: #B9CCD4; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding: 56px 0 40px; }
.site-footer h4 { color: #fff; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; font-size: 0.9rem; }
.site-footer a { color: #B9CCD4; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0; font-size: 0.8rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact li strong { color: #E4EEF2; font-weight: 600; }

/* ---------- floating buttons (WhatsApp + WeChat) ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 9990;
  transition: transform 0.3s var(--ease);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wc-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #0EBE5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 190, 95, 0.4);
  z-index: 9990;
  cursor: pointer;
  border: 0;
  transition: transform 0.3s var(--ease);
}
.wc-float:hover { transform: scale(1.1); }
.wc-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.wc-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 48, 0.6);
  z-index: 9991;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wc-modal.open { display: flex; }
.wc-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  position: relative;
}
.wc-modal-card h3 { margin-bottom: 6px; }
.wc-id { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.04em; color: var(--color-primary-dark); margin: 14px 0; }
.wc-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--color-text-light); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 10px 16px 18px; gap: 2px; }
  .nav-dropdown > ul { position: static; box-shadow: none; border: 0; padding: 0 0 0 14px !important; }
  .hero-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 0 30px; }
  .footer-bottom { flex-direction: column; }
}

/* ============ OEM Rod Configurator ============ */
.cfg-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 34px; align-items: start; }
.cfg-form { display: flex; flex-direction: column; gap: 26px; }
.cfg-group { border: 1px solid var(--color-border, #E2E8EC); border-radius: 12px; padding: 22px 24px 24px; background: #fff; }
.cfg-group > h3 { margin: 0 0 4px; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.cfg-group > h3 .cfg-step { display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; background: var(--color-accent, #E8A33D);
  color: #3A2506; font-size: 0.8rem; font-weight: 800; flex: 0 0 auto; }
.cfg-group > .cfg-note { margin: 0 0 16px; font-size: 0.88rem; color: var(--color-text-mid, #5A6B74); }
.cfg-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfg-fields .form-field.full { grid-column: 1 / -1; }
.cfg-fields label { font-size: 0.82rem; }
.cfg-fields select, .cfg-fields input, .cfg-fields textarea { font-size: 0.92rem; }
.cfg-fields .form-hint { font-size: 0.76rem; margin-top: 2px; }

.cfg-summary { position: sticky; top: 100px; border: 1px solid var(--color-border, #E2E8EC);
  border-radius: 12px; padding: 20px 22px; background: #F7FAFB; }
.cfg-summary h3 { margin: 0 0 10px; font-size: 1rem; }
.cfg-summary .cfg-list { list-style: none; margin: 0 0 14px; padding: 0; font-size: 0.85rem; }
.cfg-summary .cfg-list li { display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0; border-bottom: 1px dashed #DCE4E8; }
.cfg-summary .cfg-list li:last-child { border-bottom: 0; }
.cfg-summary .cfg-list .k { color: var(--color-text-mid, #5A6B74); }
.cfg-summary .cfg-list .v { font-weight: 700; text-align: right; }
.cfg-summary .cfg-count { font-size: 0.8rem; color: var(--color-text-mid, #5A6B74); margin-bottom: 10px; }
.cfg-summary .cfg-ref { font-size: 0.76rem; font-weight: 700; color: var(--color-primary, #0E6E8C);
  margin: -3px 0 8px; letter-spacing: .03em; }
.cfg-summary .btn { width: 100%; margin-top: 6px; }

.cfg-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cfg-why .card { padding: 20px 22px; }
.cfg-why .card h4 { margin: 0 0 6px; font-size: 0.98rem; }
.cfg-why .card p { font-size: 0.88rem; }

@media (max-width: 980px) {
  .cfg-layout { grid-template-columns: 1fr; }
  .cfg-summary { position: static; }
  .cfg-why { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cfg-fields { grid-template-columns: 1fr; }
  .cfg-why { grid-template-columns: 1fr; }
}

/* configurator: suggested set-up panel */
.cfg-combo { margin-top: 18px; padding-top: 16px; border-top: 1px solid #DCE4E8; }
.cfg-combo h4 { margin: 0 0 6px; font-size: 0.95rem; }
.cfg-combo .cfg-combo-lead { font-size: 0.78rem; color: var(--color-text-mid, #5A6B74); margin: 0 0 10px; }
.cfg-combo ul { list-style: none; margin: 0; padding: 0; }
.cfg-advice { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px;
  padding: 9px 0; border-bottom: 1px dashed #DCE4E8; font-size: 0.8rem; }
.cfg-advice:last-child { border-bottom: 0; }
.cfg-advice .part { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--color-text-mid, #5A6B74); }
.cfg-advice .val { font-weight: 800; text-align: right; font-size: 0.82rem; }
.cfg-advice .why { grid-column: 1 / -1; color: var(--color-text-mid, #5A6B74); line-height: 1.45; }
.cfg-apply { grid-column: 1 / -1; justify-self: start; margin-top: 6px; padding: 4px 14px;
  font-size: 0.74rem; font-weight: 700; color: var(--color-primary, #0E6E8C);
  background: #fff; border: 1px solid var(--color-primary, #0E6E8C); border-radius: 20px;
  cursor: pointer; }
.cfg-apply:hover { background: var(--color-primary, #0E6E8C); color: #fff; }

/* configurator: compatibility warnings */
.cfg-warnbox { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cfg-warn { border-radius: 8px; padding: 12px 14px; font-size: 0.82rem; line-height: 1.5; }
.cfg-warn.risk { background: #FDF1F0; border-left: 4px solid #C0392B; }
.cfg-warn.caution { background: #FEF8E8; border-left: 4px solid #D68910; }
.cfg-warn .w-title { display: block; font-weight: 800; margin-bottom: 3px; font-size: 0.84rem; }
.cfg-warn.risk .w-title { color: #96281B; }
.cfg-warn.caution .w-title { color: #9C6406; }
.cfg-warn .w-body { color: #3C4A52; }
.cfg-warn .w-fix { display: block; margin-top: 6px; padding: 4px 12px; font-size: 0.74rem;
  font-weight: 700; background: #fff; border: 1px solid currentColor; border-radius: 20px;
  cursor: pointer; }
.cfg-warn.risk .w-fix { color: #C0392B; }
.cfg-warn.caution .w-fix { color: #D68910; }
.cfg-warn .w-fix:hover { color: #fff; }
.cfg-warn.risk .w-fix:hover { background: #C0392B; }
.cfg-warn.caution .w-fix:hover { background: #D68910; }
.cfg-warn-none { font-size: 0.8rem; color: #3D7A4E; background: #F0F8F2;
  border-left: 4px solid #3D7A4E; border-radius: 8px; padding: 10px 14px; }

/* configurator: MOQ notice */
.cfg-moq { margin-top: 14px; padding: 12px 16px; border-radius: 8px;
  background: #EEF5F8; border: 1px solid #CFE1E9; font-size: 0.84rem; line-height: 1.55; }
.cfg-moq strong { display: block; margin-bottom: 3px; color: var(--color-primary, #0E6E8C); }
.cfg-moq table.inline { width: 100%; border-collapse: collapse; margin-top: 6px; font-size: 0.8rem; }
.cfg-moq table.inline td { padding: 3px 0; border-bottom: 1px dashed #CFE1E9; }
.cfg-moq table.inline td:last-child { text-align: right; font-weight: 700; }


/* configurator: two commercial paths (OEM program vs one custom rod) */
.form-field[hidden], fieldset.cfg-group[hidden] { display: none !important; }
.cfg-path-lab { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; }
.cfg-path-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cfg-path { display: block; position: relative; padding: 14px 16px 14px 42px; cursor: pointer;
  border: 1.5px solid #CFE1E9; border-radius: 10px; background: #fff; transition: border-color .15s; }
.cfg-path input { position: absolute; left: 15px; top: 17px; margin: 0; }
.cfg-path:hover { border-color: var(--color-primary, #0E6E8C); }
.cfg-path:has(input:checked) { border-color: var(--color-primary, #0E6E8C);
  background: #F2F8FA; box-shadow: inset 0 0 0 1px var(--color-primary, #0E6E8C); }
.cfg-path-t { display: block; font-weight: 700; font-size: 0.92rem; color: #123; }
.cfg-path-s { display: block; font-size: 0.78rem; color: #5B6B75; margin-top: 3px; line-height: 1.45; }
@media (max-width: 640px) { .cfg-path-row { grid-template-columns: 1fr; } }

/* configurator: accessory list (model x quantity, one row per model) */
.kit-group { border: 1px solid #E2E8EB; border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; background: #FCFDFE; }
.kit-lab { display: block; font-weight: 700; font-size: 0.86rem; color: #123; margin-bottom: 8px; }
.kit-rows { display: flex; flex-direction: column; gap: 8px; }
.kit-row { display: flex; align-items: center; gap: 8px; }
.kit-row .kit-sku { flex: 1 1 auto; min-width: 0; }
.kit-row .kit-qty { width: 72px; flex: 0 0 72px; }
.kit-unit { font-size: 0.78rem; color: #5B6B75; width: 52px; flex: 0 0 52px; }
.kit-del { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 1px solid #CFE1E9; background: #fff; color: #8A99A2; font-size: 1rem; line-height: 1; }
.kit-del:hover { border-color: #C0392B; color: #C0392B; }
.kit-add { margin-top: 8px; padding: 6px 12px; font-size: 0.78rem; font-weight: 700; cursor: pointer;
  background: #fff; border: 1px dashed #9DB6C2; border-radius: 20px; color: #0E6E8C; }
.kit-add:hover { border-style: solid; background: #F2F8FA; }
@media (max-width: 560px) {
  .kit-row { flex-wrap: wrap; }
  .kit-row .kit-sku { flex: 1 1 100%; }
}

/* configurator: "in the box" summary panel */
.cfg-kit { margin-top: 16px; padding-top: 14px; border-top: 1px solid #E2E8EB; }
.cfg-kit h4 { margin: 0 0 6px; font-size: 0.86rem; }
.cfg-kit ul { list-style: none; margin: 0; padding: 0; }
.cfg-kit li { display: flex; justify-content: space-between; gap: 10px; font-size: 0.8rem;
  padding: 3px 0; border-bottom: 1px dashed #E2E8EB; }
.cfg-kit li .k { color: #5B6B75; }
.cfg-kit li .v { font-weight: 700; text-align: right; }
.cfg-kit-total { font-size: 0.76rem; color: #5B6B75; margin: 8px 0 0; }

/* category pages: model cards generated from the product catalogue */
.rod-grid { margin-top: 30px; }
.rod-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.rod-card > img { width: 100%; height: 190px; object-fit: cover; background: #F4F7F8; }
.rod-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1 1 auto; }
.rod-body h3 { margin: 0 0 4px; font-size: 1rem; }
.rod-name { margin: 0 0 12px; font-size: 0.8rem; color: #5B6B75; }
.rod-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin-bottom: 14px; }
.rod-spec { display: flex; flex-direction: column; font-size: 0.78rem; }
.rod-spec span { color: #7A8A93; font-size: 0.72rem; }
.rod-spec strong { font-weight: 700; color: #123; }
.rod-actions { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.rod-actions .card-link { font-size: 0.8rem; }
@media (max-width: 560px) { .rod-specs { grid-template-columns: 1fr; } }

/* homepage: two-path entry cards */
.path-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.path-card { display: block; padding: 26px 26px 24px; border: 1.5px solid #CFE1E9; border-radius: 12px;
  background: #fff; transition: border-color .15s, transform .15s; }
.path-card:hover { border-color: #0E6E8C; transform: translateY(-2px); }
.path-eyebrow { font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: #0E6E8C; }
.path-card h3 { margin: 8px 0 6px; font-size: 1.16rem; }
.path-card p { margin: 0 0 14px; font-size: 0.88rem; color: #4A5A63; line-height: 1.6; }
.path-meta { list-style: none; margin: 0 0 16px; padding: 0; }
.path-meta li { font-size: 0.8rem; color: #5B6B75; padding: 3px 0 3px 18px; position: relative; }
.path-meta li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px;
  border-radius: 50%; background: #0E6E8C; }
@media (max-width: 720px) { .path-row { grid-template-columns: 1fr; } }

/* capability / process pages */
.step-list { counter-reset: step; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid #E2E8EB; }
.spec-table th { background: #F4F7F8; font-size: 0.78rem; }
