/* Kol Playback — custom sample player (RTL). */

.kolpb-player {
	direction: rtl;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 100%;
}
.kolpb-player .kolpb-audio {
	display: none;
}

/* Play / pause button */
.kolpb-player .kolpb-btn {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: #ffffff;
	color: #1a1b2b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	transition: transform 0.12s ease, background 0.12s ease;
}
.kolpb-player .kolpb-btn:hover {
	transform: scale(1.06);
	background: #f0c419;
}
.kolpb-player .kolpb-ic--pause {
	display: none;
}
.kolpb-player.kolpb-playing .kolpb-ic--play {
	display: none;
}
.kolpb-player.kolpb-playing .kolpb-ic--pause {
	display: inline;
}

/* Progress bar (kept LTR internally so it reads as a timeline) */
.kolpb-player .kolpb-bar {
	flex: 1 1 auto;
	direction: ltr;
	position: relative;
	height: 5px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	min-width: 0;
}
.kolpb-player .kolpb-bar-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	height: 100%;
	border-radius: 3px;
	background: #f0c419;
}
.kolpb-player .kolpb-time {
	flex: 0 0 auto;
	font-size: 12px;
	line-height: 1;
	color: #ffffff;
	min-width: 32px;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

/* --- Listing overlay: translucent strip on the bottom of the image --------- */
.astra-shop-thumbnail-wrap,
.woocommerce-LoopProduct-link,
li.product .woocommerce-loop-product__link {
	position: relative;
}
.kolpb-player--loop {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 8px 10px;
	background: linear-gradient( to top, rgba(18, 19, 32, 0.86), rgba(18, 19, 32, 0.30) );
	z-index: 5;
}

/* --- Single product page: standalone styled bar ---------------------------- */
.kolpb-player--single {
	margin: 12px 0;
	padding: 10px 14px;
	border-radius: 8px;
	background: #2b2d42;
}
.kolpb-player--single .kolpb-btn {
	width: 36px;
	height: 36px;
}
.kolpb-player--single .kolpb-bar {
	height: 6px;
}
