/* 2026-09-05 夜 大隆さん決定: 値下がり待ちリスト（みんなが値下がりを待ってる商品）。BUZZ棚と同じ枠の作り。 */
.watch-demand {
  position: relative;
  margin: 24px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #ded7ff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 8%, #7357ff14 0 18%, transparent 19%),
    linear-gradient(135deg, #fff 0%, #f4f0ff 65%, #fff4fa 100%);
  box-shadow: 0 18px 50px #3023660d;
}
.watch-demand.hidden { display: none; }
.watch-demand-heading { display: flex; flex-direction: column; gap: 6px; }
.watch-demand-heading h2 { margin: 4px 0 0; font-size: clamp(20px, 5.4vw, 32px); letter-spacing: -.035em; white-space: nowrap; }
.watch-demand-note { margin: 0; color: var(--muted, #6f6a8a); font-size: 11px; line-height: 1.6; }
.watch-demand-loading, .watch-demand-empty { color: var(--muted, #6f6a8a); font-size: 13px; line-height: 1.6; }
.watch-demand-list { display: grid; gap: 8px; margin-top: 14px; }
.watch-demand-empty { display: grid; gap: 6px; margin: 0; }
.watch-demand-empty-link { color: var(--violet, #7357ff); font-weight: 800; text-decoration: none; }
.watch-demand-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e6e1ff;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.watch-demand-row:hover, .watch-demand-row:focus-visible { border-color: var(--violet, #7357ff); }
.watch-demand-rank {
  width: 30px; height: 30px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, var(--pink, #ff3ca5), var(--violet, #7357ff));
}
.watch-demand-name { font-size: 13.5px; font-weight: 700; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.watch-demand-meta { display: grid; justify-items: end; gap: 2px; white-space: nowrap; }
.watch-demand-meta strong { font-size: 13px; color: #d1327f; }
.watch-demand-meta small { font-size: 11px; color: var(--muted, #6f6a8a); }
@media (max-width: 480px) {
  .watch-demand-row { grid-template-columns: 30px 1fr; }
  .watch-demand-meta { grid-column: 2; justify-items: start; flex-direction: row; display: flex; gap: 10px; }
}
