/* ============================================================
   PRODUCT LIST — V3 REFINED EDITION
   精细优化版：优雅动画 · 现代化视觉 · 高效交互
   ============================================================ */

:root {
  --plist-bg: #f4f7fb;
  --plist-card: #ffffff;
  --plist-line: rgba(15, 23, 42, 0.08);
  --plist-line-strong: rgba(0, 87, 184, 0.16);
  --plist-text: #162033;
  --plist-text-soft: #637089;
  --plist-text-faint: #8e99ac;
  --plist-brand: #0057b8;
  --plist-brand-2: #2f80ff;
  --plist-brand-glow: rgba(0, 87, 184, 0.12);
  --plist-shadow: 0 8px 32px rgba(7, 18, 41, 0.06), 0 1px 3px rgba(7, 18, 41, 0.04);
  --plist-shadow-hover: 0 20px 48px rgba(7, 18, 41, 0.10), 0 4px 12px rgba(0, 87, 184, 0.06);
  --plist-radius: 22px;
  --plist-radius-sm: 14px;
  --plist-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --plist-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --plist-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ── PAGE BACKGROUND ─────────────────────────────────────── */

.product-list-page {
  background: var(--plist-bg);
}


/* ── KEYFRAME ANIMATIONS ─────────────────────────────────── */

@keyframes plist-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes plist-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes plist-scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes plist-slideInLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes plist-badgeReveal {
  from { opacity: 0; transform: translateY(6px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* ── PAGE HEAD BANNER ─────────────────────────────────────── */

.product-list-page .plist_head {
  padding: 34px 0 20px;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(47, 128, 255, 0.07), transparent),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 87, 184, 0.03), transparent),
    linear-gradient(180deg, #f7faff 0%, #f3f7fb 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.product-list-page .plist_head_inner {
  padding: 30px 34px;
  border-radius: var(--plist-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.90));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 40px rgba(8, 20, 48, 0.06), 0 1px 2px rgba(8, 20, 48, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: plist-fadeUp 0.5s var(--plist-ease) both;
}

.product-list-page .plist_head_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-list-page .plist_head_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 87, 184, 0.10), rgba(47, 128, 255, 0.07));
  color: var(--plist-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  animation: plist-badgeReveal 0.45s var(--plist-ease) 0.15s both;
}

.product-list-page .plist_head_crumb_inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--plist-text-soft);
  font-size: 13px;
  line-height: 1.7;
  animation: plist-fadeIn 0.5s var(--plist-ease) 0.25s both;
}

.product-list-page .plist_head_crumb_inline::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(15,23,42,0.12);
  flex-shrink: 0;
}

.product-list-page .plist_head_crumb_label {
  color: var(--plist-text-faint);
  white-space: nowrap;
}

.product-list-page .plist_head_crumb_text,
.product-list-page .plist_head_crumb_text a,
.product-list-page .plist_head_crumb_text p,
.product-list-page .plist_head_crumb_text p a {
  color: var(--plist-text-soft);
  font-size: 13px;
  line-height: 1.7;
  transition: color 0.2s var(--plist-ease);
}

.product-list-page .plist_head_crumb_text a:hover,
.product-list-page .plist_head_crumb_text p a:hover {
  color: var(--plist-brand);
}

.product-list-page .plist_head_main h1 {
  margin: 16px 0 8px;
  color: var(--plist-text);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  animation: plist-fadeUp 0.55s var(--plist-ease) 0.1s both;
}

.product-list-page .plist_head_main p {
  color: var(--plist-text-soft);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: plist-fadeUp 0.55s var(--plist-ease) 0.18s both;
}


/* ── MAIN SECTION ─────────────────────────────────────────── */

.product-list-page .plist_section {
  padding: 28px 0 72px;
}

.product-list-page .plist_layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-list-page .plist_sidebar,
.product-list-page .plist_content {
  min-width: 0;
}


/* ── SIDEBAR CARDS ────────────────────────────────────────── */

.product-list-page .plist_card {
  position: relative;
  overflow: hidden;
  border-radius: var(--plist-radius);
  border: 1px solid var(--plist-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93));
  box-shadow: var(--plist-shadow);
  animation: plist-slideInLeft 0.5s var(--plist-ease) both;
  transition: box-shadow 0.3s var(--plist-ease);
}

