/* GSEE product list page redesign
   Scope: only list_three.blade.php.  Keep original JS / Ajax / filter features unchanged. */
.gsee-product-list-page {
  --gsee-navy: #071d49;
  --gsee-blue: #1d74c9;
  --gsee-blue-dark: #234fb3;
  --gsee-red: #cf0036;
  --gsee-green: #10964f;
  --gsee-bg: #f5f8fc;
  --gsee-card: #ffffff;
  --gsee-line: #e3e9f2;
  --gsee-text: #172033;
  --gsee-muted: #667085;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 34%, #fff 100%);
  color: var(--gsee-text);
  padding: 34px 0 0;
  overflow: hidden;
}

.gsee-product-list-page *,
.gsee-product-list-page *::before,
.gsee-product-list-page *::after { box-sizing: border-box; }
.gsee-product-list-page a { color: inherit; text-decoration: none; }
.gsee-product-list-page img { max-width: 100%; }

.gsee-product-list-page .main,
.gsee-product-list-page .w1600,
.gsee-product-list-page .proBox,
.gsee-product-list-page .proDetail {
  width: min(1480px, calc(100vw - 72px));
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

/* breadcrumb */
.gsee-product-list-page .bread {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 14px;
}
.gsee-product-list-page .bread a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667085;
  transition: color .18s ease;
}
.gsee-product-list-page .bread a:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #b8c3d3;
}
.gsee-product-list-page .bread a:hover,
.gsee-product-list-page .bread a:last-child { color: var(--gsee-blue-dark); }
.gsee-product-list-page .bread img { width: 15px; height: 15px; object-fit: contain; }
.gsee-product-list-page .hover_disbale { cursor: default !important; }

/* top category intro */
.gsee-product-list-page .proDetailTop {
  position: relative;
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: center;
  gap: 54px;
  min-height: 250px;
  padding: 38px 54px;
  border: 1px solid rgba(7, 29, 73, .08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(29, 116, 201, .12), transparent 32%),
    linear-gradient(135deg, #fff, #f8fbff);
  box-shadow: 0 18px 55px rgba(7, 29, 73, .08);
  overflow: hidden;
}
.gsee-product-list-page .proDetailTop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--gsee-red), var(--gsee-blue-dark));
}
.gsee-product-list-page .proDetailTop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background-image: repeating-linear-gradient(90deg, rgba(7, 29, 73, .08) 0 1px, transparent 1px 44px);
  opacity: .45;
  pointer-events: none;
}
.gsee-product-list-page .proDetailImg,
.gsee-product-list-page .proDetailright { position: relative; z-index: 1; }
.gsee-product-list-page .proDetailImg {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 170px;
}
.gsee-product-list-page .proDetailImg img {
  max-height: 185px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(7, 29, 73, .12));
}
.gsee-product-list-page .proDetailTitle {
  margin: 0 0 14px;
  color: var(--gsee-navy);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}
.gsee-product-list-page .proDetailContent {
  max-width: 820px;
  color: #4d5870;
  font-size: 15px;
  line-height: 1.9;
}

/* selected filter tags */
.gsee-product-list-page .swiper-div {
  position: relative;
  min-height: 56px;
  margin: 22px 0 18px;
  padding: 10px 54px;
  border: 1px solid var(--gsee-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, .055);
}
.gsee-product-list-page .swiper { width: 100%; height: 100%; margin-bottom: 0; }
.gsee-product-list-page .swiper-wrapper { align-items: center; }
.gsee-product-list-page .swiper-slide {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsee-product-list-page .slide-btn button { border: 0; background: transparent; padding: 0; }
.gsee-product-list-page .slide-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 14px;
  border-radius: 999px;
  background: rgba(29, 116, 201, .1);
  color: var(--gsee-blue-dark);
  font-weight: 700;
}
.gsee-product-list-page .slide-btn p { margin: 0; display: inline-flex; width: 15px; height: 15px; }
.gsee-product-list-page .slide-btn img { width: 15px !important; height: 15px !important; object-fit: contain; }
.gsee-product-list-page .swiper-button-next,
.gsee-product-list-page .swiper-button-prev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f6f8fb;
  border: 1px solid var(--gsee-line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}
.gsee-product-list-page .swiper-button-next::after,
.gsee-product-list-page .swiper-button-prev::after { display: none; }
.gsee-product-list-page .swiper-button-next img,
.gsee-product-list-page .swiper-button-prev img { width: 13px; height: 13px; object-fit: contain; }

/* compare bar */
.gsee-product-list-page .addCompare { margin: 0 0 18px; }
.gsee-product-list-page .compareList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 0;
}
.gsee-product-list-page .compareL {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 260px;
  padding: 7px 12px;
  border: 1px solid var(--gsee-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.055);
  color: #273247;
  font-size: 13px;
}
.gsee-product-list-page .compareL span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gsee-product-list-page .proCImg { width: 32px; height: 32px; object-fit: contain; }
.gsee-product-list-page .proClose { width: 14px; height: 14px; cursor: pointer; opacity: .75; }

/* layout */
.gsee-product-list-page .search_list {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 18px;
  margin-bottom: 24px;
}

/* left filters */
.gsee-product-list-page .search_Lleft {
  position: sticky;
  top: 92px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 73, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}
