/* 页面背景 #f1f6f8，随主题色衍生边框/高亮 */
.product-list-v2 {
  --page-bg: #f1f6f8;
  --page-surface: #ffffff;
  --page-border: #d6e2e8;
  --page-border-light: #e4edf1;
  --page-accent: #e8f1f8;
  --page-accent-hover: #dceaf5;
  --page-accent-subtle: #f4f9fb;
  --page-text: #2a3a4a;
  --page-muted: #5f7589;
  --page-shadow: 0 2px 12px rgba(13, 110, 253, 0.06);
  --page-shadow-hover: 0 8px 24px rgba(13, 110, 253, 0.12);
  --banner-radius: 10px;
  --filter-blue: var(--primary-color);
  --filter-header: #dceaff;
  --filter-selected: #edf4ff;
  --filter-checkbox-border: #b9cbea;
  background-color: var(--page-bg);
}

body:has(.product-list-v2) {
  background-color: #f1f6f8 !important;
}

body:has(.product-list-v2) main {
  background-color: transparent;
}

@supports (background: color-mix(in srgb, red, blue)) {
  .product-list-v2 {
    --page-border: color-mix(in srgb, var(--primary-color) 14%, var(--page-bg));
    --page-border-light: color-mix(in srgb, var(--primary-color) 9%, var(--page-bg));
    --page-accent: color-mix(in srgb, var(--primary-color) 12%, var(--page-bg));
    --page-accent-hover: color-mix(in srgb, var(--primary-color) 20%, var(--page-bg));
    --page-accent-subtle: color-mix(in srgb, var(--primary-color) 5%, var(--page-surface));
    --page-shadow: 0 2px 12px color-mix(in srgb, var(--primary-color) 10%, transparent);
    --page-shadow-hover: 0 8px 24px color-mix(in srgb, var(--primary-color) 18%, transparent);
  }
}

.product-list-v2 .page-list.product-wrapper {
  background-color: var(--page-bg);
  padding: 36px 0 48px;
}

.product-list-v2 .product-sidebar {
  margin-top: 20px;
  position: static;
  overflow: visible;
}

.product-list-v2 .filter-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-list-v2 .filter-group {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--filter-blue);
  border-radius: 10px;
  background: var(--page-surface);
}

.product-list-v2 .filter-group-heading {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 16px;
  background: var(--filter-header);
}

.product-list-v2 .filter-group-toggle {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 9px;
  align-self: stretch;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--filter-blue);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  -webkit-user-select: none;
  user-select: none;
}

.product-list-v2 .filter-group-toggle:focus-visible,
.product-list-v2 .filter-group-reset:focus-visible,
.product-list-v2 .filter-chip:focus-visible,
.product-list-v2 .filter-category-link:focus-visible {
  outline: 2px solid var(--filter-blue);
  outline-offset: -3px;
}