.product-list-page .plist_card:hover {
  box-shadow: 0 12px 36px rgba(7, 18, 41, 0.08), 0 2px 6px rgba(7, 18, 41, 0.03);
}

.product-list-page .plist_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(47,128,255,0.04), transparent 45%);
  pointer-events: none;
}

.product-list-page .plist_card + .plist_card {
  margin-top: 18px;
  animation-delay: 0.08s;
}

.product-list-page .plist_card_head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
}

.product-list-page .plist_card_title strong {
  display: block;
  color: var(--plist-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.product-list-page .plist_card_title span {
  display: block;
  margin-top: 5px;
  color: var(--plist-text-faint);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ── MOBILE TOGGLE ────────────────────────────────────────── */

.product-list-page .plist_card_toggle {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: rgba(0, 87, 184, 0.06);
  position: relative;
  display: none;
  cursor: pointer;
  transition: background 0.2s var(--plist-ease), transform 0.2s var(--plist-ease);
}

.product-list-page .plist_card_toggle:hover {
  background: rgba(0, 87, 184, 0.10);
}

.product-list-page .plist_card_toggle:active {
  transform: scale(0.92);
}

.product-list-page .plist_card_toggle::before,
.product-list-page .plist_card_toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--plist-brand);
  transform: translate(-50%, -50%);
  transition: transform 0.28s var(--plist-ease), opacity 0.28s var(--plist-ease);
}

.product-list-page .plist_card_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-list-page .plist_card_head.on .plist_card_toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}


/* ── CATEGORY NAV LIST ────────────────────────────────────── */

.product-list-page .plist_cp_type .bd {
  position: relative;
  z-index: 1;
  padding: 0 14px 16px;
}

