.pl-card__img {
    /* border: 1px solid #C7C7C7; */
    border: 1px solid #E5E5E5;
}
/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nexa', Arial, Helvetica, sans-serif; color: #222; background: #f7f7f7; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── Layout container ───────────────────────────────────── */
.pl-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero banner ────────────────────────────────────────── */
.pl-hero {
  background: #0B1B3A;
  background-image: radial-gradient(ellipse at 70% 50%, #0d2a5e 0%, #080f24 70%);
  padding: 95px 0px 80px;
  color: #fff;
  background-image: url(https://2560585.fs1.hubspotusercontent-ap1.net/hubfs/2560585/iVSEC%20Product/Background.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.pl-hero__title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;
  font-family: "Open Sans", sans-serif;
  color: #F0F0F0;
}
.pl-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  max-width: 748px;
  font-family: "Open Sans", sans-serif;
}

/* ── Two-column layout ──────────────────────────────────── */
.pl-body {
  padding: 40px 0 70px;
}
.pl-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .pl-layout { grid-template-columns: 210px 1fr; }
}

/* ── Sidebar ────────────────────────────────────────────── */
.pl-sidebar {
  background: #fff;
  border: 1px solid #C7C7C7;
  border-radius: 4px;
  padding: 16px;
}
@media (min-width: 900px) {
  .pl-sidebar { position: sticky; top: 20px; }
}

