.prod-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ppb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.ppb-glow--1 {
  width: 460px;
  height: 460px;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 165, 233, .1);
}

.ppb-glow--2 {
  width: 360px;
  height: 360px;
  bottom: 4%;
  left: -7%;
  background: rgba(34, 197, 94, .06);
}

.ppb-glow--3 {
  width: 300px;
  height: 300px;
  bottom: 8%;
  right: -6%;
  background: rgba(14, 165, 233, .06);
}

.prod-head {
  position: relative;
  z-index: 1;
  padding: 76px 28px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.prod-head h2 {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}

.prod-grid {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 22px 76px;
}

.pcard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.pcard:hover {
  border-color: rgba(14, 165, 233, .28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  transform: translateY(-4px);
}

.pcard-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}

.pcard-img img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  opacity: 0;
  transition: opacity .45s ease;
}

.pcard-img img.active {
  opacity: 1;
}

.pcard-photo-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(7, 8, 12, .62);
  color: var(--white);
  font-size: 26px;
  line-height: 30px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}

.pcard-photo-btn:hover {
  background: rgba(14, 165, 233, .28);
  border-color: rgba(14, 165, 233, .48);
}

.pcard-photo-btn--prev {
  left: 12px;
}

.pcard-photo-btn--next {
  right: 12px;
}

.pcard-img-veil {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(7, 8, 12, .6));
  pointer-events: none;
}

.pcard-body {
  padding: 22px 24px 24px;
}

.pcard-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.pcard-body p {
  color: var(--text2);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.55;
}

.pcard-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text2);
  transition: all .2s ease;
}

.filter:hover {
  border-color: rgba(14, 165, 233, .4);
  color: var(--text);
}

.filter.active {
  background: rgba(34, 197, 94, .1);
  border-color: rgba(34, 197, 94, .35);
  color: var(--green);
}

.filter[data-filter="legit"].active {
  background: rgba(14, 165, 233, .1);
  border-color: rgba(14, 165, 233, .35);
  color: var(--primary);
}

.filter[data-filter="external"].active {
  background: rgba(148, 163, 184, .08);
  border-color: rgba(148, 163, 184, .3);
  color: #94a3b8;
}

.pcard-go {
  width: 100%;
}

.filter.active[data-filter="detected"] {
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .35);
  color: #ef4444;
}

.filter.active[data-filter="updating"] {
  background: rgba(245, 158, 11, .1);
  border-color: rgba(245, 158, 11, .35);
  color: #f59e0b;
}

/* forum-like products refresh */
.prod-page-bg { display:none; }
.prod-head { max-width: 1460px; text-align:center; padding-top: 46px; }
.prod-grid { max-width: 1460px; display:grid; grid-template-columns: repeat(auto-fit, minmax(320px, 420px)); margin:0 auto; justify-content: center; }
.pcard { border-radius:3px; background:rgba(23,23,21,.94); }
.pcard:hover { transform:none; border-color:rgba(241,6,93,.42); box-shadow:none; }
.filter { border-radius:3px; }
.filter.active, .filter[data-filter="legit"].active { background:rgba(241,6,93,.08); border-color:rgba(241,6,93,.35); color:var(--primary); }