.product-list-page .plist_cp_type .bd ul li {
  border-radius: var(--plist-radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: #fbfcfe;
  transition:
    border-color 0.25s var(--plist-ease),
    background 0.25s var(--plist-ease),
    box-shadow 0.3s var(--plist-ease),
    transform 0.25s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li + li {
  margin-top: 8px;
}

.product-list-page .plist_cp_type .bd ul li:hover {
  border-color: rgba(0, 87, 184, 0.10);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(10, 24, 52, 0.04);
  transform: translateX(2px);
}

.product-list-page .plist_cp_type .bd ul li.active,
.product-list-page .plist_cp_type .bd ul li.on {
  border-color: var(--plist-line-strong);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(10, 24, 52, 0.05);
}

.product-list-page .plist_cp_type .bd ul li p {
  position: relative;
  min-height: 52px;
  padding: 0 48px 0 16px;
  border-bottom: 0;
}

.product-list-page .plist_cp_type .bd ul li p a {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: var(--plist-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li.active > p,
.product-list-page .plist_cp_type .bd ul li.on > p {
  background: linear-gradient(135deg, #0a52a8, #1a6ed8);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.product-list-page .plist_cp_type .bd ul li.active > p a,
.product-list-page .plist_cp_type .bd ul li.on > p a {
  color: #fff;
}


/* expand/collapse button */
.product-list-page .plist_cp_type .bd ul li p span {
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 8px;
  background: rgba(0, 87, 184, 0.07);
  cursor: pointer;
  transition: background 0.2s var(--plist-ease), transform 0.2s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li p span:hover {
  background: rgba(0, 87, 184, 0.12);
  transform: scale(1.08);
}

.product-list-page .plist_cp_type .bd ul li p span::before,
.product-list-page .plist_cp_type .bd ul li p span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--plist-brand);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: background 0.2s var(--plist-ease), opacity 0.25s var(--plist-ease), transform 0.25s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li p span::before {
  width: 10px;
  height: 2px;
}

.product-list-page .plist_cp_type .bd ul li p span::after {
  width: 2px;
  height: 10px;
}

.product-list-page .plist_cp_type .bd ul li.on > p span,
.product-list-page .plist_cp_type .bd ul li.active > p span {
  background: rgba(255,255,255,0.18);
}

.product-list-page .plist_cp_type .bd ul li.on > p span::before,
.product-list-page .plist_cp_type .bd ul li.on > p span::after,
.product-list-page .plist_cp_type .bd ul li.active > p span::before,
.product-list-page .plist_cp_type .bd ul li.active > p span::after {
  background: #fff;
}

.product-list-page .plist_cp_type .bd ul li.on > p span::after,
.product-list-page .plist_cp_type .bd ul li.active > p span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}


/* sub-category links */
.product-list-page .plist_cp_type .bd ul li div {
  overflow: hidden;
  max-height: 0;
  padding: 0 10px;
  opacity: 0;
  transition: max-height 0.32s var(--plist-ease-out), opacity 0.22s var(--plist-ease), padding 0.32s var(--plist-ease-out);
}

.product-list-page .plist_cp_type .bd ul li.on > div {
  max-height: 600px;
  padding: 6px 10px 12px;
  opacity: 1;
}

.product-list-page .plist_cp_type .bd ul li div a {
  display: block;
  position: relative;
  padding: 9px 12px 9px 22px;
  color: var(--plist-text-soft);
  font-size: 14px;
  line-height: 1.55;
  border-radius: 10px;
  transition: color 0.2s var(--plist-ease), background 0.2s var(--plist-ease), padding-left 0.25s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li div a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(0, 87, 184, 0.35);
  transition: background 0.2s var(--plist-ease), transform 0.2s var(--plist-ease);
}

.product-list-page .plist_cp_type .bd ul li div a:hover,
.product-list-page .plist_cp_type .bd ul li div a.cur {
  color: var(--plist-brand);
  background: rgba(0, 87, 184, 0.05);
  padding-left: 24px;
}

.product-list-page .plist_cp_type .bd ul li div a:hover::before,
.product-list-page .plist_cp_type .bd ul li div a.cur::before {
  background: var(--plist-brand);
  transform: scale(1.3);
}


/* ── RELATED ARTICLES CARD ────────────────────────────────── */

.product-list-page .plist_related_body {
  position: relative;
  z-index: 1;
  padding: 0 22px 18px;
}

.product-list-page .plist_related_body dl dd + dd {
  border-top: 1px dashed rgba(15, 23, 42, 0.07);
}

.product-list-page .plist_related_body dl dd a {
  display: block;
  position: relative;
  padding: 13px 0 13px 18px;
  color: var(--plist-text-soft);
  font-size: 14px;
  line-height: 1.65;
  transition: color 0.2s var(--plist-ease), padding-left 0.25s var(--plist-ease);
}

.product-list-page .plist_related_body dl dd a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 87, 184, 0.15);
  box-shadow: inset 0 0 0 1.5px rgba(0, 87, 184, 0.4);
  transition: background 0.2s var(--plist-ease), box-shadow 0.2s var(--plist-ease), transform 0.2s var(--plist-ease);
}

.product-list-page .plist_related_body dl dd a:hover {
  color: var(--plist-brand);
  padding-left: 22px;
}

.product-list-page .plist_related_body dl dd a:hover::before {
  background: var(--plist-brand);
  box-shadow: inset 0 0 0 1.5px var(--plist-brand), 0 0 0 3px rgba(0, 87, 184, 0.12);
  transform: scale(1.15);
}


/* ── PRODUCT GRID ─────────────────────────────────────────── */

.product-list-page .plist_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}


/* ── PRODUCT CARD ─────────────────────────────────────────── */

.product-list-page .plist_item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--plist-radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93));
  box-shadow: var(--plist-shadow);
  animation: plist-scaleIn 0.45s var(--plist-ease) both;
  transition:
    transform 0.35s var(--plist-ease-out),
    border-color 0.3s var(--plist-ease),
    box-shadow 0.35s var(--plist-ease-out);
}

/* staggered entrance for grid items */
.product-list-page .plist_grid li:nth-child(1)  .plist_item { animation-delay: 0.04s; }
.product-list-page .plist_grid li:nth-child(2)  .plist_item { animation-delay: 0.08s; }
.product-list-page .plist_grid li:nth-child(3)  .plist_item { animation-delay: 0.12s; }
.product-list-page .plist_grid li:nth-child(4)  .plist_item { animation-delay: 0.16s; }
.product-list-page .plist_grid li:nth-child(5)  .plist_item { animation-delay: 0.20s; }
.product-list-page .plist_grid li:nth-child(6)  .plist_item { animation-delay: 0.24s; }
.product-list-page .plist_grid li:nth-child(7)  .plist_item { animation-delay: 0.28s; }
.product-list-page .plist_grid li:nth-child(8)  .plist_item { animation-delay: 0.32s; }
.product-list-page .plist_grid li:nth-child(9)  .plist_item { animation-delay: 0.36s; }
.product-list-page .plist_grid li:nth-child(10) .plist_item { animation-delay: 0.40s; }
.product-list-page .plist_grid li:nth-child(11) .plist_item { animation-delay: 0.44s; }
.product-list-page .plist_grid li:nth-child(12) .plist_item { animation-delay: 0.48s; }

