/* ── ADMIN DASHBOARD ── */
.admin-layout { max-width: 960px; margin: 0 auto; padding: 32px 24px; }
.admin-header { margin-bottom: 24px; }
.admin-title  { font-family: 'Satoshi', sans-serif; font-size: 26px; font-weight: 700; margin: 0 0 4px; }
.admin-sub    { font-size: 13px; color: var(--muted); margin: 0; }

.admin-tabs   { display: flex; gap: 8px; margin-bottom: 24px; }
.admin-tab    {
  padding: 7px 18px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .15s;
}
.admin-tab.active, .admin-tab:hover { background: var(--bg3); color: var(--text); border-color: var(--border2); }

.admin-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.admin-loading, .admin-empty { color: var(--muted); font-size: 14px; grid-column: 1/-1; padding: 32px 0; }

.admin-card   {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 12px;
}
.admin-rank   { font-size: 11px; font-weight: 700; color: var(--muted2); min-width: 24px; text-align: right; }
.admin-cover  { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--bg3); }
.admin-info   { flex: 1; min-width: 0; }
.admin-item-title  { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-item-artist { font-size: 12px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-stats  { display: flex; gap: 10px; margin-top: 6px; }
.admin-stat   { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted2); }

@media (max-width: 600px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-layout { padding: 20px 16px; }
}

/* ── LANDING / HERO ── */
.hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
}
.mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  opacity: .32;
  filter: blur(3px);
  transform: scale(1.05);
}
.mosaic-cell { overflow: hidden; background: var(--bg3); }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(14,12,11,.9) 25%, rgba(14,12,11,.65) 65%, rgba(14,12,11,.35) 100%);
}
.hero-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,12,11,.4) 0%, transparent 25%, transparent 75%, rgba(14,12,11,.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px;
}
.hero-tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.hero-tagline span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 15px; color: var(--muted);
  margin-bottom: 26px; line-height: 1.6;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.hero-search-wrap {
  position: relative;
  width: 100%; max-width: 460px;
  margin: 0 auto;
}
.hero-search {
  width: 100%;
  padding: 13px 48px 13px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r3);
  font-size: 15px; color: var(--text);
  outline: none;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.hero-search:focus { background: rgba(255,255,255,.09); border-color: rgba(200,169,110,.4); }
.hero-search::placeholder { color: rgba(255,255,255,.28); }
.hero-search-btn {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; border-radius: var(--r);
  width: 30px; height: 30px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
}
.hero-trend-section { padding: 22px 24px 44px; max-width: 1080px; margin: 0 auto; }

