/* =============================================================================
   pro.css — 123eWireless Pro design system
   =============================================================================
   The Pro look: condensed information density, professional B2B feel,
   PIM admin-inspired type scale + spacing rhythm. Used across every
   customer-facing page once rolled in. Wraps the existing site chrome
   (header, footer, mobile bottom nav) — does NOT replace it.

   Color palette (locked):
     #1a1a2e  navy           primary text, headers, top bar
     #dc2626  red            primary CTA (Buy, Submit, Create account)
     #0072BC  blue           secondary action, links, focus ring, Sign in
     #ffffff  white          card surface
     #f8fafc  cool gray bg   page background (NOT stark white)
     #f3f4f6  gray-100       subtle dividers / row stripes
     #e5e7eb  gray-200       card border
     #d1d5db  gray-300       form input border
     #6b7280  gray-500       captions, muted text
     #4b5563  gray-600       lead paragraphs
     #ecfdf5/#065f46  green   in-stock badge
     #fff7ed/#92400e  amber   lead-time badge

   Type scale (locked, no in-betweens):
     11px  micro labels, badges, eyebrows
     12px  helper text, captions
     13px  body small, table cells, secondary
     14px  body, form inputs
     16px  emphasized body
     18px  card titles (mobile)
     20-22 card titles (desktop)
     22-26 page H1

   Spacing rhythm:  4 / 6 / 8 / 10 / 12 / 14 / 16 / 20 / 24 / 32

   Sentinel: PRO_DESIGN_SYSTEM_2026-05-02
   ========================================================================= */


/* =============================================================================
   Page wrapper
   ========================================================================= */

.pro-page {
  background: #f8fafc;
  padding: 20px 16px 60px;
  min-height: 60vh;
}
@media (min-width: 900px) {
  .pro-page { padding: 28px 32px 80px; }
}
.pro-page-inner { max-width: 1080px; margin: 0 auto; }


/* =============================================================================
   Page header (eyebrow / H1 / lead)
   ========================================================================= */

.pro-page-header { margin-bottom: 14px; }
.pro-page-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #6b7280; font-weight: 700; margin: 0 0 4px;
}
.pro-page-h1 {
  font-size: 22px; font-weight: 700; margin: 0 0 6px;
  color: #1a1a2e; line-height: 1.2;
}
.pro-page-lead {
  font-size: 13px; color: #4b5563; margin: 0; line-height: 1.5;
}
@media (min-width: 600px) {
  .pro-page-h1 { font-size: 26px; }
  .pro-page-lead { font-size: 14px; max-width: 60ch; }
}


/* =============================================================================
   Card primitive
   ========================================================================= */

.pro-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 24px;
}
@media (max-width: 599px) { .pro-card { padding: 16px; } }

.pro-card--narrow { max-width: 640px; margin: 0 auto; }

.pro-card-header {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.pro-card-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #6b7280; font-weight: 700; margin: 0 0 4px;
}
.pro-card-title {
  font-size: 18px; font-weight: 700; color: #1a1a2e;
  margin: 0; line-height: 1.2;
}
@media (min-width: 600px) { .pro-card-title { font-size: 22px; } }
.pro-card-sub {
  font-size: 13px; color: #6b7280; margin: 6px 0 0;
}


/* =============================================================================
   Form components
   ========================================================================= */

.pro-form { display: grid; gap: 14px; }
@media (min-width: 600px) { .pro-form { gap: 16px; } }

.pro-form-row { display: grid; gap: 10px; }
@media (min-width: 600px) { .pro-form-row { gap: 12px; } }

/* cols-2-tight: side-by-side at ALL widths — short paired fields like
   First+Last and Password+Confirm. */
.pro-form-row.cols-2-tight { grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 600px) { .pro-form-row.cols-2-tight { gap: 12px; } }

/* cols-2: 2-col at desktop, stack on mobile — for fields that may hold
   long strings (email, phone) where crowding mobile looks worse than stacking. */
@media (min-width: 600px) { .pro-form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.pro-field { display: flex; flex-direction: column; gap: 4px; }

.pro-field-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em;
  color: #1a1a2e; font-weight: 700;
}
.pro-field-label .opt {
  color: #9ca3af; font-weight: 400; text-transform: none;
  letter-spacing: 0; margin-left: 4px;
}

.pro-field input[type="text"],
.pro-field input[type="email"],
.pro-field input[type="tel"],
.pro-field input[type="password"],
.pro-field input[type="search"],
.pro-field input[type="number"],
.pro-field input[type="url"],
.pro-field select,
.pro-field textarea {
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #1a1a2e;
  width: 100%;
  font-family: inherit;
  box-sizing: border-box;
}
.pro-field textarea {
  height: auto; min-height: 90px; line-height: 1.5; resize: vertical;
}
.pro-field input:focus,
.pro-field select:focus,
.pro-field textarea:focus {
  outline: 0;
  border-color: #0072BC;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
}