.product-list-v2 .filter-group-toggle strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-list-v2 .filter-group-symbol {
  position: relative;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.product-list-v2 .filter-group-symbol::before,
.product-list-v2 .filter-group-symbol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.product-list-v2 .filter-group.collapsed .filter-group-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-list-v2 .filter-group-reset {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: var(--filter-blue);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.product-list-v2 .filter-group.collapsed .filter-group-body {
  display: none;
}

.product-list-v2 .filter-group-body {
  max-height: 340px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 6px;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: var(--filter-blue) transparent;
}

.product-list-v2 .filter-group-body::-webkit-scrollbar {
  width: 7px;
}

.product-list-v2 .filter-group-body::-webkit-scrollbar-thumb {
  background: var(--filter-blue);
}

.product-list-v2 .filter-search-wrap {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 10px 12px 8px;
  background: #ffffff;
}

.product-list-v2 .filter-search-wrap i {
  position: absolute;
  top: 50%;
  left: 24px;
  color: var(--filter-blue);
  font-size: 14px;
  transform: translateY(-45%);
  pointer-events: none;
}

.product-list-v2 .filter-search {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 34px;
  border: 1px solid #b9cbea;
  border-radius: 6px;
  outline: none;
  background: #f8fbff;
  color: #1b2f4a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
}

.product-list-v2 .filter-search::placeholder {
  color: #6d84a3;
}

.product-list-v2 .filter-search:focus {
  border-color: var(--filter-blue);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(36, 96, 242, 0.12);
}

.product-list-v2 .filter-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-list-v2 .filter-list li {
  display: block;
  width: 100%;
  margin: 0;
}

.product-list-v2 .filter-list li button.filter-chip {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  border: 0;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.product-list-v2 .filter-list li .filter-category-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.product-list-v2 .filter-list li .filter-category-link:hover {
  background: #f5f8ff;
  color: var(--filter-blue);
  text-decoration: none;
}

.product-list-v2 .filter-list li.active .filter-category-link {
  background: var(--filter-selected);
  color: var(--filter-blue);
}

.product-list-v2 .filter-list li button.filter-chip:hover {
  background: #f5f8ff;
}

.product-list-v2 .filter-list li.active button.filter-chip {
  background: var(--filter-selected);
  color: var(--filter-blue);
}

.product-list-v2 .filter-checkbox {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid var(--filter-checkbox-border);
  border-radius: 2px;
  background: #ffffff;
  box-sizing: border-box;
}

.product-list-v2 .filter-list li.active .filter-checkbox {
  border-color: var(--filter-blue);
  background: var(--filter-blue);
}

.product-list-v2 .filter-list li.active .filter-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -55%);
}

.product-list-v2 .filter-option-label {
  flex: 0 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-list-v2 .filter-count {
  flex: 0 0 auto;
  margin-left: 4px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

.product-list-v2 .filter-option-remove {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 8px;
  color: var(--filter-blue);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.product-list-v2 .filter-list li.active .filter-option-remove {
  display: block;
}

.product-list-v2 .filter-load-more {
  width: calc(100% - 24px);
  min-height: 36px;
  margin: 6px 12px 8px;
  border: 1px solid var(--filter-blue);
  border-radius: 4px;
  background: #ffffff;
  color: var(--filter-blue);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}

.product-list-v2 .filter-load-more:hover {
  background: var(--filter-selected);
}

.product-list-v2 .neibanner .banner-search-bar {
  max-width: 960px;
  margin: 0 auto 20px;
  padding: 12px 0 4px;
}

.product-list-v2 .neibanner .banner-search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--page-surface);
  border-radius: 0 var(--banner-radius) var(--banner-radius) 0;
  border: 1px solid var(--page-border-light);
  box-shadow: var(--page-shadow-hover);
  overflow: visible;
  position: relative;
  min-height: 58px;
}

.product-list-v2 .banner-category-dropdown {
  position: relative;
  flex: 0 0 auto;
  min-width: 160px;
  max-width: 260px;
  border-right: 1px solid var(--page-border-light);
  background: var(--page-accent-subtle);
  border-radius: 0;
}

.product-list-v2 .banner-category-dropdown.is-open {
  background: var(--page-accent);
}

.product-list-v2 .banner-category-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--page-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.product-list-v2 .banner-category-toggle:hover,
.product-list-v2 .banner-category-dropdown.is-open .banner-category-toggle {
  background: var(--page-accent-hover);
  color: var(--primary-color);
}

.product-list-v2 .banner-category-label {
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.product-list-v2 .banner-category-toggle .fa-angle-down {
  font-size: 14px;
  color: #999;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

.product-list-v2 .banner-category-toggle:hover .fa-angle-down,
.product-list-v2 .banner-category-dropdown.is-open .banner-category-toggle .fa-angle-down {
  color: var(--primary-color);
}

.product-list-v2 .banner-category-dropdown.is-open .banner-category-toggle .fa-angle-down {
  transform: rotate(180deg);
}

.product-list-v2 .banner-category-menu {
  position: absolute;
  top: 100%;
  left: -1px;
  min-width: calc(100% + 2px);
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--page-surface);
  border: 1px solid var(--page-border);
  border-top: none;
  border-radius: 0;
  box-shadow: var(--page-shadow-hover);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.05s ease, transform 0.05s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.05s;
}

.product-list-v2 .banner-category-dropdown.is-open .banner-category-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.product-list-v2 .banner-category-menu li {
  margin: 0;
}

.product-list-v2 .banner-category-menu li a {
  display: block;
  position: relative;
  padding: 12px 16px 12px 20px;
  color: var(--page-text);
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.product-list-v2 .banner-category-menu li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.product-list-v2 .banner-category-menu li a:hover {
  background: var(--page-accent-hover);
  color: var(--primary-color);
  padding-left: 26px;
}

.product-list-v2 .banner-category-menu li a:hover::before {
  height: 18px;
}

.product-list-v2 .banner-category-menu li.active a {
  background: var(--page-accent);
  color: var(--primary-color);
  font-weight: 600;
  padding-left: 26px;
}

.product-list-v2 .banner-category-menu li.active a::before {
  height: 22px;
}

/* 面包屑链接白色 */
.product-list-v2 .neinav .neiposition a {
  color: #fff !important;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.product-list-v2 .neinav .neiposition a:hover {
  color: #fff !important;
  opacity: 0.85;
}

.product-list-v2 .neinav .neiposition i,
.product-list-v2 .neinav .neiposition .neiposition-icon {
  color: rgba(255, 255, 255, 0.9) !important;
}

.product-list-v2 .neibanner .product-search-input {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
  border: none;
  font-size: 17px;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  color: var(--page-text);
  line-height: 58px;
  height: 58px;
}

.product-list-v2 .neibanner .product-search-input::placeholder {
  color: #aaa;
}

.product-list-v2 .neibanner .product-search-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 0 28px;
  border: none;
  border-radius: 0 var(--banner-radius) var(--banner-radius) 0;
  background: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, color-mix(in srgb, var(--primary-color) 75%, #000) 100%);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.product-list-v2 .neibanner .product-search-btn:hover {
  filter: brightness(1.08);
}

.product-list-v2 .neibanner .product-search-btn:active {
  transform: scale(0.98);
}

.product-list-v2 .banner-neinav {
  margin-top: 0;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
  .product-list-v2 .neibanner {
    height: auto;
    min-height: 260px;
  }

  .product-list-v2 .neibanner .banner-search-bar {
    max-width: 100%;
    margin: 0 auto 12px;
    padding: 10px 0 6px;
  }

  .product-list-v2 .neibanner .banner-search-form {
    flex-wrap: wrap;
    border-radius: var(--banner-radius);
    overflow: hidden;
    min-height: auto;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  }

  .product-list-v2 .banner-category-dropdown {
    width: 100%;
    max-width: none;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--page-border-light);
    border-radius: 0;
  }

  .product-list-v2 .banner-category-toggle {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .product-list-v2 .banner-category-menu {
    left: -1px;
    right: -1px;
    min-width: 0;
    max-height: 50vh;
    transform-origin: top center;
    border-radius: 0;
    border-top: 1px solid var(--page-border-light);
  }

  .product-list-v2 .banner-category-menu li a {
    padding: 14px 16px 14px 24px;
    font-size: 16px;
  }

  .product-list-v2 .neibanner .product-search-input {
    width: 100%;
    height: 52px;
    line-height: 52px;
    font-size: 16px;
    padding: 0 16px;
  }

  .product-list-v2 .neibanner .product-search-btn {
    width: 100%;
    min-width: 0;
    border-radius: 0 0 var(--banner-radius) var(--banner-radius);
    min-height: 50px;
    font-size: 16px;
  }

  .product-list-v2 .banner-neinav {
    display: flex !important;
    min-height: auto;
    padding: 10px 0;
  }

  .product-list-v2 .banner-neinav .neiposition {
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.6;
    gap: 2px 0;
  }

  .product-list-v2 .banner-neinav .neiposition a {
    font-size: 13px;
  }

  .product-list-v2 .page-list.product-wrapper {
    padding-top: 20px;
    background-color: var(--page-bg);
  }

  .product-list-v2 .sidebar-card {
    margin-bottom: 16px;
  }

  .product-list-v2 .product-sidebar {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .product-list-v2 .neibanner {
    min-height: 240px;
  }

  .product-list-v2 .neibanner .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-list-v2 .banner-neinav .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.product-list-v2 .product-list .product-item {
  margin-bottom: 0;
}

/* ====== Product Card (Immunoway-style) ====== */
.product-list-v2 .product-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--page-border-light);
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
  padding: 20px 28px;
  gap: 30px;
}

.product-list-v2 .product-card:hover {
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(21, 119, 186, 0.25);
  border-bottom-color: transparent;
  z-index: 1;
}

/* Alternating row colors */
.product-list-v2 .product-item:nth-of-type(even) .product-card {
  background: #fff;
}

.product-list-v2 .product-item:nth-of-type(even) .product-card:hover {
  background: #fff;
}

/* Left content area */
.product-list-v2 .product-card-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-list-v2 .product-card-title {
  margin-bottom: 6px;
}

.product-list-v2 .product-card-title a {
  font-family: var(--font-family, 'Source Han Sans CN', sans-serif);
  font-weight: 700;
  font-size: 22px;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  word-break: break-word;
}

.product-list-v2 .product-card:hover .product-card-title a {
  color: var(--primary-color);
  text-decoration: underline;
}

.product-list-v2 .product-card-title-en {
  font-size: 14px;
  font-weight: 400;
  color: #8c8c8c;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-transform: capitalize;
}

.product-list-v2 .product-card-identifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0 0 10px;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-list-v2 .product-card-identifiers .identifier {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.product-list-v2 .product-card-identifiers b {
  margin-right: 4px;
  color: #41586b;
  font-weight: 600;
}

.product-list-v2 .product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 10px;
}

.product-list-v2 .product-card-spec {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid var(--page-border);
  background: var(--page-accent-subtle);
  color: var(--page-text);
  font-size: 13px;
  line-height: 1.4;
}

.product-list-v2 .product-card-spec b {
  font-weight: 600;
}

.product-list-v2 .product-card-spec em {
  color: #c65d18;
  font-style: normal;
  font-weight: 600;
}

.product-list-v2 .product-card-spec small {
  color: var(--page-muted);
  overflow-wrap: anywhere;
}

.product-list-v2 .product-card-pro-num {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.product-list-v2 .product-card-pro-num span {
  display: inline-block;
  width: 90px;
  font-size: 14px;
  color: #555555;
}

.product-list-v2 .product-card-desc {
  font-size: 14px;
  color: var(--page-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Info rows (Catalog, Reactivity, Application style) */
.product-list-v2 .product-card-info {
  margin-bottom: 10px;
}

.product-list-v2 .product-card-info .info-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 10px;
  margin-top: 6px;
}

.product-list-v2 .product-card-info .info-label {
  min-width: 0;
  padding-top: 2px;
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.product-list-v2 .product-card-info .info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  min-width: 0;
}

.product-list-v2 .product-card-info .info-tag {
  display: inline-block;
  padding: 2px 6px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 2px;
  border: 1px solid #b9cbea;
  background: #edf4ff;
  color: #244b7a;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.product-list-v2 .product-card-info .info-tag.tag-color-1 { background: #dbeafe; color: #1e40af; border-color: #93b4ef; }
.product-list-v2 .product-card-info .info-tag.tag-color-2 { background: #cffafe; color: #155e75; border-color: #67d5e5; }
.product-list-v2 .product-card-info .info-tag.tag-color-3 { background: #dcfce7; color: #166534; border-color: #86d69f; }
.product-list-v2 .product-card-info .info-tag.tag-color-4 { background: #fef3c7; color: #854d0e; border-color: #e8c760; }
.product-list-v2 .product-card-info .info-tag.tag-color-5 { background: #ede9fe; color: #5b21b6; border-color: #b6a5e8; }
.product-list-v2 .product-card-info .info-tag.tag-color-6 { background: #fce7f3; color: #9d174d; border-color: #e7a3c3; }

/* Bottom action links */
.product-list-v2 .product-card-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 6px;
}

.product-list-v2 .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.product-list-v2 .btn-manual {
  cursor: pointer;
  font-family: inherit;
}
.product-list-v2 .card-link-manual,
.product-list-v2 .btn-manual {
  background: #f0ad4e;
  color: #fff;
  padding: 4px 12px;
  border: none;
  border-radius: 3px;
}

.product-list-v2 .card-link-manual:hover {
  background: #ec971f;
  color: #fff;
  text-decoration: none;
}

.product-list-v2 .card-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.product-list-v2 .card-link i {
  font-size: 13px;
}

.product-list-v2 .card-link-more {
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  transition: all 0.3s ease;
}

.product-list-v2 .card-link-more:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

/* Right image area */
.product-list-v2 .product-card-right {
  flex: 0 0 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list-v2 .product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  border: 1px solid #E5E5E5;
  padding: 8px;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s ease;
}

.product-list-v2 .product-card-image:hover {
  border-color: var(--primary-color);
}

.product-list-v2 .product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-list-v2 .product-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--page-muted);
  background: var(--page-surface);
  border: 1px dashed var(--page-border);
}

.product-list-v2 .sidebar-toggle {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.product-list-v2 .sidebar-arrow {
  margin-left: auto;
  transition: transform 0.3s;
}

.product-list-v2 .sidebar-toggle.collapsed .sidebar-arrow {
  transform: rotate(-90deg);
}

.product-list-v2 .sidebar-toggle.collapsed + .category-list {
  display: none;
}

.product-list-v2 .sidebar-current {
  color: var(--primary-color);
  font-size: 13px;
  margin-left: auto;
  margin-right: 8px;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-list-v2 .sidebar-toggle:not(.collapsed) .sidebar-current {
  display: none;
}

@media (max-width: 991px) {
  .product-list-v2 .product-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-list-v2 .filter-group-body {
    max-height: 320px;
  }

}

@media (max-width: 575.98px) {
  .product-list-v2 .neibanner {
    min-height: 240px;
  }

  .product-list-v2 .neibanner .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-list-v2 .banner-neinav .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-list-v2 .product-card {
    flex-direction: column-reverse;
    padding: 16px;
    gap: 12px;
  }

  .product-list-v2 .product-card-right {
    flex: none;
    width: 100%;
  }

  .product-list-v2 .product-card-image {
    height: 180px;
  }

  .product-list-v2 .product-card-title a {
    font-size: 17px;
  }

  .product-list-v2 .product-card-info .info-row {
    grid-template-columns: minmax(88px, 34%) minmax(0, 1fr);
    align-items: center;
  }

  .product-list-v2 .product-card-info .info-label {
    min-width: 0;
  }

  .product-list-v2 .product-card-links {
    margin-top: 8px;
  }
}
