/* ── TM PRODUCT ── */
/* =====================================================
   Primionics T&M Product Page CSS — v22.2
   High-end. Inspired by Datatec + GSAS India.
   Navy #0F2238 · Orange #e5551a · No icons.
   ===================================================== */

/* ─── Shell ─── */
.dp-shell { max-width: 1380px; margin: 0 auto; }

/* ─── Breadcrumb ─── */
.dp-bc {
  padding: 13px 48px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #64748b;
  max-width: 1380px; margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-bc a { color: #475569; text-decoration: none; transition: color .12s; }
.dp-bc a:hover { color: #e5551a; }
.dp-bc-sep { color: #cbd5e1; font-size: 10px; }
.dp-bc-cur { color: #0F2238; font-weight: 600; }
@media(max-width:700px){ .dp-bc { padding: 10px 16px; } }

/* ─── Sticky section nav ─── */
.dp-snav {
  position: sticky; top: 60px; z-index: 900;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto; scrollbar-width: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.dp-snav::-webkit-scrollbar { display: none; }
.dp-snav-inner {
  display: flex; max-width: 1380px; margin: 0 auto;
  padding: 0 48px;
}
@media(max-width:700px){ .dp-snav-inner { padding: 0 16px; } }
.dp-snav a {
  display: flex; align-items: center;
  padding: 14px 22px;
  font-size: 12.5px; font-weight: 600; color: #64748b;
  text-decoration: none; white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: all .13s; letter-spacing: .01em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-snav a:hover { color: #0F2238; }
.dp-snav a.active { color: #e5551a; border-bottom-color: #e5551a; }

/* ─── Hero: wider image (55%) | info (45%) ─── */
.dp-hero {
  display: grid; grid-template-columns: minmax(0, 56%) 1fr;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  min-height: 560px;
}
@media(max-width:1100px){ .dp-hero { grid-template-columns: 50% 1fr; } }
@media(max-width:860px)  { .dp-hero { grid-template-columns: 1fr; } }

/* ── Image column (carousel) ── */
.dp-img-col {
  background: #f5f7fa;
  border-right: 1px solid #e8edf4;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
@media(max-width:860px){ .dp-img-col { border-right: none; border-bottom: 1px solid #e2e8f0; min-height: 300px; } }

/* Carousel track */
.dp-carousel {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 32px 52px;
  min-height: 420px;
}
.dp-carousel-track {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dp-carousel-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.dp-carousel-slide.active { opacity: 1; pointer-events: auto; }
.dp-carousel-slide img {
  max-width: 100%; max-height: 360px; object-fit: contain;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.dp-carousel-slide.active img:hover { transform: scale(1.03); }

/* Arrows */
.dp-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.96);
  border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: all .15s; box-shadow: 0 2px 6px rgba(0,0,0,.12);
  color: #374151; font-size: 14px; user-select: none;
}
.dp-arr:hover { background: #e5551a; color: #fff; border-color: #e5551a; box-shadow: 0 2px 8px rgba(229,85,26,.25); }
.dp-arr-prev { left: 12px; }
.dp-arr-next { right: 12px; }

/* NEW badge */
.dp-new-badge {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  background: #e5551a; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
}

/* Dots */
.dp-dots {
  display: flex; justify-content: center; gap: 4px;
  padding: 8px 0 10px;
}
.dp-dot {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(229,85,26,.2); cursor: pointer; transition: all .2s;
}
.dp-dot.active { background: #e5551a; width: 32px; opacity: 1; }

/* Thumbnails strip */
.dp-thumbstrip {
  display: flex; gap: 6px; padding: 10px 16px 14px;
  border-top: 1px solid #e8edf4;
  overflow-x: auto; scrollbar-width: thin;
  background: rgba(255,255,255,.6);
}
.dp-thumb {
  width: 64px; height: 52px; flex-shrink: 0;
  border-radius: 5px; border: 2px solid #e2e8f0;
  cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #fff; transition: border-color .13s;
}
.dp-thumb:hover { border-color: #94a3b8; }
.dp-thumb.active { border-color: #e5551a; }
.dp-thumb img { max-width: 100%; max-height: 44px; object-fit: contain; }

/* ── Info column ── */
.dp-info-col {
  padding: 36px 44px 36px 44px;
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
@media(max-width:860px){ .dp-info-col { padding: 24px 20px; } }

.dp-brand-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.dp-pill {
  font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
}
.dp-pill.siglent  { color: #1755C2; background: rgba(23,85,194,.08);  border: 1px solid rgba(23,85,194,.25); }
.dp-pill.pico     { color: #007A3E; background: rgba(0,122,62,.08);   border: 1px solid rgba(0,122,62,.25); }
.dp-pill.kanomax  { color: #006B3D; background: rgba(0,107,61,.08);   border: 1px solid rgba(0,107,61,.25); }
.dp-pill.topas    { color: #B03A00; background: rgba(176,58,0,.08);   border: 1px solid rgba(176,58,0,.25); }
.dp-series-label  {
  margin-left: auto; font-size: 10px; color: #94a3b8; font-weight: 600;
  font-family: 'JetBrains Mono', monospace; letter-spacing: .1em;
}

.dp-h1 {
  font-size: clamp(20px, 2.6vw, 32px); font-weight: 800;
  color: #0F2238; letter-spacing: -.025em; line-height: 1.15;
  margin-bottom: 10px;
}
.dp-tagline {
  font-size: 13.5px; color: #475569; line-height: 1.75;
  margin-bottom: 20px; max-width: 560px;
}

/* ── Key-spec strip (horizontal) ── */
.dp-ks {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid #e2e8f0; border-radius: 8px;
  overflow: hidden; margin-bottom: 20px;
}
.dp-ks-item {
  padding: 10px 16px; flex: 1; min-width: 110px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.dp-ks-item:nth-child(3n) { border-right: none; }
.dp-ks-item:nth-last-child(-n+3) { border-bottom: none; }
.dp-ks-lbl {
  font-size: 9px; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px;
  font-family: 'JetBrains Mono', monospace;
}
.dp-ks-val { font-size: 13.5px; font-weight: 700; color: #0F2238; }
.dp-ks-val em { color: #e5551a; font-style: normal; }

/* ── Model table (in hero, above features) ── */
.dp-models-wrap {
  overflow-x: auto; border: 1px solid #e2e8f0;
  border-radius: 8px; margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.dp-models-table { width: 100%; border-collapse: collapse; table-layout: auto; min-width: 500px; }
.dp-models-table thead th {
  background: #0F2238; color: #fff;
  padding: 9px 14px; font-size: 10.5px; font-weight: 700;
  text-align: left; letter-spacing: .06em;
  font-family: 'JetBrains Mono', monospace; white-space: nowrap;
}
.dp-models-table thead th:first-child { color: #fdba74; }
.dp-models-table tbody tr { border-bottom: 1px solid #f1f5f9; transition: background .1s; }
.dp-models-table tbody tr:last-child { border-bottom: none; }
.dp-models-table tbody tr:hover { background: #f8faff; }
.dp-models-table tbody td { padding: 7px 14px; font-size: 12.5px; color: #374151; white-space: nowrap; }
.dp-models-table tbody td:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; color: #0F2238;
}

/* Spec chips */
.dp-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 22px; }
.dp-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em;
  padding: 4px 9px; border-radius: 4px;
  background: #f1f5f9; border: 1px solid #e2e8f0; color: #334155;
}
.dp-chip.hi { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }

/* CTA row */
.dp-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: auto; padding-top: 22px;
  border-top: 1px solid #f1f5f9;
}
.dp-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 26px; background: #e5551a; color: #fff;
  border-radius: 6px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; transition: background .13s;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: .01em;
}
.dp-btn-primary:hover { background: #c84010; }
.dp-btn-sec {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 20px; background: transparent;
  color: #374151; border: 1.5px solid #d1d5db;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .13s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-btn-sec:hover { border-color: #6b7280; color: #111827; }

/* ─── Body sections ─── */
.dp-body { background: #f8fafc; }

.dp-section {
  max-width: 1380px; margin: 0 auto;
  padding: 28px 48px;
  scroll-margin-top: 108px;
}
@media(max-width:700px){ .dp-section { padding: 18px 16px; } }

.dp-section.white { background: #fff; max-width: none; }
.dp-section.white .dp-section-inner { max-width: 1380px; margin: 0 auto; padding: 28px 48px; }
@media(max-width:700px){ .dp-section.white .dp-section-inner { padding: 18px 16px; } }

.dp-section.dark { background: #0F2238; max-width: none; }
.dp-section.dark .dp-section-inner { max-width: 1380px; margin: 0 auto; padding: 28px 48px; }
@media(max-width:700px){ .dp-section.dark .dp-section-inner { padding: 18px 16px; } }

/* ── Section header ── */
.dp-sec-eyebrow {
  font-size: 9px; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; color: #e5551a; margin-bottom: 8px;
  display: block; font-family: 'JetBrains Mono', monospace;
}
.dp-sec-title {
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 800;
  color: #e5551a; letter-spacing: -.022em; margin-bottom: 16px; line-height: 1.18;
}
.dp-sec-title.light { color: #fff; }

/* ── MODEL TABLE above features (full-width section) ── */
.dp-model-section {
  max-width: 1380px; margin: 0 auto;
  padding: 0 48px 20px;
}
@media(max-width:700px){ .dp-model-section { padding: 0 16px 14px; } }
.dp-model-section .dp-models-wrap { margin-bottom: 0; border-radius: 10px; }

/* ── Feature grid — no icons, clean cards ── */
.dp-feats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
@media(max-width:1000px){ .dp-feats { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px)  { .dp-feats { grid-template-columns: 1fr; } }
.dp-feat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #e5551a;
  border-radius: 8px; padding: 22px 24px;
  transition: box-shadow .15s, transform .15s;
}
.dp-feat:hover { box-shadow: 0 4px 16px rgba(15,34,56,.07); transform: translateY(-2px); }
.dp-feat h4 {
  font-size: 13.5px; font-weight: 700; color: #0F2238;
  margin: 0 0 8px; line-height: 1.3;
}
.dp-feat p {
  font-size: 13px; color: #475569; line-height: 1.72; margin: 0;
}

/* ── Spec table ── */
.dp-spec-wrap {
  overflow-x: auto; border: 1px solid #e2e8f0;
  border-radius: 10px; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.dp-spec-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.dp-spec-table thead th {
  background: #0F2238; color: #fff;
  padding: 12px 18px; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-align: left; font-family: 'JetBrains Mono', monospace;
}
.dp-spec-table thead th:nth-child(2) { width: 80px; text-align: center; }
.dp-spec-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.dp-spec-table tbody tr:last-child { border-bottom: none; }
.dp-spec-table tbody tr:nth-child(even) { background: #fafbff; }
.dp-spec-table tbody td {
  padding: 10px 18px; font-size: 13px; color: #374151;
  line-height: 1.55; vertical-align: top;
}
.dp-spec-table tbody td:first-child {
  font-weight: 600; color: #111827; border-right: 3px solid #e5551a;
  background: #f8fafc; width: 40%;
}
.dp-spec-table tbody td:nth-child(2) {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: #94a3b8;
  background: #f5f7fa; border-right: 1px solid #e8edf4;
  white-space: nowrap;
}
.dp-spec-table tbody tr.grp td {
  background: #1e3a5f !important; color: rgba(255,255,255,.5) !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 8px !important; letter-spacing: .24em !important;
  text-transform: uppercase !important; padding: 6px 18px !important;
  border-color: rgba(255,255,255,.06) !important; border-right: none !important;
}

/* ── Application cards ── */
.dp-apps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .dp-apps { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .dp-apps { grid-template-columns: 1fr; } }
.dp-app {
  background: #fff; border: 1px solid #e2e8f0;
  border-left: 4px solid #0F2238;
  border-radius: 8px; padding: 22px 24px;
  transition: box-shadow .15s;
}
.dp-app:hover { box-shadow: 0 4px 16px rgba(15,34,56,.08); }
.dp-app-sector {
  display: block; margin-bottom: 7px;
  font-size: 9px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #e5551a;
  font-family: 'JetBrains Mono', monospace;
}
.dp-app h3 { font-size: 14px; font-weight: 700; color: #0F2238; margin: 0 0 8px; line-height: 1.3; }
.dp-app p  { font-size: 13px; color: #475569; line-height: 1.7; margin: 0; }

/* ── Accessories table ── */
.dp-acc-wrap { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 10px; }
.dp-acc-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.dp-acc-table thead th {
  background: #1e3a5f; color: #fff;
  padding: 10px 16px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-align: left;
  font-family: 'JetBrains Mono', monospace;
}
.dp-acc-table tbody td {
  padding: 11px 16px; border-bottom: 1px solid #f1f5f9;
  font-size: 13px; color: #374151; line-height: 1.5; vertical-align: top;
}
.dp-acc-table tbody tr:last-child td { border-bottom: none; }
.dp-acc-table tbody tr:nth-child(even) td { background: #f8fafc; }
.dp-acc-pn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 700; color: #0F2238; white-space: nowrap;
}

/* ── Two-column accessories (Kanomax/Topas) ── */
.dp-acc-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media(max-width:700px){ .dp-acc-two-col { grid-template-columns: 1fr; } }
.dp-acc-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 10px; padding: 24px;
}
.dp-acc-card.included { border-top: 4px solid #e5551a; }
.dp-acc-card.optional  { border-top: 4px solid #0F2238; }
.dp-acc-card h3 {
  font-size: 13.5px; font-weight: 700; color: #0F2238;
  margin: 0 0 14px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-acc-card ul {
  margin: 0; padding: 0 0 0 18px;
  list-style: disc; font-size: 13px; color: #475569; line-height: 2;
}

/* ── Contact section ── */
.dp-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
@media(max-width:900px){ .dp-contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.dp-contact-intro { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 28px; }
.dp-cinfo-row { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.dp-cinfo-row:last-of-type { border-bottom: none; }
.dp-cinfo-label {
  font-size: 8.5px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.dp-cinfo-val { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.dp-cinfo-val a { color: #fdba74; text-decoration: none; }

/* Form */
.dp-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.dp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:580px){ .dp-form-row { grid-template-columns: 1fr; } }
.dp-fg { display: flex; flex-direction: column; gap: 5px; }
.dp-fg label { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .04em; font-family: 'JetBrains Mono', monospace; }
.dp-fg input, .dp-fg select, .dp-fg textarea {
  padding: 11px 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px; font-size: 13px; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .13s;
}
.dp-fg input:focus, .dp-fg select:focus, .dp-fg textarea:focus { border-color: #e5551a; }
.dp-fg input::placeholder, .dp-fg textarea::placeholder { color: rgba(255,255,255,.22); }
.dp-fg textarea { min-height: 88px; resize: vertical; }
.dp-form-submit {
  padding: 13px 28px; background: #e5551a; color: #fff;
  border: none; border-radius: 6px; font-size: 13.5px; font-weight: 700;
  cursor: pointer; transition: background .13s; align-self: flex-start;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: .01em;
}
.dp-form-submit:hover { background: #c84010; }
.dp-form-msg { font-size: 12px; color: #fdba74; min-height: 16px; }

/* ── Brand pill extras ── */

/* ─── v22.3 Fixes ─────────────────────────────────────────────── */

/* Remove arrows from CTA buttons */
.dp-btn-primary::after { content: none; }
.dp-btn-sec::after     { content: none; }
.dp-form-submit::after { content: none; }

/* Section title orange (override for all named labels) */
.dp-sec-title { color: #e5551a !important; margin-bottom: 16px; }
.dp-sec-title.light { color: #fff !important; }

/* Hide empty eyebrows */
.dp-sec-eyebrow:empty { display: none; }

/* Carousel progress bar — full-width segmented bar ─────────────── */
.dp-dots {
  display: flex; justify-content: center; gap: 4px;
  padding: 6px 16px 12px;
}
.dp-dot {
  flex: 1; max-width: 48px; height: 3px; border-radius: 2px;
  background: rgba(229,85,26,.18); cursor: pointer;
  transition: background .2s, opacity .2s;
}
.dp-dot.active { background: #e5551a; }
.dp-dot:hover { background: rgba(229,85,26,.45); }

/* Carousel arrows — cleaner styling */
.dp-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1.5px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: all .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  color: #374151; font-size: 13px; user-select: none;
  font-weight: 700; line-height: 1;
}
.dp-arr:hover { background: #e5551a; color: #fff; border-color: #e5551a; }
.dp-arr-prev { left: 10px; }
.dp-arr-next { right: 10px; }

/* Model table: same font-size as feature cards ─────────────────── */
.dp-models-table tbody td { font-size: 12.5px; }
.dp-models-table thead th { font-size: 11px; }

/* Reduce gap between sections ───────────────────────────────────── */
.dp-body .dp-section + .dp-section.white,
.dp-body .dp-section.white + .dp-section {
  border-top: 1px solid #f1f5f9;
}

/* Model section: space above, reduce bottom ─────────────────────── */
.dp-model-section {
  padding-top: 24px !important;
  padding-bottom: 16px !important;
}

/* Key Features section title ─────────────────────────────────────── */
.dp-section#features .dp-sec-title { color: #e5551a; }
.dp-section#specifications .dp-sec-title { color: #e5551a; }
.dp-section#applications .dp-sec-title { color: #e5551a; }
.dp-section#accessories .dp-sec-title { color: #e5551a; }

/* Remove "Accessories & Software" heading text while keeping section */
.dp-section#accessories .dp-sec-eyebrow { display: none; }
.dp-section#specifications .dp-sec-eyebrow { display: none; }
.dp-section#applications .dp-sec-eyebrow { display: none; }
.dp-section#features .dp-sec-eyebrow { display: none; }


/* Precision Environment product page refinements */
.dp-std-panel{border:1px solid #fed7aa;background:#fff7ed;border-radius:10px;padding:14px 16px;margin:0 0 18px;box-shadow:0 1px 2px rgba(15,34,56,.04)}.dp-std-title{font-family:'JetBrains Mono',monospace;font-size:9px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:#c2410c;margin-bottom:9px}.dp-std-chips{display:flex;flex-wrap:wrap;gap:6px}.dp-std-chip{font-family:'JetBrains Mono',monospace;font-size:9.5px;font-weight:700;padding:5px 9px;border-radius:999px;background:#fff;border:1px solid #fed7aa;color:#9a3412}.dp-std-note{font-size:12px;color:#9a3412;line-height:1.55;margin:10px 0 0}.dp-feat,.dp-app{height:100%;}.dp-spec-note{font-size:12.5px;color:#64748b;line-height:1.65;margin:10px 0 0}

/* === Primionics updates Jun 2026 === */

/* Orange card borders on all TM product cards */
.pcard, .tm20-card, .scope-card, .feature-card, .spec-card {
  border:1px solid rgba(26,53,87,.14) !important;
  border-radius: 12px;
}
.pcard:hover, .tm20-card:hover {
  border-color: #E5551A !important;
}

/* Text justify */
.pcard-desc, .tm-desc, .scope-card p, .feature-card p {
  text-align:left;
}

/* Medium section spacing */
.tm-section, .tm20-sec {
  padding: 56px 0 !important;
}