/* Sidebar header */
.pl-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 4px;
}
.pl-filters-title {
  color: #0A0A0A;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.pl-filters-collapse {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #555;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.pl-filters-collapse[aria-expanded="false"] { transform: rotate(180deg); }
.pl-filters-collapse:hover { color: #111; }

/* Filter group */
.pl-filter-group {
  border: none;
  padding: 13px 0;
  border-bottom: 1px solid #c7c7c7;
  margin: 0;
}
.pl-filter-group:last-child { border-bottom: none; }
.pl-filter-legend {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin-bottom: 0px;
  padding: 0;
  float: unset;
  font-family: "Open Sans", sans-serif;
}

/* Checkboxes */
.pl-checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0 10px;
  font-size: 10.24px;
  color: #333;
  cursor: pointer;
  user-select: none;
  font-family: "Open Sans", sans-serif;
}
.pl-checkbox-label:hover { color: #000; }
.pl-checkbox {
  width: 13px;
  height: 13px;
  accent-color: #0066cc;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

/* Range sliders */
.pl-range-display {
  font-size: 11px;
  color: #666;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}
.pl-range-wrap {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}
.pl-range-track {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to right,
    #d0d0d0 var(--rmin, 0%),
    #0066cc var(--rmin, 0%),
    #0066cc var(--rmax, 100%),
    #d0d0d0 var(--rmax, 100%)
  );
}
.pl-range {
  position: absolute;
  left: 0; width: 100%;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 1;
  margin: 0;
}
.pl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #0066cc;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.28);
  cursor: pointer;
  pointer-events: all;
}
.pl-range::-moz-range-thumb {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #0066cc;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.28);
  cursor: pointer;
  pointer-events: all;
}
.pl-range:focus-visible::-webkit-slider-thumb {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* ── Main content ───────────────────────────────────────── */
.pl-main { min-width: 0; }

/* Toolbar: tabs + search */
.pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  background: #fff;
  border: 0px solid #e8e8e8;
  border-radius: 4px;
  padding: 0px;
}

/* Category tabs */
.pl-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pl-tab {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0px;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 13px;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
  border: 1px dotted #0F66AE;
}
.pl-tab:hover { border-color: #888; color: #111; }
.pl-tab.is-active {
  border-color: #E8E8E8;
  color: #111;
  font-weight: 400;
  background-color: #E8E8E8;
}

/* Search */
.pl-search {
  display: flex;
  align-items: center;
  border: 1px solid #F5F5F5;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}
.pl-search-input {
  border: none;
  outline: none;
  padding: 7px 9px;
  font-size: 14px;
  color: #5B5B5B;
  width: 200px;
  background: #F5F5F5;
}
.pl-search-input::placeholder { color: #aaa; }
.pl-search-btn {
  background: #F5F5F5;
  border: none;
  padding: 7px 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #666;
}

/* ── Product grid ───────────────────────────────────────── */
.pl-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) { .pl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pl-grid { grid-template-columns: 1fr; } }

.pl-grid__item[hidden] { display: none; }
.pl-grid__item.js-page-hide { display: none; }

/* Product card */
.pl-card {
  background: #fff;
  border: 0px solid #e5e5e5;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}

/* Image area */
.pl-card__img {
  background: #ffffff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  transition: transform 0.2s;
}
.pl-card:hover .pl-card__img img { transform: scale(1.03); }

/* New badge */
.pl-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #0066cc;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Card body */
.pl-card__body {
  padding: 11px 0px 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.pl-card__type {
  color: #0A0A0A;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.pl-card__name, .pl-card__name a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 3px;
  font-family: "Open Sans", sans-serif;
  color: #0F66AE;
}



/* Compare row */
.pl-card__compare {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-top: 2px;
}
.pl-card__compare-cb {
  width: 12px;
  height: 12px;
  accent-color: #0066cc;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}
.pl-card__compare-text {
  color: #0F66AE;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

/* ── Empty state ────────────────────────────────────────── */
.pl-empty {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 14px;
  display: none;
}
.pl-empty.is-visible { display: block; }

/* ── Pagination ─────────────────────────────────────────── */
.pl-pagination {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  padding: 30px 0 10px;
  flex-wrap: wrap;
}
.pl-pagination[hidden] { display: none; }

.pl-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
  line-height: 1;
  cursor: default;
  opacity: 1;
  background-color: #fff;
  border: 1px solid #0F66AE;
  color: #0F66AE;
  font-size: 14px;
  padding: 10px 13px;
}
}
.pl-layout .pl-page-btn:hover:not(:disabled) { 
  background-color: #fff;
  border: 1px solid #0F66AE;
  color: #0F66AE; 
}
button#pl-next:hover:not(:disabled), button#pl-prev:hover:not(:disabled)
{
  background-color: #fff;
  border: 1px solid #0F66AE;
  color: #0F66AE;
}
.pl-page-btn:disabled {
  cursor: default;
  opacity: 1;
  background-color: #fff;
  border: 1px solid #c7c7c7;
  color: #C7C7C7;
  font-size: 14px;
  padding: 10px 13px;
}

.pl-page-nums { display: flex; align-items: center; gap: 3px; padding: 0px 20px; }
.pl-page-num {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  background: none;
  font-size: 14px;
  color: #959595;
  cursor: pointer;
  transition: border-color 0.15s;
  padding: 0px;
}
.pl-page-num:hover:not(.is-active) { border-color: #ccc; }
.pl-page-num.is-active { 
  border-color: #0F66AE;
  font-weight: 700;
  color: #fff;
  background-color: #0F66AE;
  border-radius: 0px;
}
.pl-page-ellipsis { padding: 0 3px; color: #aaa; font-size: 12px; user-select: none; }
/* ── Mobile filter toggle (< 900px) ────────────────────── */
.pl-mobile-filter-btn {
  display: none;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 14px;
  text-align: left;
}
@media (max-width: 899px) {
  .pl-mobile-filter-btn { display: block; color: #000; }
  .pl-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow-y: auto;
    border-radius: 0;
    border: none;
  }
  .pl-sidebar.is-open { display: block; }
  .pl-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
  }
  .pl-sidebar-close-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    color: #000;
  }
}
@media (min-width: 900px) {
  .pl-sidebar-close { display: none; }
}

/* ── Compare bar (sticky bottom) ────────────────────────── */
.pl-compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0B2545;
  color: #fff;
  z-index: 300;
  padding: 0 20px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
}
.pl-compare-bar.is-visible { transform: translateY(0); }

.pl-compare-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.pl-compare-bar__label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-compare-bar__items {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.pl-compare-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
}

.pl-compare-bar__item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #fff;
  border-radius: 3px;
  flex-shrink: 0;
}

.pl-compare-bar__item-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-compare-bar__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0 0 0 6px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pl-compare-bar__remove:hover { color: #fff; }

.pl-compare-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pl-compare-bar__cta {
  padding: 8px 18px;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.pl-compare-bar__cta:hover { background: #0055aa; }

.pl-compare-bar__clear {
  padding: 8px 14px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.pl-compare-bar__clear:hover { color: #fff; border-color: #fff; }

/* Checked compare checkbox — blue text */
.pl-card__compare-cb:checked + .pl-card__compare-text { color: #0066cc; font-weight: 600; }

/* ── Compare modal ───────────────────────────────────────── */
.pl-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 400;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
.pl-modal-overlay.is-open { display: flex; }

.pl-modal {
  background: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.pl-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e8e8e8;
  background: #f9f9f9;
  flex-shrink: 0;
}
.pl-modal__title {
  font-size: 16px;
  font-weight: 700;
  color: #0B2545;
}
.pl-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #666;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.pl-modal__close:hover { background: #eee; color: #111; }

.pl-modal__body {
  overflow-x: auto;
  padding: 0;
}

/* Comparison table */
.pl-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

/* Product header row */
.pl-compare-table .col-product {
  padding: 20px 16px 16px;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #eee;
  min-width: 160px;
}
.pl-compare-table .col-product:last-child { border-right: none; }
.pl-compare-table .col-label {
  padding: 0 16px;
  width: 150px;
  min-width: 130px;
  background: #f7f8fa;
  border-right: 1px solid #eee;
}

/* Product image in table header */
.pl-compare-table__img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 4px;
  margin: 0 auto 10px;
  display: block;
  padding: 6px;
}
.pl-compare-table__name {
  font-size: 13px;
  font-weight: 700;
  color: #0B2545;
  margin: 0 0 4px;
  line-height: 1.3;
}
.pl-compare-table__name a { color: inherit; }
.pl-compare-table__name a:hover { text-decoration: underline; }
.pl-compare-table__remove {
  background: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 11px;
  color: #888;
  cursor: pointer;
  padding: 3px 8px;
  margin-top: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.pl-compare-table__remove:hover { color: #c00; border-color: #c00; }

/* Spec rows */
.pl-compare-table tbody tr { border-bottom: 1px solid #eee; }
.pl-compare-table tbody tr:last-child { border-bottom: none; }
.pl-compare-table tbody tr:nth-child(even) td { background: #fafafa; }
.pl-compare-table tbody tr:nth-child(even) th { background: #f2f3f5; }

.pl-compare-table th {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  text-align: left;
  background: #f7f8fa;
  white-space: nowrap;
}
.pl-compare-table td {
  padding: 10px 16px;
  font-size: 13px;
  color: #222;
  text-align: center;
  border-right: 1px solid #eee;
}
.pl-compare-table td:last-child { border-right: none; }

/* Highlight cells that differ */
.pl-compare-table td.is-diff {
  background: #fff8e6;
  font-weight: 600;
}

.pl-modal__empty {
  padding: 48px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

/* Keyboard hint */
.pl-modal__footer {
  padding: 10px 24px;
  border-top: 1px solid #eee;
  font-size: 11px;
  color: #aaa;
  text-align: right;
  flex-shrink: 0;
}


/* ── New CSS ───────────────────────────────────────── */
h1.pl-hero__title {
  color: #F0F0F0;
}
.pl-layout button:hover {
  background-color: transparent;
}
.pl-body {
  background-color: #fff;
}
div#pl-filters-body {
  margin-top: 15px;
}
fieldset.pl-filter-group.pl-range-group {
  margin-top: 15px;
}
fieldset.pl-filter-group.pl-lens-group {
  margin-top: 15px;
}
fieldset.pl-filter-group {
  margin-top: 15px;
}
button.pl-tab:hover, button.pl-tab:active, button.pl-tab:focus {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  color: #111;
}
button.pl-page-num:hover {
  border-color: #0F66AE;
  font-weight: 700;
  color: #fff;
  background-color: #0F66AE;
  border-radius: 0px;
}
@media (max-width: 767px) {
 .pl-search {
    width: 100%;
}
  .pl-search-input {
    width: calc(100% - 33px);
}
  
}


