/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.psv-wrap {
  margin: 32px 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 28px;
}
.psv-section { margin-bottom: 36px; }
.psv-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #1a1a1a;
  letter-spacing: -.3px;
}

/* ── Scent wheel ─────────────────────────────────────────────────────────── */
.psv-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
#psv-wheel { flex-shrink: 0; }

.psv-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.psv-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #444;
}
.psv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Notes pyramid ───────────────────────────────────────────────────────── */
.psv-notes-pyramid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
}
.psv-note-tier {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.psv-tier-top    { background: #fef9ec; border-left: 4px solid #f59e0b; }
.psv-tier-heart  { background: #fdf2f8; border-left: 4px solid #f472b6; }
.psv-tier-base   { background: #f0fdf4; border-left: 4px solid #4ade80; }

.psv-tier-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #888;
  min-width: 38px;
}
.psv-tier-notes {
  font-size: 14px;
  color: #333;
}

/* ── Similar products grid ───────────────────────────────────────────────── */
.psv-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.psv-loading {
  color: #999;
  font-size: 14px;
  padding: 8px 0;
  grid-column: 1/-1;
}
.psv-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.psv-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.psv-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f9f9f9;
}
.psv-card-body {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.psv-card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}
.psv-card-price {
  font-size: 13px;
  color: #f59e0b;
  font-weight: 700;
}
.psv-card-accords {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.psv-accord-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  background: #f3f4f6;
  color: #555;
}
.psv-match-pct {
  font-size: 10px;
  color: #aaa;
  margin-top: auto;
  padding-top: 6px;
}

@media (max-width: 480px) {
  .psv-wheel-wrap { flex-direction: column; align-items: flex-start; }
  .psv-similar-grid { grid-template-columns: repeat(2, 1fr); }
}