.gsee-product-list-page .select_clear {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--gsee-navy), var(--gsee-red));
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.gsee-product-list-page .select_clear span { display: inline-flex; width: 16px; height: 16px; }
.gsee-product-list-page .select_clear img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.gsee-product-list-page .search_LleftTitle {
  margin: 0;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--gsee-line);
  color: var(--gsee-navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .2px;
}
.gsee-product-list-page .search_L { border-bottom: 1px solid #edf1f7; }
.gsee-product-list-page .search_L:last-child { border-bottom: 0; }
.gsee-product-list-page .select_title {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px 0 50px;
  color: #26334d;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.gsee-product-list-page .select_title:hover,
.gsee-product-list-page .search_L.is-open .select_title {
  background: #f7faff;
  color: var(--gsee-blue-dark);
}
/* plus/minus icon */
.gsee-product-list-page .select_title::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.gsee-product-list-page .search_L.is-open .select_title::before { content: "−"; font-size: 17px; }
.gsee-product-list-page .select_title span { min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gsee-product-list-page .xialaimg { display: none !important; }
.gsee-product-list-page .select_order,
.gsee-product-list-page .search_slide .d1 { display: none; }
.gsee-product-list-page .select_order { padding: 0 20px 16px 50px; }
.gsee-product-list-page .select_order > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 28px;
  color: #5f6b80;
  font-size: 13px;
  line-height: 1.35;
}
.gsee-product-list-page .select_order input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid #b9c4d4;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.gsee-product-list-page .select_order input[type="radio"]:checked {
  border-color: var(--gsee-blue-dark);
  background: var(--gsee-blue-dark);
  box-shadow: inset 0 0 0 3px #fff;
}
.gsee-product-list-page .search_slide .d1 { padding: 5px 20px 18px 50px; }
.gsee-product-list-page .waijing { margin: 12px 6px 9px; }
.gsee-product-list-page .d2 { display: flex; justify-content: space-between; gap: 8px; color: #667085; font-size: 12px; }
.gsee-product-list-page .d2 p { margin: 0; }
.gsee-product-list-page .layui-slider-wrap-btn { border-color: var(--gsee-blue-dark) !important; }
.gsee-product-list-page .layui-slider-bar { background: var(--gsee-blue-dark) !important; }

/* right list shell */
.gsee-product-list-page .search_Lright { min-width: 0; }
.gsee-product-list-page .search_Lright > .search,
.gsee-product-list-page .search_Lright .search {
  width: 100%;
  min-height: 520px;
  border: 1px solid rgba(7,29,73,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
  overflow: hidden;
}

/* Ajax product-list toolbar / header area */
.gsee-product-list-page .seach_R2,
.gsee-product-list-page .seach_R4 {
  overflow-x: auto;
  scrollbar-width: thin;
}
.gsee-product-list-page .seach_R2::-webkit-scrollbar,
.gsee-product-list-page .seach_R4::-webkit-scrollbar { height: 8px; }
.gsee-product-list-page .seach_R2::-webkit-scrollbar-thumb,
.gsee-product-list-page .seach_R4::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
.gsee-product-list-page .seach_R2 {
  min-height: 56px;
  padding: 16px 22px 10px;
  border-bottom: 1px solid var(--gsee-line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  color: #344054;
  font-size: 14px;
}
.gsee-product-list-page .seach_R3 { background: #fff; }
.gsee-product-list-page .R31 { width: 100%; }
.gsee-product-list-page .seach_R4 {
  border-top: 1px solid var(--gsee-line);
  background: #f8fbff;
}

/* Product rows returned by /getproduct. Keep the original classes, only reshape the appearance. */
.gsee-product-list-page .search_Lright .hoverbijiao_parent {
  position: relative;
  display: grid !important;
  grid-template-columns: 156px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100% !important;
  min-height: 150px;
  padding: 20px 22px;
  border-bottom: 1px solid #edf1f7;
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent:hover {
  z-index: 1;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(29,116,201,.09);
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent:last-child { border-bottom: 0; }

/* Make product image stay in a clean thumbnail block */
.gsee-product-list-page .search_Lright .hoverbijiao_parent > *:first-child,
.gsee-product-list-page .search_Lright .resultImg,
.gsee-product-list-page .search_Lright .proImg,
.gsee-product-list-page .search_Lright .img,
.gsee-product-list-page .search_Lright .product-img {
  width: 136px !important;
  height: 112px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15,23,42,.055);
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent > *:first-child img,
.gsee-product-list-page .search_Lright .resultImg img,
.gsee-product-list-page .search_Lright .proImg img,
.gsee-product-list-page .search_Lright .img img,
.gsee-product-list-page .search_Lright .product-img img {
  max-width: 92% !important;
  max-height: 92% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Text area: product title first, parameters directly underneath */
.gsee-product-list-page .search_Lright .hoverbijiao_parent > *:nth-child(2) {
  min-width: 0;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent a,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .title,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .product-title,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .proTitle {
  color: var(--gsee-navy) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent p,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .desc,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .content,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .params,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .param {
  margin: 8px 0 0 !important;
  color: #526078 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent .desc,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent .status,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--gsee-green) !important;
  font-size: 13px !important;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent .status::before,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .available::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gsee-green);
}

/* Row action icons */
.gsee-product-list-page .search_Lright .hoverbijiao_parent > *:last-child,
.gsee-product-list-page .search_Lright .actions,
.gsee-product-list-page .search_Lright .operation,
.gsee-product-list-page .search_Lright .op {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 112px;
}
.gsee-product-list-page .compare,
.gsee-product-list-page .collect,
.gsee-product-list-page .open-modal,
.gsee-product-list-page .all-column-btn,
.gsee-product-list-page .desc,
.gsee-product-list-page .asc { cursor: pointer; }
.gsee-product-list-page .search_Lright .hoverbijiao_parent .compare,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .collect,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .download,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e4ebf5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.gsee-product-list-page .search_Lright .hoverbijiao_parent .compare:hover,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .collect:hover,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .download:hover,
.gsee-product-list-page .search_Lright .hoverbijiao_parent .icon:hover {
  background: rgba(29,116,201,.08);
  border-color: rgba(29,116,201,.28);
  transform: translateY(-1px);
}
.gsee-product-list-page .none { display: none !important; }

/* Table-like data generated by old code */
.gsee-product-list-page .search_Lright .tr {
  border-bottom: 1px solid #edf1f7;
}
.gsee-product-list-page .search_Lright .tr.tj {
  background: #f8fbff;
  color: var(--gsee-navy);
  font-weight: 800;
}
.gsee-product-list-page .search_Lright .tr.data {
  color: #526078;
}
.gsee-product-list-page .search_Lright table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.gsee-product-list-page .search_Lright th,
.gsee-product-list-page .search_Lright td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f7;
  color: #344054;
  font-size: 14px;
  vertical-align: middle;
}
.gsee-product-list-page .search_Lright th {
  color: var(--gsee-navy);
  background: #f8fbff;
  font-weight: 900;
}

/* pagination */
.gsee-product-list-page .search_Lright .page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 24px 16px 28px;
  background: #fff;
}
.gsee-product-list-page .search_Lright .page a,
.gsee-product-list-page .search_Lright .page span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--gsee-line);
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}
.gsee-product-list-page .search_Lright .page .active,
.gsee-product-list-page .search_Lright .page a:hover {
  color: #fff;
  border-color: var(--gsee-blue-dark);
  background: var(--gsee-blue-dark);
}

/* modal */
.gsee-product-list-page .modal {
  position: fixed;
  z-index: 100000;
  inset: 0;
  padding: 42px 18px;
  overflow-y: auto;
  background: rgba(6, 15, 35, .58);
  backdrop-filter: blur(5px);
}
.gsee-product-list-page .modal-content {
  width: min(780px, 100%);
  margin: 40px auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  overflow: hidden;
}
.gsee-product-list-page .modal-content_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 20px 26px;
  background: linear-gradient(135deg, var(--gsee-navy), var(--gsee-blue-dark));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.gsee-product-list-page .close { cursor: pointer; font-size: 28px; line-height: 1; opacity: .86; }
.gsee-product-list-page .title-1 { margin: 0; padding: 20px 26px 8px; color: var(--gsee-muted); font-size: 14px; }
.gsee-product-list-page .modal-content_2 { padding: 8px 26px 26px; }
.gsee-product-list-page .modal-text {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.gsee-product-list-page .modal-text_1 {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--gsee-line);
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
}
.gsee-product-list-page .p-img {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #b9c3d3;
  background: #fff;
  position: relative;
}
.gsee-product-list-page .p-img.active { border-color: var(--gsee-blue-dark); background: var(--gsee-blue-dark); }
.gsee-product-list-page .p-img.active::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.gsee-product-list-page .p-title {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #344054;
  font-size: 13px;
}
.gsee-product-list-page .modal-content_3 {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 26px 26px;
  border-top: 1px solid var(--gsee-line);
}
.gsee-product-list-page .modal-btn_1 {
  min-width: 130px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--gsee-blue-dark);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.gsee-product-list-page .modal-btn_1:last-child { background: #eef2f7; color: #243047; }
.gsee-product-list-page .modal-btn_1 a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: inherit;
}

@media (max-width: 1200px) {
  .gsee-product-list-page .main,
  .gsee-product-list-page .w1600,
  .gsee-product-list-page .proBox,
  .gsee-product-list-page .proDetail { width: min(100% - 36px, 1120px); }
  .gsee-product-list-page .search_list { grid-template-columns: 280px minmax(0, 1fr); gap: 18px; }
  .gsee-product-list-page .proDetailTop { gap: 32px; padding: 34px 38px; }
  .gsee-product-list-page .search_Lright .hoverbijiao_parent { grid-template-columns: 136px minmax(0, 1fr); }
  .gsee-product-list-page .search_Lright .hoverbijiao_parent > *:last-child,
  .gsee-product-list-page .search_Lright .actions,
  .gsee-product-list-page .search_Lright .operation,
  .gsee-product-list-page .search_Lright .op { grid-column: 2; justify-content: flex-start; margin-top: 8px; }
}
@media (max-width: 900px) {
  .gsee-product-list-page { padding-top: 22px; }
  .gsee-product-list-page .proDetailTop { grid-template-columns: 1fr; gap: 20px; padding: 28px 22px; border-radius: 22px; }
  .gsee-product-list-page .proDetailTitle { font-size: 26px; }
  .gsee-product-list-page .proDetailContent { font-size: 14px; }
  .gsee-product-list-page .search_list { grid-template-columns: 1fr; }
  .gsee-product-list-page .search_Lleft { position: relative; top: auto; }
  .gsee-product-list-page .swiper-div { padding: 10px 42px; }
  .gsee-product-list-page .modal-text { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gsee-product-list-page .main,
  .gsee-product-list-page .w1600,
  .gsee-product-list-page .proBox,
  .gsee-product-list-page .proDetail { width: calc(100% - 24px); }
  .gsee-product-list-page .bread { font-size: 12px; }
  .gsee-product-list-page .proDetailImg img { max-height: 150px; }
  .gsee-product-list-page .proDetailTitle { font-size: 22px; }
  .gsee-product-list-page .search_LleftTitle { font-size: 16px; }
  .gsee-product-list-page .search_Lright .hoverbijiao_parent { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .gsee-product-list-page .search_Lright .hoverbijiao_parent > *:first-child,
  .gsee-product-list-page .search_Lright .resultImg,
  .gsee-product-list-page .search_Lright .proImg,
  .gsee-product-list-page .search_Lright .img,
  .gsee-product-list-page .search_Lright .product-img { width: 100% !important; height: 150px !important; }
  .gsee-product-list-page .search_Lright .hoverbijiao_parent > *:last-child,
  .gsee-product-list-page .search_Lright .actions,
  .gsee-product-list-page .search_Lright .operation,
  .gsee-product-list-page .search_Lright .op { grid-column: auto; justify-content: flex-start; }
  .gsee-product-list-page .modal-text { grid-template-columns: 1fr; }
  .gsee-product-list-page .modal-content_3 { flex-direction: column; }
  .gsee-product-list-page .modal-btn_1 { width: 100%; }
}

/* v3 fix: remove old horizontal parameter scroller and rebuild product rows */
.gsee-product-list-page .gsee-product-result-shell {
  width: 100%;
  min-height: 560px;
  border: 1px solid rgba(7,29,73,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
  overflow: hidden;
}
.gsee-product-list-page .gsee-old-param-hidden,
.gsee-product-list-page .seach_R2.gsee-old-param-hidden,
.gsee-product-list-page .seach_R4.gsee-old-param-hidden {
  display: none !important;
}
.gsee-product-list-page .search_Lright {
  min-width: 0;
  overflow: visible !important;
}
.gsee-product-list-page .search_Lright .search,
.gsee-product-list-page .search_Lright > .search {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.gsee-product-list-page .search_Lright .seach_R3,
.gsee-product-list-page .search_Lright .R31 {
  width: 100% !important;
  overflow: visible !important;
  background: #fff;
}
.gsee-product-list-page .gsee-product-row {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) 150px !important;
  align-items: center !important;
  gap: 22px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 156px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 22px 26px !important;
  border: 0 !important;
  border-bottom: 1px solid #e8edf5 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
}
.gsee-product-list-page .gsee-product-row:hover {
  background: #f8fbff !important;
  box-shadow: inset 4px 0 0 var(--gsee-blue-dark), 0 12px 28px rgba(29,116,201,.08) !important;
}
.gsee-product-list-page .gsee-product-thumb {
  width: 136px !important;
  height: 112px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #e4ebf5 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.055) !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-thumb img {
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  display: block !important;
}
.gsee-product-list-page .gsee-product-info {
  min-width: 0 !important;
  display: block !important;
}
.gsee-product-list-page .gsee-product-name {
  display: inline !important;
  color: var(--gsee-navy) !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}
.gsee-product-list-page .gsee-product-name:hover { color: var(--gsee-blue-dark) !important; }
.gsee-product-list-page .gsee-product-params {
  margin-top: 9px !important;
  max-width: 820px !important;
  color: #4f5f78 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  color: var(--gsee-green) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.gsee-product-list-page .gsee-product-status span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--gsee-green) !important;
}
.gsee-product-list-page .gsee-product-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 130px !important;
}
.gsee-product-list-page .gsee-product-actions > * {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid #e4ebf5 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--gsee-blue-dark) !important;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-actions > *:hover {
  background: rgba(29,116,201,.08) !important;
  border-color: rgba(29,116,201,.28) !important;
  transform: translateY(-1px) !important;
}
.gsee-product-list-page .gsee-product-actions img {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  object-fit: contain !important;
}
.gsee-product-list-page .page {
  padding: 22px 24px !important;
  border-top: 1px solid #e8edf5 !important;
  background: #f8fbff !important;
}

@media (max-width: 1100px) {
  .gsee-product-list-page .gsee-product-row {
    grid-template-columns: 136px minmax(0, 1fr) !important;
  }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: 2;
    justify-content: flex-start !important;
    margin-top: -4px !important;
  }
}
@media (max-width: 768px) {
  .gsee-product-list-page .gsee-product-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .gsee-product-list-page .gsee-product-thumb {
    width: 100% !important;
    height: 160px !important;
  }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: auto;
  }
}

/* v4 ajax normalize fix: force Ajax-loaded product rows to match target list style */
.gsee-product-list-page .gsee-product-result-shell {
  width: 100% !important;
  min-height: 560px;
  border: 1px solid rgba(7,29,73,.08) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(15,23,42,.08) !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-result-shell .search {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  min-height: 0 !important;
}
.gsee-product-list-page .gsee-old-param-hidden,
.gsee-product-list-page .seach_R2.gsee-old-param-hidden,
.gsee-product-list-page .seach_R4.gsee-old-param-hidden,
.gsee-product-list-page .tr.tj.gsee-old-param-hidden,
.gsee-product-list-page .tr.data.gsee-old-param-hidden {
  display: none !important;
}
.gsee-product-list-page .gsee-product-result-shell .seach_R3,
.gsee-product-list-page .gsee-product-result-shell .R31 {
  width: 100% !important;
  overflow: visible !important;
  background: #fff !important;
}
.gsee-product-list-page .gsee-product-row,
.gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 155px minmax(0, 1fr) 150px !important;
  align-items: center !important;
  gap: 22px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 155px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 20px 26px !important;
  border: 0 !important;
  border-bottom: 1px solid #e8edf5 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: visible !important;
  cursor: pointer !important;
}
.gsee-product-list-page .gsee-product-row:hover {
  background: #f8fbff !important;
  box-shadow: inset 4px 0 0 var(--gsee-blue-dark), 0 12px 28px rgba(29,116,201,.08) !important;
}
.gsee-product-list-page .gsee-product-thumb {
  position: relative !important;
  width: 136px !important;
  height: 112px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #e5ebf4 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.055) !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-thumb img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
}
.gsee-product-list-page .gsee-product-badge {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 22px !important;
  padding: 0 8px !important;
  background: var(--gsee-red) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;
}
.gsee-product-list-page .gsee-product-info {
  min-width: 0 !important;
  color: #172033 !important;
}
.gsee-product-list-page .gsee-product-name {
  display: inline !important;
  color: var(--gsee-navy) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  overflow-wrap: anywhere !important;
}
.gsee-product-list-page .gsee-product-name:hover { color: var(--gsee-blue-dark) !important; }
.gsee-product-list-page .gsee-product-code {
  margin-top: 14px !important;
  color: #38445a !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}
.gsee-product-list-page .gsee-product-params {
  margin-top: 8px !important;
  max-width: 860px !important;
  color: #4d5870 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  color: #2f3a4e !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.gsee-product-list-page .gsee-product-status span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #0aa34f !important;
}
.gsee-product-list-page .gsee-product-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 12px !important;
  min-width: 130px !important;
  align-self: start !important;
  padding-top: 3px !important;
}
.gsee-product-list-page .gsee-product-actions > * {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0f7897 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-actions > *:hover {
  transform: translateY(-1px) !important;
  opacity: .78 !important;
}
.gsee-product-list-page .gsee-product-actions img {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  object-fit: contain !important;
}
.gsee-product-list-page .gsee-product-actions .none { display: none !important; }

@media (max-width: 1100px) {
  .gsee-product-list-page .gsee-product-row,
  .gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
    grid-template-columns: 136px minmax(0, 1fr) !important;
  }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: 2 !important;
    justify-content: flex-start !important;
    align-self: auto !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .gsee-product-list-page .gsee-product-row,
  .gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .gsee-product-list-page .gsee-product-thumb {
    width: 100% !important;
    height: 160px !important;
  }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: auto !important;
  }
}

/* Ajax converted product list: current /getproduct returns .seach_R4 > .th rows */
.gsee-product-list-page .gsee-product-result-shell > style,
.gsee-product-list-page .search_Lright style {
  display: none !important;
}
.gsee-product-list-page .gsee-converted-product-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--gsee-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}
.gsee-product-list-page .gsee-product-row {
  width: 100%;
  min-height: 150px;
  display: grid !important;
  grid-template-columns: 176px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: #fff;
  border-bottom: 1px solid #e6ebf3;
  cursor: pointer;
  position: relative;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.gsee-product-list-page .gsee-product-row:last-child { border-bottom: 0; }
.gsee-product-list-page .gsee-product-row:hover {
  background: #f8fbff;
  box-shadow: inset 4px 0 0 var(--gsee-blue);
}
.gsee-product-list-page .gsee-product-thumb {
  position: relative;
  width: 150px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e6ebf3;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  overflow: hidden;
}
.gsee-product-list-page .gsee-product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 10px;
}
.gsee-product-list-page .gsee-product-badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 4px 8px;
  background: var(--gsee-red);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
}
.gsee-product-list-page .gsee-product-info {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gsee-product-list-page .gsee-product-name {
  display: block;
  color: var(--gsee-text);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gsee-product-list-page .gsee-product-code {
  margin-top: 12px;
  color: #4f5b6f;
  font-size: 14px;
  line-height: 1.4;
}
.gsee-product-list-page .gsee-product-params {
  margin-top: 8px;
  color: #3c4658;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gsee-product-list-page .gsee-product-status {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
}
.gsee-product-list-page .gsee-product-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10a83b;
  display: inline-block;
}
.gsee-product-list-page .gsee-product-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  align-self: stretch;
  padding-top: 6px;
  border-left: 1px solid #e6ebf3;
}
.gsee-product-list-page .gsee-action-icon {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #234055;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.gsee-product-list-page .gsee-action-icon:hover {
  color: var(--gsee-blue);
  transform: translateY(-1px);
}
.gsee-product-list-page .seach_R2,
.gsee-product-list-page .seach_R4,
.gsee-product-list-page .hoverbijiao_box,
.gsee-product-list-page .gsee-old-param-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .gsee-product-list-page .gsee-product-row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }
  .gsee-product-list-page .gsee-product-thumb { width: 112px; height: 96px; }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid #e6ebf3;
    padding-top: 10px;
  }
  .gsee-product-list-page .gsee-product-name { font-size: 16px; }
}

