/* === Custom Audio Player === */

.player-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 62px;
}
.player-wrap[data-badge] {
  border-color: var(--amber);
  background: rgba(196,135,58,0.06);
}

.player-play {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}
.player-play:hover { background: var(--green-lt); transform: scale(1.06); }
.player-play:active { transform: scale(0.97); }
.player-play svg { fill: var(--text); width: 16px; height: 16px; margin-left: 2px; }
.player-play.playing svg { margin-left: 0; }

.player-body { flex: 1; min-width: 0; }

.player-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  border: none;
}
.player-seek::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  border: none;
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Consolas', monospace;
  margin-top: 3px;
}

.player-review-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--amber);
  color: #1a1a1a;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Coming soon player placeholder */
.player-soon {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 8px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
