/* ===== Optimiert: media-player.css ===== */
.audio-player {
  display: flex;
  align-items: center;
  gap: 15px;
}
.play-btn, .pause-btn, .mute-btn {
  border: none;
  background: transparent;
  color: #ff823a;
  border-radius: 6px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3em;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 6px 0 rgba(40,22,11,0.08);
  outline: none;
}
.play-btn:hover, .pause-btn:hover, .mute-btn:hover {
  background: rgba(255,130,58,0.13);
  box-shadow: 0 4px 14px 0 rgba(40,22,11,0.14);
}
.play-btn svg, .pause-btn svg, .mute-btn svg {
  width: 24px; height: 24px;
}
.mute-btn .icon-cross {
  stroke: #ff823a;
  stroke-width: 2.5;
  fill: none;
  display: none;
}
.mute-btn.muted .icon-cross {
  display: block;
}
.volume-bar {
  width: 115px;
  accent-color: #ff823a;
  margin-left: 2px;
}