/* ── SKELETON SHIMMER ── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.skel {
  background: linear-gradient(90deg,
    var(--bg3) 25%,
    rgba(255,255,255,.05) 50%,
    var(--bg3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 4px;
}
.trend-card-skel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.trend-cover-skel {
  width: 100%; aspect-ratio: 1;
}
.trend-info-skel { padding: 7px 9px 9px; display: flex; flex-direction: column; gap: 5px; }
.trend-title-skel { height: 11px; width: 80%; }
.trend-artist-skel { height: 10px; width: 50%; }

/* ── TREND GRID (home & landing) ── */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .trend-grid { grid-template-columns: 1fr 1fr; }
}
.trend-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden; cursor: pointer;
  transition: border-color .18s, transform .18s;
  will-change: transform;
}
.trend-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.trend-cover {
  width: 100%; aspect-ratio: 1;
  background: var(--bg3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.trend-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.trend-card:hover .trend-cover img { transform: scale(1.05); }
.trend-info { padding: 7px 9px 9px; }
.trend-title {
  font-size: 13px; font-weight: 500; line-height: 1.3; margin-bottom: 2px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.trend-artist { font-size: 12px; color: var(--muted); }

/* ── HOME DASHBOARD ── */
.home-layout { max-width: 1080px; margin: 0 auto; padding: 22px 24px; }
.home-search-bar { display: flex; gap: 10px; margin-bottom: 20px; }
.home-search-input {
  flex: 1; padding: 10px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); font-size: 14px; color: var(--text); outline: none;
  transition: border-color .15s;
}
.home-search-input:focus { border-color: var(--gold); }
.home-search-input::placeholder { color: var(--muted); }
.home-grid { display: grid; grid-template-columns: 1fr 290px; gap: 20px; }
@media (max-width: 760px) { .home-grid { grid-template-columns: 1fr; } }
.home-section-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px; font-weight: 500; margin-bottom: 9px;
  display: flex; align-items: center; justify-content: space-between;
}
.home-section-title a { font-size: 12px; color: var(--muted); cursor: pointer; font-weight: 400; }
.home-section-title a:hover { color: var(--gold); }
.home-recent-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
  gap: 7px; margin-bottom: 18px;
}
.top-rated-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.top-rated-item {
  display: flex; gap: 9px; align-items: center;
  padding: 7px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: border-color .15s;
}
.top-rated-item:hover { border-color: var(--border2); }
.top-rated-thumb {
  width: 32px; height: 32px; border-radius: 5px;
  overflow: hidden; background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.top-rated-thumb img { width: 100%; height: 100%; object-fit: cover; }
.top-rated-info { flex: 1; min-width: 0; }
.top-rated-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-rated-artist { font-size: 12px; color: var(--muted); }
.score-pill {
  padding: 2px 6px; border-radius: 4px;
  font-size: 12px; font-weight: 500; color: #fff; flex-shrink: 0;
}
.feed-mini { display: flex; flex-direction: column; }
.feed-mini-item {
  display: flex; gap: 9px; align-items: center;
  padding: 6px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .15s;
}
.feed-mini-item:last-child { border-bottom: none; }
.feed-mini-item:hover { opacity: .8; }
.feed-mini-thumb {
  width: 28px; height: 28px; border-radius: 4px;
  overflow: hidden; background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.feed-mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-mini-info { flex: 1; min-width: 0; }
.feed-mini-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-mini-sub { font-size: 12px; color: var(--muted); }
.feed-mini-date { font-size: 12px; color: var(--muted2); flex-shrink: 0; }

/* ── SEARCH PAGE ── */
.search-layout { max-width: 840px; margin: 0 auto; padding: 20px 24px; }
.search-filters { display: flex; gap: 7px; margin-bottom: 9px; align-items: center; flex-wrap: wrap; }
.search-input-row { display: flex; gap: 8px; margin-bottom: 4px; }
.search-main-input {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); font-size: 14px; color: var(--text); outline: none;
  transition: border-color .15s;
}
.search-main-input:focus { border-color: var(--gold); }
.search-main-input::placeholder { color: var(--muted); }
.search-results { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.search-hint { font-size: 12px; color: var(--muted2); }
.search-input-wrap { position: relative; flex: 1; min-width: 0; }

/* ── SUGGESTIONS DROPDOWN ── */
@keyframes sugg-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sugg-box {
  position: absolute;
  top: calc(100% + 5px);
  left: 0; right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  animation: sugg-in .14s ease;
}
.sugg-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.sugg-item:last-child { border-bottom: none; }
.sugg-item:hover, .sugg-item.kbsel { background: var(--bg3); }
.sugg-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.sugg-name {
  flex: 1; font-size: 13px; font-weight: 500; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sugg-sub {
  font-size: 12px; color: var(--muted2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 110px; flex-shrink: 0;
}

/* hero sugg — dark glass, aligns with input width */
.hero-search-wrap .sugg-box {
  border-color: rgba(255,255,255,.1);
  background: rgba(14,12,11,.93);
  backdrop-filter: blur(14px);
}
.hero-search-wrap .sugg-item { border-bottom-color: rgba(255,255,255,.06); }
.hero-search-wrap .sugg-icon { background: rgba(255,255,255,.06); }

/* ── TREND GRID (landing — centered) ── */
.trend-grid-centered {
  grid-template-columns: repeat(auto-fill, minmax(150px, 175px));
  justify-content: center;
}

/* ── COLLECTION PAGE ── */
.coll-layout { max-width: 1080px; margin: 0 auto; padding: 20px 24px; }
.coll-toolbar {
  display: flex; gap: 7px; align-items: center;
  margin-bottom: 10px; flex-wrap: wrap;
}
.coll-search-input {
  flex: 1; min-width: 130px;
  padding: 7px 11px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 13px; color: var(--text); outline: none;
}
.coll-search-input:focus { border-color: var(--gold); }
.coll-search-input::placeholder { color: var(--muted); }
.coll-select {
  padding: 7px 9px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 12px; color: var(--text); cursor: pointer; outline: none;
}
.coll-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(144px, 1fr)); gap: 9px; }

/* ── ALBUM FS PAGE ── */
.album-layout { max-width: 1080px; margin: 0 auto; padding: 22px 24px 56px; }
.album-hero { display: flex; gap: 22px; margin-bottom: 20px; align-items: flex-start; }
.album-cover-wrap {
  width: 172px; min-width: 172px; height: 172px;
  border-radius: var(--r2); overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; border: 1px solid var(--border);
  position: relative; flex-shrink: 0;
}
.album-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cover-edit-btn {
  position: absolute; bottom: 7px; right: 7px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,.78); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.album-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 21px; font-weight: 700;
  margin-bottom: 3px; line-height: 1.2; letter-spacing: -.01em;
}
.album-artist {
  font-size: 14px; color: var(--muted);
  margin-bottom: 8px; cursor: pointer;
  transition: color .15s; display: inline-block;
}
.album-artist:hover { color: var(--gold); }
.meta-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; align-items: center; }
.meta-pill {
  padding: 3px 9px; border-radius: 20px; font-size: 12px;
  background: var(--bg3); border: 1px solid var(--border); color: var(--muted);
}
.album-actions { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.album-variants {
  font-size: 12px; color: var(--muted); margin-top: 9px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 7px 9px;
}
.album-body { display: grid; grid-template-columns: 1fr 240px; gap: 20px; margin-top: 18px; }
@media (max-width: 900px) {
  /* Hero — sem padding lateral no container; o content recebe 16px igual à grid */
  .hero { height: auto; min-height: unset; padding: 52px 0 36px; }
  .hero-content { width: 100%; max-width: unset; padding: 0 16px; box-sizing: border-box; }
  .hero-search-wrap { max-width: unset; width: 100%; }
  .hero-tagline { font-size: clamp(26px, 7vw, 38px); }
  .hero-sub { font-size: 13px; margin-bottom: 20px; }
  .hero-search { padding: 11px 44px 11px 14px; font-size: 14px; }
  .hero-trend-section { padding: 20px 16px 28px; }

  /* Album page */
  .album-body { grid-template-columns: 1fr; }
  .album-hero { flex-direction: column; align-items: center; text-align: center; }
  .album-cover-wrap { width: 100%; height: auto; max-width: 200px; }
  .album-title { font-size: 22px; }
  .album-artist { display: block; }
  .meta-pills { justify-content: center; }
  .album-actions { justify-content: center; }
  .album-variants { text-align: left; }

  /* Artist page */
  .artist-hero { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .artist-photo { margin: 0 auto; }
  .artist-hero > div:last-child { width: 100%; }
  .artist-bio { text-align: left; }
}
.desc-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 11px 13px;
  font-size: 13px; line-height: 1.7; color: var(--text);
  margin-bottom: 11px;
}
.desc-box.loading { color: var(--muted); font-style: italic; }

/* ── ALT EDITIONS SECTION ── */
.alt-editions {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── ARTIST FS PAGE ── */
.artist-layout { max-width: 1080px; margin: 0 auto; padding: 22px 24px 56px; }
.artist-hero {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.artist-photo {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden; background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; border: 2px solid var(--border);
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-name { font-family: 'Satoshi', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 3px; letter-spacing: -.02em; }
.artist-genre { font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.artist-bio {
  font-size: 13px; line-height: 1.65; color: var(--text);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 11px 13px;
}
.artist-bio.loading { color: var(--muted); font-style: italic; }
.disco-section { margin-bottom: 18px; }
.disco-section h3 {
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
  padding-bottom: 5px; border-bottom: 1px solid var(--border);
}
.disco-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 9px; }
.disco-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  cursor: pointer; transition: border-color .18s, transform .18s;
  will-change: transform; position: relative;
}
.disco-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.disco-card.in-col { border-color: rgba(200,169,110,.4); }
.disco-cover {
  width: 100%; aspect-ratio: 1; background: var(--bg3);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 22px; position: relative;
}
.disco-cover img { width: 100%; height: 100%; object-fit: cover; }
.disco-dot { position: absolute; top: 4px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.disco-add { border-style: dashed !important; }
.disco-add:hover { border-color: var(--gold) !important; }
.disco-add-cover {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 300; color: var(--muted2);
}
.disco-add:hover .disco-add-cover { color: var(--gold); }
.disco-info { padding: 6px 7px 8px; }
.disco-title {
  font-size: 12px; font-weight: 500; line-height: 1.3;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.disco-year { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── LISTS PAGE ── */
.lists-layout { max-width: 900px; margin: 0 auto; padding: 22px 24px; }
.lists-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.lists-header h2 { font-family: 'Satoshi', sans-serif; font-size: 20px; font-weight: 500; }
.lists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(192px, 1fr)); gap: 11px; }
.list-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  cursor: pointer; transition: border-color .18s, transform .18s;
}
.list-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.list-covers { display: grid; grid-template-columns: 1fr 1fr; height: 114px; overflow: hidden; }
.list-cover-1 { grid-column: 1 / -1; height: 114px; }
.list-cover-q { height: 57px; }
.list-cover-item { width: 100%; height: 100%; object-fit: cover; display: block; }
.list-cover-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); font-size: 26px; grid-column: 1/-1;
}
.list-info { padding: 9px 11px; }
.list-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.list-count { font-size: 12px; color: var(--muted); }

/* LIST DETAIL */
.list-detail-layout { max-width: 1080px; margin: 0 auto; padding: 22px 24px 56px; }
.list-detail-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 4px;
}
.list-detail-name { font-family: 'Satoshi', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.list-detail-meta { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.list-detail-add {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 14px; background: var(--bg3);
  border: 1px dashed var(--border2); border-radius: var(--r2);
  cursor: pointer; color: var(--muted); font-size: 13px;
  margin-bottom: 14px; width: 100%; transition: all .15s;
}
.list-detail-add:hover { border-color: var(--gold); color: var(--gold); }
.list-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(144px, 1fr)); gap: 9px; }
.list-detail-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  position: relative; transition: border-color .18s;
}
.list-detail-item:hover { border-color: var(--border2); }
.list-item-cover {
  width: 100%; aspect-ratio: 1; background: var(--bg3);
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; font-size: 28px; cursor: pointer;
}
.list-item-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.list-detail-item:hover .list-item-cover img { transform: scale(1.04); }
.list-item-info { padding: 7px 8px 9px; cursor: pointer; }
.list-item-title {
  font-size: 12px; font-weight: 500; line-height: 1.3; margin-bottom: 2px;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.list-item-artist { font-size: 12px; color: var(--muted); }
.list-item-remove {
  position: absolute; top: 5px; right: 5px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,.75); border: none;
  cursor: pointer; display: none; align-items: center;
  justify-content: center; font-size: 10px; color: #fff;
}
.list-detail-item:hover .list-item-remove { display: flex; }