/* ===== v3 fixes: selected filters, toolbar, pagination and normalized Ajax rows ===== */
.gsee-product-list-page .swiper-div {
  min-height: auto;
  padding: 16px 58px;
  overflow: hidden;
}
.gsee-product-list-page .swiper-wrapper {
  align-items: center;
}
.gsee-product-list-page .swiper-slide {
  width: auto !important;
  flex: 0 0 auto;
}
.gsee-product-list-page .slide-btn a {
  min-height: 38px;
  max-width: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding: 8px 12px 8px 16px;
}
.gsee-product-list-page .slide-btn span {
  white-space: nowrap;
  word-break: keep-all;
  line-height: 1.2;
}
.gsee-product-list-page .slide-btn p,
.gsee-product-list-page .slide-btn .removetj {
  flex: 0 0 14px;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  margin: 0;
}
.gsee-product-list-page .gsee-product-result-shell {
  width: 100%;
}
.gsee-product-list-page .gsee-list-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(7, 29, 73, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}
.gsee-product-list-page .gsee-list-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.gsee-product-list-page .gsee-result-count {
  color: var(--gsee-navy);
  font-size: 15px;
  font-weight: 900;
  margin-right: 4px;
  white-space: nowrap;
}
.gsee-product-list-page .gsee-size-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f3f6fb;
}
.gsee-product-list-page .gsee-size-btn,
.gsee-product-list-page .gsee-toolbar-btn {
  height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: #f3f6fb;
  color: #1d2a44;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.gsee-product-list-page .gsee-size-btn.active,
.gsee-product-list-page .gsee-size-btn:hover,
.gsee-product-list-page .gsee-toolbar-btn:hover {
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-blue));
  color: #fff;
}
.gsee-product-list-page .gsee-toolbar-btn.addCompareBtn1 {
  background: linear-gradient(135deg, var(--gsee-red), var(--gsee-blue-dark));
  color: #fff;
}
.gsee-product-list-page .gsee-top-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.gsee-product-list-page .gsee-top-pagination .page {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 0 !important;
  margin: 0 !important;
}
.gsee-product-list-page .gsee-top-pagination .pageNum {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gsee-product-list-page .gsee-top-pagination .page a {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f6fb;
  color: #1d2a44;
  font-size: 13px;
  font-weight: 800;
}
.gsee-product-list-page .gsee-top-pagination .page a.active,
.gsee-product-list-page .gsee-top-pagination .page a:hover {
  background: var(--gsee-blue-dark);
  color: #fff;
}
.gsee-product-list-page .gsee-converted-product-list {
  border: 1px solid rgba(7,29,73,.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}
.gsee-product-list-page .gsee-product-row {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) 236px;
  align-items: center;
  gap: 22px;
  min-height: 142px;
  padding: 18px 22px;
  border-bottom: 1px solid #e8edf5;
  background: #fff;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}
.gsee-product-list-page .gsee-product-row:last-child { border-bottom: 0; }
.gsee-product-list-page .gsee-product-row:hover {
  background: #f8fbff;
  box-shadow: inset 4px 0 0 var(--gsee-blue-dark);
}
.gsee-product-list-page .gsee-product-thumb {
  position: relative;
  width: 136px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5ebf3;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.gsee-product-list-page .gsee-product-thumb img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.gsee-product-list-page .gsee-product-badge {
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px 8px;
  background: var(--gsee-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}
.gsee-product-list-page .gsee-product-info { min-width: 0; }
.gsee-product-list-page .gsee-product-name {
  display: inline-block;
  max-width: 100%;
  color: var(--gsee-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gsee-product-list-page .gsee-product-params {
  margin-top: 10px;
  color: #526078;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.gsee-product-list-page .gsee-product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gsee-green);
  font-size: 13px;
  font-weight: 700;
}
.gsee-product-list-page .gsee-product-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gsee-green);
}
.gsee-product-list-page .gsee-product-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  opacity: 1 !important;
  visibility: visible !important;
}
.gsee-product-list-page .gsee-action-icon {
  min-width: 64px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe7f2;
  border-radius: 999px;
  background: #fff;
  color: #13243f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: nowrap;
}
.gsee-product-list-page .gsee-action-icon:hover {
  border-color: var(--gsee-blue-dark);
  background: rgba(35,79,179,.08);
  color: var(--gsee-blue-dark);
}
.gsee-product-list-page .gsee-action-view {
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-blue));
  color: #fff;
  border-color: transparent;
}
.gsee-product-list-page .gsee-action-view:hover { color: #fff; }
.gsee-product-list-page .gsee-action-icon img.none { display: none !important; }

@media (max-width: 1200px) {
  .gsee-product-list-page .gsee-list-topbar { align-items: flex-start; flex-direction: column; }
  .gsee-product-list-page .gsee-top-pagination { width: 100%; justify-content: flex-start; overflow-x: auto; }
  .gsee-product-list-page .gsee-product-row { grid-template-columns: 130px minmax(0, 1fr); }
  .gsee-product-list-page .gsee-product-actions { grid-column: 2; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .gsee-product-list-page .slide-btn a { max-width: 80vw; }
  .gsee-product-list-page .gsee-product-row { grid-template-columns: 1fr; }
  .gsee-product-list-page .gsee-product-thumb { width: 100%; height: 160px; }
  .gsee-product-list-page .gsee-product-actions { grid-column: auto; }
}

/* ===== v4 fixes: selected filters, toolbar, pagination and product row extraction ===== */
.gsee-product-list-page .swiper-div {
  display: none;
  margin: 22px 0 18px;
  padding: 14px 58px;
  min-height: 64px;
  border-radius: 18px;
}
.gsee-product-list-page .swiper-div .swiper {
  width: 100%;
  overflow: hidden;
}
.gsee-product-list-page .swiper-div .swiper-wrapper {
  align-items: center;
}
.gsee-product-list-page .swiper-div .swiper-slide {
  width: auto !important;
  flex: 0 0 auto !important;
}
.gsee-product-list-page .gsee-selected-clear {
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gsee-navy), var(--gsee-red));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.gsee-product-list-page .slide-btn a {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 12px 0 16px !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
}
.gsee-product-list-page .slide-btn span {
  display: inline-block !important;
  max-width: none !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  line-height: 1 !important;
}
.gsee-product-list-page .slide-btn p,
.gsee-product-list-page .slide-btn .removetj {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  flex: 0 0 14px !important;
}

.gsee-product-list-page .gsee-list-topbar {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 16px 20px !important;
  margin: 0 0 16px !important;
  border-radius: 18px !important;
}
.gsee-product-list-page .gsee-list-tools {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}
.gsee-product-list-page .gsee-result-count {
  margin: 0 6px !important;
  color: #26324a !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-size-switch,
.gsee-product-list-page .gsee-size-btn,
.gsee-product-list-page .all-column-btn {
  display: none !important;
}
.gsee-product-list-page .gsee-toolbar-btn {
  height: 36px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #eef3f9 !important;
  color: #15233c !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-toolbar-primary {
  background: linear-gradient(135deg, var(--gsee-red), var(--gsee-blue-dark)) !important;
  color: #fff !important;
}
.gsee-product-list-page .gsee-top-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  overflow: visible !important;
}
.gsee-product-list-page .gsee-top-pagination .page {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.gsee-product-list-page .gsee-top-pagination .pageNum {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}
.gsee-product-list-page .gsee-top-pagination .page a,
.gsee-product-list-page .gsee-top-pagination .page span {
  border: 0 !important;
  background: transparent !important;
  color: #050b18 !important;
  min-width: 34px !important;
  height: 34px !important;
  padding: 0 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
}
.gsee-product-list-page .gsee-top-pagination .page a.active {
  min-width: 54px !important;
  height: 54px !important;
  background: #087a39 !important;
  color: #fff !important;
}
.gsee-product-list-page .gsee-top-pagination .page .prev,
.gsee-product-list-page .gsee-top-pagination .page .next {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  padding: 0 !important;
  background: #fff !important;
  color: #087a39 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06) !important;
  font-size: 30px !important;
  font-weight: 400 !important;
}
.gsee-product-list-page .gsee-page-current {
  height: 54px;
  min-width: 116px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  background: #fff;
  color: #071d49;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
  font-size: 15px;
  font-weight: 800;
}
.gsee-product-list-page .gsee-page-current b {
  color: #087a39;
  font-size: 18px;
  line-height: 1;
}

.gsee-product-list-page .gsee-converted-product-list {
  border-radius: 18px !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-row {
  grid-template-columns: 156px minmax(0, 1fr) 230px !important;
  min-height: 145px !important;
}
.gsee-product-list-page .gsee-product-params {
  -webkit-line-clamp: 2 !important;
}
.gsee-product-list-page .gsee-product-actions {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}
.gsee-product-list-page .gsee-action-icon {
  min-width: 62px !important;
  height: 34px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #13243f !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-action-view {
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-blue)) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.gsee-product-list-page .gsee-action-icon img.none { display: none !important; }

@media (max-width: 1200px) {
  .gsee-product-list-page .gsee-list-topbar { grid-template-columns: 1fr !important; }
  .gsee-product-list-page .gsee-top-pagination { justify-content: flex-start !important; overflow-x: auto !important; }
  .gsee-product-list-page .gsee-product-row { grid-template-columns: 130px minmax(0, 1fr) !important; }
  .gsee-product-list-page .gsee-product-actions { grid-column: 2 !important; justify-content: flex-start !important; }
}
@media (max-width: 768px) {
  .gsee-product-list-page .swiper-div { padding: 12px 42px; }
  .gsee-product-list-page .gsee-list-tools { flex-wrap: wrap !important; }
  .gsee-product-list-page .gsee-top-pagination .pageNum { gap: 8px !important; }
  .gsee-product-list-page .gsee-top-pagination .page .prev,
  .gsee-product-list-page .gsee-top-pagination .page .next,
  .gsee-product-list-page .gsee-top-pagination .page a.active,
  .gsee-product-list-page .gsee-page-current { height: 42px !important; min-width: 42px !important; }
  .gsee-product-list-page .gsee-page-current { min-width: 88px !important; }
}

/* ===== v5 patch: selected filters + product actions ===== */
/* Remove the old sidebar Clear All bar; Clear All only appears in selected-filter chips. */
.gsee-product-list-page .search_Lleft > .select_clear {
  display: none !important;
}

/* Selected filter area: hide whole block if JS marks no selected items, and make Clear All a real button. */
.gsee-product-list-page .swiper-div {
  display: none;
}
.gsee-product-list-page .swiper-div:has(.swiper-slide:not(.swiper-slide-duplicate)) {
  display: block;
}
.gsee-product-list-page .gsee-selected-clear,
.gsee-product-list-page .gsee-clear-slide button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gsee-navy), var(--gsee-red)) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-shadow: 0 8px 18px rgba(9, 34, 79, .16) !important;
}