.product-list-page .plist_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(47, 128, 255, 0.04), transparent 40%);
  pointer-events: none;
  transition: opacity 0.3s var(--plist-ease);
}

/* subtle top-edge accent line on hover */
.product-list-page .plist_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 87, 184, 0.12), var(--plist-brand), rgba(47, 128, 255, 0.12), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.35s var(--plist-ease), transform 0.4s var(--plist-ease-out);
  pointer-events: none;
  z-index: 2;
}

.product-list-page .plist_item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 184, 0.12);
  box-shadow: var(--plist-shadow-hover);
}

.product-list-page .plist_item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-list-page .plist_item:active {
  transform: translateY(-2px);
  transition-duration: 0.1s;
}


/* ── PRODUCT THUMBNAIL ────────────────────────────────────── */

.product-list-page .plist_thumb {
  display: block;
  position: relative;
  height: 240px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 40%, rgba(47, 128, 255, 0.04), transparent 60%),
    #f8f9fc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.product-list-page .plist_thumb img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 84%;
  max-height: 84%;
  transition: transform 0.45s var(--plist-ease-out), filter 0.3s var(--plist-ease);
  will-change: transform;
}

.product-list-page .plist_item:hover .plist_thumb img {
  transform: scale(1.06);
}


/* ── PRODUCT BODY ─────────────────────────────────────────── */

.product-list-page .plist_body {
  position: relative;
  z-index: 1;
  padding: 14px 16px 16px;
  text-align: center;
}

.product-list-page .plist_badge {
  display: none;
}

.product-list-page .plist_item:hover .plist_badge {
  background: linear-gradient(135deg, rgba(0, 87, 184, 0.13), rgba(47, 128, 255, 0.09));
}

.product-list-page .plist_title {
  display: -webkit-box;
  margin-top: 0;
  min-height: 0;
  color: var(--plist-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.25s var(--plist-ease);
}

.product-list-page .plist_item:hover .plist_title {
  color: var(--plist-brand);
}

.product-list-page .plist_model {
  margin-top: 4px;
  min-height: 0;
  color: var(--plist-text-soft);
  font-size: 13px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-list-page .plist_model:empty {
  display: none;
}


/* ── "VIEW DETAILS" LINK (hidden) ─────────────────────────── */

.product-list-page .plist_more {
  display: none;
}


/* ── PAGINATION ───────────────────────────────────────────── */

.product-list-page #fengye {
  margin: 38px auto 0;
  padding: 0;
  animation: plist-fadeUp 0.5s var(--plist-ease) 0.5s both;
}

.product-list-page #fengye a {
  min-width: 42px;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  margin: 0 5px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 12px rgba(10, 24, 52, 0.04);
  transition:
    background 0.25s var(--plist-ease),
    color 0.25s var(--plist-ease),
    border-color 0.25s var(--plist-ease),
    transform 0.25s var(--plist-ease-out),
    box-shadow 0.25s var(--plist-ease);
}

.product-list-page #fengye a:hover {
  background: linear-gradient(135deg, var(--plist-brand), var(--plist-brand-2));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 87, 184, 0.22);
}

.product-list-page #fengye a.pnnum1 {
  background: linear-gradient(135deg, var(--plist-brand), var(--plist-brand-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.20);
}

.product-list-page #fengye a:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

