.buying-intro{
  max-width:760px;
  margin-bottom:18px;
  color:#555;
  line-height:1.65;
}

.finder-box{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 28px rgba(0,0,0,0.05);
  max-width:920px;
  margin:20px 0 30px;
}

.finder-head{
  font-size:20px;
  font-weight:800;
  color:#111827;
  margin-bottom:4px;
}

.finder-sub{
  font-size:14px;
  color:#6b7280;
  margin-bottom:18px;
}

.filter-box{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  align-items:end;
}

.field{
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:13px;
  font-weight:700;
  color:#374151;
  margin-bottom:6px;
}

.filter-box select{
  height:46px;
  padding:0 12px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:14px;
  background:#fff;
  color:#111827;
  transition:.2s;
}

.filter-box select:focus{
  outline:none;
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.10);
}

.find-btn{
  grid-column:span 3;
  height:48px;
  border:none;
  border-radius:12px;
  background:#2563eb;
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:.2s;
}

.find-btn:hover{
  background:#1d4ed8;
}

.filter-clear{
  display:inline-block;
  margin-top:12px;
  font-size:13px;
  color:#2563eb;
  font-weight:600;
}

.search-summary{
  margin:0 0 18px;
  font-size:14px;
  color:#374151;
  font-weight:700;
}

.no-result-box{
  background:#fff7ed;
  border:1px solid #fdba74;
  color:#9a3412;
  padding:14px 16px;
  border-radius:12px;
  margin-bottom:22px;
  line-height:1.5;
}

.review-meta{
  font-size:13px;
  color:#6b7280;
  margin-top:10px;
  line-height:1.5;
}

.price-tag{
  font-size:15px;
  font-weight:800;
  color:#16a34a;
  margin-top:10px;
  background:#ecfdf5;
  padding:4px 10px;
  border-radius:999px;
  display:inline-block;
}

.score-tag{
  font-size:12px;
  color:#16a34a;
  font-weight:800;
  margin-top:10px;
}

.review-body h3{
  margin:0;
}

.review-overview{
  margin-top:10px;
}

.section-title{
  font-size:22px;
  font-weight:800;
  margin:30px 0 16px;
}

@media(max-width:760px){
  .filter-box{
    grid-template-columns:1fr;
  }

  .find-btn{
    grid-column:span 1;
  }

  .finder-box{
    padding:18px;
  }
}
/* CARD POSITION */
.review-card{
  position:relative;
}

/* CHECKBOX */
.compare-check{
  position:absolute;
  bottom:10px;
  right:10px;
  width:26px;
  height:26px;
  border-radius:50%;
  border:2px solid #fff;
  background:rgba(0,0,0,0.5);
  cursor:pointer;
  transition:.2s;
 z-index:10;   
}

/* CHECKED */
.compare-check.active{
  background:#2563eb;
  border-color:#2563eb;
}

/* CHECK ICON */
.compare-check.active::after{
  content:'✓';
  color:#fff;
  font-size:14px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

/* COMPARE BAR */
.compare-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#111827;
  color:#fff;
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transform:translateY(100%);
  transition:.3s;
  z-index:999;
}

.compare-bar.show{
  transform:translateY(0);
}

#compareBtn{
  background:#2563eb;
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
}

#compareBtn:disabled{
  background:#555;
}
.review-card img{
  position:relative;
  z-index:1;
}
.review-card *{
  pointer-events:auto;
}

.review-card img{
  pointer-events:none;  /* 🔥 THIS FIXES RANDOM FAIL */
}