/* ── Service page audio preview player ──────────────────────── */
.svc-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  margin: 32px 0;
  max-width: 480px;
  transition: background .2s, border-color .2s;
}
.svc-preview:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
}
.svc-preview-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c470, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
}
.svc-preview-btn:hover {
  box-shadow: 0 0 18px rgba(201,168,76,.45);
  transform: scale(1.06);
}
.svc-preview-btn svg { width: 14px; height: 14px; color: #0a0705; }
.svc-preview-info { flex: 1; min-width: 0; }
.svc-preview-label {
  display: block;
  font-size: .8rem;
  color: #f0e8d8;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-preview-note {
  font-size: .6rem;
  color: rgba(233,230,218,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
}
.svc-preview-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 100px;
}
.svc-preview-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.svc-preview-fill {
  height: 100%;
  background: linear-gradient(90deg, #e8c470, #c9a84c);
  border-radius: 2px;
  width: 0;
  transition: width .1s linear;
}
.svc-preview-time {
  font-size: .65rem;
  color: rgba(233,230,218,.45);
  font-variant-numeric: tabular-nums;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}
.svc-preview[data-unavailable] { opacity: .45; pointer-events: none; }