.pro-field-hint { font-size: 12px; color: #6b7280; }
.pro-field-error { font-size: 12px; color: #dc2626; font-weight: 600; }
.pro-field-error-input {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.pro-form-foot {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-top: 8px; padding-top: 16px; border-top: 1px solid #f3f4f6;
}
.pro-form-foot--right { justify-content: flex-end; }


/* =============================================================================
   Buttons
   ========================================================================= */

.pro-btn-primary {
  background: #dc2626; color: #fff; border: 0; border-radius: 6px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.pro-btn-primary:hover { background: #b91c1c; }
.pro-btn-primary:disabled {
  background: #fca5a5; cursor: not-allowed;
}

.pro-btn-secondary {
  background: #fff; color: #1a1a2e; border: 1px solid #d1d5db; border-radius: 6px;
  padding: 9px 18px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.pro-btn-secondary:hover { border-color: #0072BC; color: #0072BC; }

.pro-btn-blue {
  background: #0072BC; color: #fff; border: 0; border-radius: 6px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.pro-btn-blue:hover { background: #005a96; }

/* small icon-only button (cart on product cards) */
.pro-btn-icon {
  background: #fff; border: 1px solid #d1d5db; color: #1a1a2e;
  width: 28px; height: 26px; border-radius: 5px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; flex-shrink: 0;
}
.pro-btn-icon:hover { border-color: #0072BC; color: #0072BC; }
.pro-btn-icon svg { width: 14px; height: 14px; stroke-width: 2; }

/* small inline buy button used in product cards */
.pro-btn-buy-sm {
  background: #dc2626; border: 0; color: #fff; padding: 0 12px;
  border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap; height: 26px; flex-shrink: 0;
  font-family: inherit;
}
.pro-btn-buy-sm:hover { background: #b91c1c; }


/* =============================================================================
   Filter card (category pages)
   ========================================================================= */

.pro-filter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  align-items: end;
}
@media (min-width: 600px) {
  .pro-filter-card { padding: 14px 18px; }
}

.pro-filter-col { display: flex; flex-direction: column; gap: 4px; }

.pro-filter-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px;
}

.pro-filter-inline-check {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: #4b5563;
  font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.pro-filter-inline-check input {
  width: 14px; height: 14px; margin: 0; accent-color: #0072BC;
}

.pro-filter-result-count {
  font-size: 11px; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700;
  white-space: nowrap;
}

.pro-filter-card select {
  height: 36px; padding: 6px 10px; font-size: 13px;
  border: 1px solid #d1d5db; border-radius: 6px;
  background: #fff; color: #1a1a2e; width: 100%;
  font-family: inherit;
}
.pro-filter-card select:focus {
  outline: 0; border-color: #0072BC;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
}


/* =============================================================================
   Product card (compact list rows)
   ========================================================================= */

.pro-product-list { display: flex; flex-direction: column; gap: 6px; }

.pro-product-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 10px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
}
@media (min-width: 600px) {
  .pro-product-card {
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
    padding: 12px 16px;
  }
}
.pro-product-card:hover { border-color: #0072BC; }

.pro-product-card .pro-thumb {
  width: 48px; height: 48px;
  background: #f3f4f6; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; font-size: 11px; font-weight: 700;
  overflow: hidden;
}
.pro-product-card .pro-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
@media (min-width: 600px) {
  .pro-product-card .pro-thumb { width: 64px; height: 64px; }
}

.pro-product-card .pro-body {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0; justify-content: space-between;
}

.pro-product-card .pro-pn-row {
  display: flex; gap: 6px; align-items: center;
  font-size: 11px; color: #6b7280;
  font-family: 'Menlo', 'Monaco', monospace; letter-spacing: -0.02em;
}

.pro-stock-in {
  background: #ecfdf5; color: #065f46; padding: 0 5px;
  border-radius: 3px; font-size: 9px; font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0.02em; text-transform: uppercase; line-height: 14px;
}
.pro-stock-lead {
  background: #fff7ed; color: #92400e; padding: 0 5px;
  border-radius: 3px; font-size: 9px; font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0.02em; text-transform: uppercase; line-height: 14px;
}

.pro-product-card .pro-title {
  font-size: 13px; font-weight: 600; margin: 0; line-height: 1.3;
  color: #1a1a2e;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

.pro-product-card .pro-row-bottom {
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.pro-product-card .pro-price {
  font-size: 14px; color: #1a1a2e; font-weight: 700; line-height: 1;
  flex: 1;
}
@media (min-width: 600px) { .pro-product-card .pro-price { font-size: 16px; } }


/* =============================================================================
   Misc helpers
   ========================================================================= */

.pro-meta-link {
  color: #0072BC; text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.pro-meta-link:hover { text-decoration: underline; }

.pro-error-banner {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 10px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.pro-info-banner {
  background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46;
  padding: 10px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.pro-warn-banner {
  background: #fff7ed; border: 1px solid #f97316; color: #7c2d12;
  padding: 10px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}


/* =============================================================================
   White paper / article prose
   ========================================================================= */

.pro-article {
  font-size: 15px; line-height: 1.65; color: #1f2937;
  max-width: 70ch;
}
.pro-article > * { margin: 0 0 14px; }
.pro-article p { font-size: 15px; }
.pro-article h2 {
  font-size: 20px; font-weight: 700; color: #1a1a2e;
  margin: 28px 0 8px; line-height: 1.25;
  padding-bottom: 4px; border-bottom: 1px solid #f3f4f6;
}
.pro-article h3 {
  font-size: 16px; font-weight: 700; color: #1a1a2e;
  margin: 20px 0 6px; line-height: 1.3;
}
.pro-article ul, .pro-article ol {
  padding-left: 22px; margin: 0 0 14px;
}
.pro-article li { margin: 0 0 6px; }
.pro-article strong { color: #1a1a2e; font-weight: 700; }
.pro-article a { color: #0072BC; text-decoration: underline; font-weight: 600; }
.pro-article a:hover { color: #005a96; }
.pro-article code {
  font-family: 'Menlo','Monaco',monospace; font-size: 13px;
  background: #f3f4f6; padding: 1px 5px; border-radius: 3px;
  color: #1a1a2e;
}
.pro-article blockquote {
  margin: 14px 0; padding: 10px 14px;
  border-left: 3px solid #0072BC; background: #f8fafc;
  color: #4b5563; font-style: italic; font-size: 14px;
}
.pro-article figcaption {
  font-size: 12px; color: #6b7280; text-align: center;
  margin-top: 6px;
}
@media (min-width: 600px) {
  .pro-article { font-size: 16px; }
  .pro-article p { font-size: 16px; }
  .pro-article h2 { font-size: 22px; }
  .pro-article h3 { font-size: 17px; }
}

/* Article meta strip (date + read time + topic) */
.pro-article-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 12px; color: #6b7280;
  margin: 0 0 18px; padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}
.pro-article-meta .sep { color: #d1d5db; }
.pro-article-meta .pro-tag {
  background: #f3f4f6; color: #374151; padding: 2px 8px;
  border-radius: 12px; font-weight: 600;
}

/* Comparison table — used for spec-vs-spec rows in white papers */
.pro-compare-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
  margin: 14px 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 6px;
  overflow: hidden;
}
.pro-compare-table th,
.pro-compare-table td {
  padding: 8px 12px; text-align: left;
  border-bottom: 1px solid #f3f4f6; vertical-align: top;
}
.pro-compare-table thead th {
  background: #1a1a2e; color: #fff; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  border-bottom: 0;
}
.pro-compare-table tbody tr:last-child td { border-bottom: 0; }
.pro-compare-table tbody tr:hover { background: #f8fafc; }
.pro-compare-table th:first-child,
.pro-compare-table td:first-child {
  font-weight: 600; color: #1a1a2e;
  width: 30%;
}
.pro-compare-table .same { color: #065f46; font-weight: 600; }
.pro-compare-table .diff { color: #b91c1c; font-weight: 600; }

/* White paper list (index page) */
.pro-paper-list {
  display: grid; gap: 12px;
}
.pro-paper-card {
  display: block;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 18px 20px; text-decoration: none; color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.15s, transform 0.15s;
}
.pro-paper-card:hover {
  border-color: #0072BC;
  transform: translateY(-1px);
}
.pro-paper-card .pro-paper-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #6b7280; font-weight: 700; margin: 0 0 4px;
}
.pro-paper-card .pro-paper-title {
  font-size: 18px; font-weight: 700; color: #1a1a2e;
  margin: 0 0 4px; line-height: 1.25;
}
.pro-paper-card .pro-paper-sub {
  font-size: 13px; color: #4b5563; font-style: italic;
  margin: 0 0 8px;
}
.pro-paper-card .pro-paper-desc {
  font-size: 13px; color: #4b5563; margin: 0 0 8px; line-height: 1.5;
}
.pro-paper-card .pro-paper-meta {
  font-size: 11px; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
@media (min-width: 600px) {
  .pro-paper-card .pro-paper-title { font-size: 20px; }
}


/* =============================================================================
   White-paper inline funnel (clickable product cards inside an article)
   ========================================================================= */

.wp-funnel {
  margin: 22px 0;
  padding: 18px 18px 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.wp-funnel--alt   { background: #f0f9ff; border-color: #bae6fd; }
.wp-funnel--narrow { max-width: 540px; }

.wp-funnel-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #0072BC; font-weight: 700; margin: 0 0 4px;
}
.wp-funnel-lead {
  font-size: 13px; color: #4b5563; margin: 0 0 12px; line-height: 1.5;
}
.wp-funnel-foot {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
}

/* Card grid — used inline in the white-paper funnel sections */
.wp-card-grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .wp-card-grid { grid-template-columns: 1fr 1fr 1fr; }
  .wp-card-grid--2 { grid-template-columns: 1fr 1fr; }
  .wp-card-grid--1 { grid-template-columns: 1fr; }
}

.wp-card {
  display: grid; grid-template-columns: 88px 1fr;
  column-gap: 12px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 10px;
  text-decoration: none; color: inherit;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  min-height: 88px;
  align-items: stretch;
}
.wp-card:hover {
  border-color: #0072BC;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.wp-card-thumb {
  width: 88px; height: 88px;
  background: #f3f4f6; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; font-size: 11px; font-weight: 700;
  overflow: hidden; flex-shrink: 0;
}
.wp-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.wp-card-thumb--cta {
  background: #1a1a2e; color: #fff;
}

.wp-card-body {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0; justify-content: space-between;
}
.wp-card-pn {
  font-size: 11px; color: #6b7280;
  font-family: 'Menlo','Monaco',monospace; letter-spacing: -0.02em;
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.wp-card-title {
  font-size: 13px; font-weight: 600; margin: 0; line-height: 1.3;
  color: #1a1a2e;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.wp-card-price {
  font-size: 14px; color: #1a1a2e; font-weight: 700; line-height: 1;
  display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap;
}
.wp-card-cta {
  font-size: 11px; color: #0072BC; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.wp-card--cta .wp-card-title { color: #1a1a2e; }
.wp-card--cta .wp-card-price { color: #dc2626; }

/* Final CTA strip on white-paper pages */
.wp-final-cta {
  margin-top: 28px; padding: 18px 20px;
  background: #1a1a2e; color: #fff; border-radius: 8px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.wp-final-cta-text { flex: 1; min-width: 220px; }
.wp-final-cta-title {
  font-size: 16px; font-weight: 700; margin: 0 0 2px;
}
.wp-final-cta-sub {
  font-size: 13px; color: #cbd5e1; line-height: 1.4;
}
.wp-final-cta-buttons {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.wp-final-cta-buttons .pro-btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.wp-final-cta-buttons .pro-btn-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: #fff; color: #fff;
}


/* =============================================================================
   Smart-filter select row (category page) — 2026-06-21
   One native <select> per axis, in customer-funnel order. Compact 2-col
   grid on phone (Cable/Interface side-by-side, then Gender/Install),
   horizontal row on desktop. (count) suffix on each option, zero-count
   options auto-disabled by JS as user selects.
   ========================================================================= */
.pro-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin: 4px 0 12px;
  align-items: end;
}
@media (min-width: 600px) {
  .pro-select-row {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px 12px;
  }
}
.pro-select-col { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pro-select-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: #6b7280; font-weight: 700;
}
.pro-select {
  height: 38px; padding: 6px 28px 6px 10px; font-size: 14px;
  border: 1px solid #d1d5db; border-radius: 6px;
  background: #fff; color: #1a1a2e; width: 100%;
  font-family: inherit; font-weight: 600;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%231a1a2e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.pro-select:focus {
  outline: 0; border-color: #0072BC;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
}
.pro-select option[disabled] { color: #c8ccd2; }
.pro-select-clear {
  grid-column: 1 / -1;
  justify-self: end;
  background: none; border: 0; padding: 4px 8px;
  color: #0072BC; font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.pro-select-clear:hover { text-decoration: underline; }


/* =============================================================================
   Category page — PHONE-ONLY layout corrections — 2026-06-21
   Desktop ≥600px stays as-is. On phone, the customer arrived from a category
   click and already knows what they're shopping. Hero block + breadcrumbs +
   In-stock + result count + pagination are dropped to reclaim screen space;
   the select-row replaces the old empty filter-card form. Thumbnails kept
   (per owner correction 2026-06-21).
   ========================================================================= */
@media (max-width: 599px) {
  .pro-page .breadcrumbs,
  .pro-page-header { display: none; }
  .pro-filter-result-count,
  .pro-filter-inline-check { display: none; }
  .pagination { display: none; }
}