/* ── FEED PAGE ── */
.feed-layout { max-width: 660px; margin: 0 auto; padding: 20px 24px; }
.feed-date-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
  padding-bottom: 5px; border-bottom: 1px solid var(--border);
}
.feed-item {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .15s;
}
.feed-item:hover { opacity: .8; }
.feed-item:last-child { border-bottom: none; }
.feed-thumb {
  width: 40px; height: 40px; border-radius: var(--r);
  overflow: hidden; background: var(--bg3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-info { flex: 1; min-width: 0; }
.feed-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.feed-fmt { display: inline-block; padding: 1px 5px; border-radius: 3px; font-size: 11px; font-weight: 500; margin-left: 4px; vertical-align: middle; }
.feed-time { font-size: 12px; color: var(--muted2); flex-shrink: 0; }

/* ── WISHLIST PAGE ── */
.wish-layout { max-width: 1080px; margin: 0 auto; padding: 20px 24px; }
.wish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 9px; }
.wish-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  cursor: pointer; transition: border-color .18s, transform .18s;
  will-change: transform; position: relative;
}
.wish-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.wish-cover {
  width: 100%; aspect-ratio: 1; background: var(--bg3);
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; font-size: 28px; position: relative;
}
.wish-cover img { width: 100%; height: 100%; object-fit: cover; }
.wish-heart { position: absolute; top: 6px; right: 6px; font-size: 14px; }
.wish-info { padding: 8px 9px 10px; }
.wish-title {
  font-size: 12px; font-weight: 500; line-height: 1.3; margin-bottom: 2px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.wish-artist { font-size: 12px; color: var(--muted); }
.wish-fmt { display: inline-block; margin-top: 3px; padding: 2px 6px; border-radius: 4px; font-size: 11px; font-weight: 500; }

/* ── FAQ PAGE ── */
.faq-layout { max-width: 700px; margin: 0 auto; padding: 26px 24px 0; }
.faq-page-title { font-family: 'Satoshi', sans-serif; font-size: 23px; font-weight: 700; margin-bottom: 6px; }
.faq-page-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.faq-section-title {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted2); margin: 20px 0 4px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; cursor: pointer;
  font-size: 14px; font-weight: 500;
  gap: 12px; user-select: none;
  transition: color .15s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron { font-size: 12px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; font-size: 13px; color: var(--muted); line-height: 1.7; padding-bottom: 12px; }
.faq-item.open .faq-answer { display: block; }