.product-list-page #fengye .p_input,
.product-list-page #fengye input {
  border-radius: 12px;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media screen and (max-width: 1399px) {
  .product-list-page .plist_layout {
    grid-template-columns: 268px minmax(0, 1fr);
    gap: 24px;
  }

  .product-list-page .plist_head_inner {
    padding: 28px 30px;
  }

  .product-list-page .plist_head_main h1 {
    font-size: 34px;
  }

  .product-list-page .plist_grid {
    gap: 18px;
  }

  .product-list-page .plist_thumb {
    height: 220px;
  }

  .product-list-page .plist_title {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .product-list-page .plist_layout {
    grid-template-columns: 245px minmax(0, 1fr);
  }

  .product-list-page .plist_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1079px) {
  .product-list-page .plist_head {
    padding: 24px 0 14px;
  }

  .product-list-page .plist_section {
    padding: 18px 0 46px;
  }

  .product-list-page .plist_layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-list-page .plist_card_toggle {
    display: block;
  }

  .product-list-page .plist_nav_card .cp_type .bd {
    display: none;
  }

  .product-list-page .plist_head_inner {
    padding: 24px;
  }

  .product-list-page .plist_head_meta {
    display: block;
  }

  .product-list-page .plist_head_crumb_inline {
    margin-top: 12px;
  }

  /* reduce hover lift on tablet */
  .product-list-page .plist_item:hover {
    transform: translateY(-3px);
  }
}

@media screen and (max-width: 767px) {
  .product-list-page .plist_cp_type .bd ul li div a {
    padding-left: 20px;
  }

  .product-list-page .plist_cp_type .bd ul li div a::before {
    left: 9px;
  }

  .product-list-page .plist_head {
    padding: 24px 0 12px;
  }

  .product-list-page .plist_head_inner {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .product-list-page .plist_head_main h1 {
    margin-top: 12px;
    font-size: 28px;
  }

  .product-list-page .plist_head_main p {
    font-size: 14px;
    letter-spacing: .05em;
  }

  .product-list-page .plist_head_crumb_inline {
    display: block;
    font-size: 12px;
  }

  .product-list-page .plist_head_crumb_inline::before {
    display: none;
  }

  .product-list-page .plist_head_crumb_text,
  .product-list-page .plist_head_crumb_text a,
  .product-list-page .plist_head_crumb_text p,
  .product-list-page .plist_head_crumb_text p a {
    font-size: 12px;
  }

  .product-list-page .plist_card,
  .product-list-page .plist_item {
    border-radius: 18px;
  }

  .product-list-page .plist_card_head,
  .product-list-page .plist_related_body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-list-page .plist_cp_type .bd {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-list-page .plist_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-list-page .plist_thumb {
    height: 210px;
  }

  .product-list-page .plist_body {
    padding: 12px 14px 14px;
  }

  .product-list-page .plist_title {
    min-height: 0;
    font-size: 16px;
  }

  .product-list-page #fengye a {
    min-width: 38px;
    height: 38px;
    line-height: 38px;
    margin: 0 3px;
    padding: 0 12px;
    border-radius: 10px;
  }

  /* simplify animations on mobile for smoothness */
  .product-list-page .plist_item {
    animation: plist-fadeIn 0.3s ease both;
  }

  .product-list-page .plist_item:hover {
    transform: none;
    box-shadow: var(--plist-shadow);
  }

  .product-list-page .plist_item::after {
    display: none;
  }

  .product-list-page .plist_item:hover .plist_thumb img {
    transform: none;
  }
}


/* ── PREFERS-REDUCED-MOTION ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .product-list-page .plist_head_inner,
  .product-list-page .plist_head_kicker,
  .product-list-page .plist_head_crumb_inline,
  .product-list-page .plist_head_main h1,
  .product-list-page .plist_head_main p,
  .product-list-page .plist_card,
  .product-list-page .plist_item,
  .product-list-page #fengye {
    animation: none !important;
  }

  .product-list-page .plist_item:hover {
    transform: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}


/* remove legacy related-products card block on this page */
.product-list-page .plist_related_card {
  display: none !important;
}

/* ============================================================
   PAGINATION HOTFIX
   修复：首页/上一页/页码/下一页/末页被全局样式挤成竖排
   ============================================================ */
.product-list-page #fengye {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.product-list-page #fengye::after {
  content: "";
  display: block;
  clear: both;
}

.product-list-page #fengye br {
  display: none !important;
}

.product-list-page #fengye > * {
  float: none !important;
  margin: 0 !important;
  vertical-align: middle;
}

.product-list-page #fengye a,
.product-list-page #fengye span,
.product-list-page #fengye .page,
.product-list-page #fengye .pageinfo,
.product-list-page #fengye .disabled {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-list-page #fengye a {
  margin: 0 !important;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .product-list-page #fengye {
    gap: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