/* Product right-side actions must always be visible after Ajax conversion. */
.gsee-product-list-page .gsee-product-row {
  grid-template-columns: 150px minmax(0, 1fr) 260px !important;
}
.gsee-product-list-page .gsee-product-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 240px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.gsee-product-list-page .gsee-product-actions > *,
.gsee-product-list-page .gsee-action-icon {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 68px !important;
  height: 34px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border: 1px solid #dbe5f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #0b3f91 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: visible !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-actions > *:hover,
.gsee-product-list-page .gsee-action-icon:hover {
  background: #0b63ce !important;
  border-color: #0b63ce !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}
.gsee-product-list-page .gsee-product-actions img {
  width: 14px !important;
  height: 14px !important;
  margin-left: 4px !important;
}
.gsee-product-list-page .gsee-product-actions .none {
  display: none !important;
}

@media (max-width: 768px) {
  .gsee-product-list-page .gsee-product-row {
    grid-template-columns: 96px 1fr !important;
  }
  .gsee-product-list-page .gsee-product-actions {
    grid-column: 2 !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    flex-wrap: wrap !important;
  }
}

/* ===== v6 patch: fix wrong product title caused by reading hover action text ===== */
.gsee-product-list-page .gsee-empty-products {
  padding: 46px 24px !important;
  color: #64748b !important;
  font-size: 15px !important;
  text-align: center !important;
}
.gsee-product-list-page .gsee-product-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.gsee-product-list-page .gsee-product-name {
  display: inline-block !important;
  max-width: 100% !important;
  color: #071d49 !important;
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.gsee-product-list-page .gsee-product-params {
  margin-top: 10px !important;
  color: #4b5563 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

/* ===== v7 final override: match target product-row layout ===== */
.gsee-product-list-page .gsee-product-result-shell{
  background: transparent !important;
}
.gsee-product-list-page .gsee-converted-product-list{
  background: #fff !important;
  border: 1px solid #e6edf6 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 16px 45px rgba(15, 35, 70, .06) !important;
}
.gsee-product-list-page .gsee-product-row{
  position: relative !important;
  display: grid !important;
  grid-template-columns: 172px minmax(0, 1fr) 300px !important;
  align-items: center !important;
  gap: 20px !important;
  min-height: 154px !important;
  padding: 22px 26px !important;
  border-bottom: 1px solid #e6edf6 !important;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}
.gsee-product-list-page .gsee-product-row:last-child{border-bottom:0!important;}
.gsee-product-list-page .gsee-product-row:hover{background:#f8fbff!important;}
.gsee-product-list-page .gsee-product-thumb{
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 150px !important;
  height: 110px !important;
  border: 1px solid #dfe7f2 !important;
  background: #fff !important;
  overflow: hidden !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.06) !important;
}
.gsee-product-list-page .gsee-product-thumb img{
  max-width: 88% !important;
  max-height: 88% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.gsee-product-list-page .gsee-product-badge{
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 22px !important;
  min-width: 52px !important;
  padding: 0 9px !important;
  border-radius: 0 !important;
  background: #e40046 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .03em !important;
}
.gsee-product-list-page .gsee-product-info{
  min-width: 0 !important;
  align-self: center !important;
}
.gsee-product-list-page .gsee-product-name{
  display: inline-block !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: #071d49 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-code{
  margin-top: 14px !important;
  color: #20304a !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}
.gsee-product-list-page .gsee-product-params{
  max-width: 760px !important;
  margin-top: 13px !important;
  color: #4b5563 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.gsee-product-list-page .gsee-product-status{
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 14px !important;
  color: #1f2937 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.gsee-product-list-page .gsee-product-status span{
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #0ea44a !important;
  flex: 0 0 auto !important;
}
.gsee-product-list-page .gsee-product-actions{
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  min-width: 0 !important;
  width: 100% !important;
  padding-left: 42px !important;
  border-left: 1px solid #e2eaf5 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.gsee-product-list-page .gsee-product-actions > *,
.gsee-product-list-page .gsee-action-icon{
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #dbe5f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #0b3f91 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-actions > *:hover,
.gsee-product-list-page .gsee-action-icon:hover{
  background: #0b63ce !important;
  border-color: #0b63ce !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}
.gsee-product-list-page .gsee-product-actions img{display:none!important;}
.gsee-product-list-page .gsee-product-actions .none{display:none!important;}
@media (max-width: 1280px){
  .gsee-product-list-page .gsee-product-row{grid-template-columns:150px minmax(0,1fr) 240px!important; padding:20px!important;}
  .gsee-product-list-page .gsee-product-thumb{width:136px!important; height:104px!important;}
  .gsee-product-list-page .gsee-product-actions{padding-left:24px!important;}
  .gsee-product-list-page .gsee-action-icon{width:58px!important; min-width:58px!important; max-width:58px!important;}
}
@media (max-width: 900px){
  .gsee-product-list-page .gsee-product-row{grid-template-columns:116px minmax(0,1fr)!important; gap:14px!important;}
  .gsee-product-list-page .gsee-product-thumb{width:110px!important; height:92px!important;}
  .gsee-product-list-page .gsee-product-actions{grid-column:2!important; border-left:0!important; padding-left:0!important; justify-content:flex-start!important; margin-top:10px!important;}
}

/* ===== v5 fix: selected-filter clear, Ajax toolbar, pagination, row actions ===== */
.gsee-product-list-page .gsee-selected-filter-bar {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 66px !important;
  padding: 14px 54px 14px 18px !important;
}
.gsee-product-list-page .gsee-selected-filter-bar .swiper {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}
.gsee-product-list-page .gsee-selected-clear {
  flex: 0 0 auto !important;
  height: 36px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gsee-navy), var(--gsee-red)) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 18px rgba(207, 0, 54, .18) !important;
}
.gsee-product-list-page .gsee-selected-filter-bar:not(.has-selected) {
  display: none !important;
}

/* Give the first filter group breathing room under Filter Criteria */
.gsee-product-list-page .search_LleftTitle + .search_L {
  margin-top: 10px !important;
}

/* Ajax top toolbar: Start Comparing / Empty / Results / Edit Column */
.gsee-product-list-page .gsee-product-result-shell .seach_R1box {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--gsee-line) !important;
  background: linear-gradient(180deg, #fff, #f8fbff) !important;
  border-radius: 18px 18px 0 0 !important;
  color: #26324a !important;
}
.gsee-product-list-page .gsee-product-result-shell .addCompareBtn,
.gsee-product-list-page .gsee-product-result-shell .addCompareBtn.w1600 {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  order: 2 !important;
}
.gsee-product-list-page .gsee-product-result-shell .seach_R1 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
  order: 1 !important;
  color: #344054 !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
.gsee-product-list-page .gsee-product-result-shell .seach_R1 > div:first-child {
  color: var(--gsee-navy) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  margin-right: 8px !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-result-shell .spank {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 32px !important;
  padding: 0 12px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #344054 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}
.gsee-product-list-page .gsee-product-result-shell .spank.active,
.gsee-product-list-page .gsee-product-result-shell .spank:hover {
  background: var(--gsee-blue-dark) !important;
  border-color: var(--gsee-blue-dark) !important;
  color: #fff !important;
}
.gsee-product-list-page .gsee-product-result-shell .addCompareBtn1,
.gsee-product-list-page .gsee-product-result-shell .addCompareBtn2,
.gsee-product-list-page .gsee-product-result-shell .btn1,
.gsee-product-list-page .gsee-product-result-shell .btn2,
.gsee-product-list-page .gsee-product-result-shell .open-modal {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  min-width: auto !important;
  padding: 0 14px !important;
  margin: 0 !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #13243f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-result-shell .addCompareBtn1 {
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-blue)) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.gsee-product-list-page .gsee-product-result-shell .btn1 button,
.gsee-product-list-page .gsee-product-result-shell .btn2 button {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  font: inherit !important;
}
.gsee-product-list-page .gsee-product-result-shell .btn1 a,
.gsee-product-list-page .gsee-product-result-shell .btn2 a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Converted product list: remove ID column and view button, place compare/collect under product title */
.gsee-product-list-page .gsee-product-result-shell .gsee-converted-product-list {
  border-radius: 0 0 18px 18px !important;
  border-top: 0 !important;
}
.gsee-product-list-page .gsee-product-row,
.gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
  grid-template-columns: 156px minmax(0, 1fr) !important;
  gap: 22px !important;
  min-height: 142px !important;
  padding: 18px 24px !important;
}
.gsee-product-list-page .gsee-product-code {
  display: none !important;
}
.gsee-product-list-page .gsee-product-info .gsee-product-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  min-width: 0 !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  align-self: auto !important;
}
.gsee-product-list-page .gsee-product-actions > a,
.gsee-product-list-page .gsee-action-view {
  display: none !important;
}
.gsee-product-list-page .gsee-product-info .gsee-action-icon {
  width: auto !important;
  min-width: 72px !important;
  height: 30px !important;
  padding: 0 12px !important;
  border: 1px solid #dfe7f2 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #13243f !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}
.gsee-product-list-page .gsee-product-info .gsee-action-icon:hover {
  background: rgba(29,116,201,.08) !important;
  border-color: rgba(29,116,201,.26) !important;
  color: var(--gsee-blue-dark) !important;
  transform: translateY(-1px) !important;
}
.gsee-product-list-page .gsee-product-params {
  margin-top: 8px !important;
  color: #4d5870 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2 !important;
}

/* Pagination must stay visible after Ajax normalization */
.gsee-product-list-page .gsee-product-result-shell > .page,
.gsee-product-list-page .search_Lright .page {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 22px 18px 26px !important;
  border-top: 1px solid var(--gsee-line) !important;
  background: #f8fbff !important;
}
.gsee-product-list-page .search_Lright .page a,
.gsee-product-list-page .search_Lright .page span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid var(--gsee-line) !important;
  background: #fff !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.gsee-product-list-page .search_Lright .page a.active,
.gsee-product-list-page .search_Lright .page .active,
.gsee-product-list-page .search_Lright .page a:hover {
  color: #fff !important;
  border-color: var(--gsee-blue-dark) !important;
  background: var(--gsee-blue-dark) !important;
}

@media (max-width: 900px) {
  .gsee-product-list-page .gsee-selected-filter-bar {
    padding: 12px 42px 12px 12px !important;
    flex-wrap: wrap !important;
  }
  .gsee-product-list-page .gsee-selected-clear {
    order: 2 !important;
  }
  .gsee-product-list-page .gsee-product-result-shell .seach_R1box {
    align-items: flex-start !important;
  }
  .gsee-product-list-page .gsee-product-result-shell .addCompareBtn,
  .gsee-product-list-page .gsee-product-result-shell .seach_R1 {
    width: 100% !important;
  }
  .gsee-product-list-page .gsee-product-row,
  .gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
    grid-template-columns: 1fr !important;
  }
  .gsee-product-list-page .gsee-product-thumb {
    width: 100% !important;
    height: 160px !important;
  }
}


/* v2 small fixes: toolbar cleanup, top pagination, full params, no NEW badge */
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar,
.gsee-product-list-page .gsee-product-result-shell .seach_R1box.gsee-list-topbar {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  width: 100% !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--gsee-line) !important;
  background: linear-gradient(180deg,#fff,#f8fbff) !important;
  border-radius: 18px 18px 0 0 !important;
}
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .addCompareBtn,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .addCompareBtn.w1600 {
  grid-column: 1 !important;
  order: initial !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .seach_R1 {
  grid-column: 2 !important;
  order: initial !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #344054 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .seach_R1 > div:first-child {
  margin: 0 !important;
  color: var(--gsee-navy) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .spank,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .btn1,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .btn2,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .all-column-btn,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .open-modal {
  display: none !important;
}
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .page.gsee-page-inline,
.gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .page {
  grid-column: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 0 !important;
  background: transparent !important;
}
.gsee-product-list-page .gsee-product-badge {
  display: none !important;
}
.gsee-product-list-page .gsee-product-row,
.gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
  grid-template-columns: 156px minmax(0, 1fr) !important;
  align-items: start !important;
}
.gsee-product-list-page .gsee-product-info {
  width: 100% !important;
  min-width: 0 !important;
}
.gsee-product-list-page .gsee-product-params {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  overflow: visible !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  color: #4d5870 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}
.gsee-product-list-page .gsee-product-thumb {
  margin-top: 2px !important;
}
@media (max-width: 1100px){
  .gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar,
  .gsee-product-list-page .gsee-product-result-shell .seach_R1box.gsee-list-topbar {
    grid-template-columns: 1fr !important;
  }
  .gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .addCompareBtn,
  .gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .seach_R1,
  .gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .page.gsee-page-inline,
  .gsee-product-list-page .gsee-product-result-shell .gsee-list-topbar .page {
    grid-column: 1 !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 768px){
  .gsee-product-list-page .gsee-product-row,
  .gsee-product-list-page .search_Lright .gsee-product-row.hoverbijiao_parent {
    grid-template-columns: 1fr !important;
  }
}

/* v3 frontend-only compare feature */
.gsee-product-list-page .gsee-action-icon.compare.is-selected,
.gsee-product-list-page .gsee-product-actions .gsee-action-icon.compare.is-selected {
  background: linear-gradient(135deg, var(--gsee-blue-dark), var(--gsee-blue)) !important;
  border-color: var(--gsee-blue-dark) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(35, 79, 179, .22) !important;
}

.gsee-product-list-page .gsee-action-icon.compare.is-selected:hover {
  color: #fff !important;
  transform: translateY(-1px) !important;
}

body.gsee-compare-open {
  overflow: hidden;
}

.gsee-compare-modal,
.gsee-compare-modal * {
  box-sizing: border-box;
}

.gsee-compare-modal {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: none;
}

.gsee-compare-mask {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 35, .62);
  backdrop-filter: blur(6px);
}

.gsee-compare-panel {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 48px));
  max-height: calc(100vh - 60px);
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.gsee-compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid #e6edf6;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
}

.gsee-compare-head h3 {
  margin: 0;
  color: #071d49;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.gsee-compare-head p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 14px;
}

.gsee-compare-close {
  width: 42px;
  height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: #071d49;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gsee-compare-body {
  min-height: 260px;
  overflow: auto;
  background: #fff;
}

.gsee-compare-table-wrap {
  width: 100%;
  overflow: auto;
}

.gsee-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #172033;
}

.gsee-compare-table th,
.gsee-compare-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #e6edf6;
  border-right: 1px solid #e6edf6;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
  word-break: break-word;
}

.gsee-compare-table th {
  width: 220px;
  background: #f7faff;
  color: #071d49;
  font-weight: 900;
  text-align: right;
}

.gsee-compare-table td {
  background: #fff;
  color: #344054;
  font-weight: 600;
}

.gsee-compare-table tr:nth-child(n+3):hover td,
.gsee-compare-table tr:nth-child(n+3):hover th {
  background: #f8fbff;
}

.gsee-compare-images th,
.gsee-compare-images td {
  background: #f5f7fb !important;
  text-align: center;
}

.gsee-compare-imgbox {
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.gsee-compare-imgbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.gsee-compare-title-row th,
.gsee-compare-title-row td {
  background: #fff !important;
}

.gsee-compare-title-row td a {
  color: #cf0036;
  font-size: 18px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .gsee-compare-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    border-radius: 18px;
  }
  .gsee-compare-head {
    padding: 18px;
  }
  .gsee-compare-head h3 {
    font-size: 22px;
  }
  .gsee-compare-table th,
  .gsee-compare-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .gsee-compare-imgbox {
    height: 150px;
  }
}
