/* UBMG Beat Store — audio player styling, matches the site's "Night Culture" design tokens. */

.ubmg-waveform-player {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #11132A;
	border: 1px solid #2E63C7;
	border-radius: 8px;
	padding: 14px 16px;
	margin: 16px 0;
}
.ubmg-play-toggle {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #F5C518;
	color: #1A1400;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ubmg-play-toggle:hover { background: #ffd94d; }
.ubmg-waveform-container { flex: 1; min-width: 0; }
.ubmg-time-display {
	flex-shrink: 0;
	color: #9A9EBE;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	min-width: 78px;
	text-align: right;
}
.ubmg-no-preview { color: #9A9EBE; font-style: italic; }

.ubmg-card-play {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(10,10,10,0.75);
	color: #F5C518;
	font-size: 13px;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ubmg-card-play.is-playing { background: #F5C518; color: #1A1400; }
li.product { position: relative; }

.ubmg-persistent-player {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	gap: 12px;
	background: #0A0A0A;
	border-top: 1px solid #2E63C7;
	padding: 10px 18px;
	color: #fff;
	font-family: inherit;
}
.ubmg-mini-play-toggle {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #F5C518;
	color: #1A1400;
	cursor: pointer;
}
.ubmg-mini-info { flex: 1; min-width: 0; }
.ubmg-mini-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ubmg-mini-progress {
	height: 3px;
	background: #2E2E3E;
	border-radius: 2px;
	margin-top: 6px;
	overflow: hidden;
}
.ubmg-mini-progress-fill { height: 100%; background: #F5C518; width: 0%; }
.ubmg-mini-time {
	flex-shrink: 0;
	color: #9A9EBE;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}
.ubmg-mini-close {
	flex-shrink: 0;
	background: none;
	border: none;
	color: #9A9EBE;
	font-size: 14px;
	cursor: pointer;
	padding: 4px 8px;
}
.ubmg-mini-close:hover { color: #fff; }

@media (max-width: 600px) {
	.ubmg-mini-title { max-width: 120px; }
	.ubmg-waveform-player { flex-wrap: wrap; }
}
