.ttlb-button-wrap {
	box-sizing: border-box;
	clear: both;
	margin: 16px 0 22px;
}

.ttlb-button-wrap *,
.ttlb-button-wrap *::before,
.ttlb-button-wrap *::after {
	box-sizing: border-box;
}

.ttlb-listen-btn {
	align-items: center;
	appearance: none;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	gap: 14px;
	justify-content: space-between;
	letter-spacing: 0.045em;
	line-height: 1;
	min-height: 46px;
	min-width: 218px;
	padding: 8px 8px 8px 20px;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}

.ttlb-style-black_gold .ttlb-listen-btn {
	background: linear-gradient(90deg, #171717 0%, #2d2d2d 58%, #c8a96b 100%);
	color: #ffffff;
}

.ttlb-style-amber .ttlb-listen-btn {
	background: linear-gradient(90deg, #f0b323 0%, #f58a07 100%);
	color: #ffffff;
}

.ttlb-style-black_white .ttlb-listen-btn {
	background: linear-gradient(90deg, #111111 0%, #2d2d2d 100%);
	color: #ffffff;
}

.ttlb-listen-btn:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.23);
	transform: translateY(-1px);
}

.ttlb-listen-btn:focus {
	outline: 0;
}

.ttlb-listen-btn:focus-visible {
	outline: 2px solid #c8a96b;
	outline-offset: 3px;
}

.ttlb-btn-text {
	line-height: 1;
	white-space: nowrap;
}

.ttlb-btn-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: currentColor;
	display: inline-flex;
	flex-shrink: 0;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.ttlb-btn-icon svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.ttlb-listen-btn.is-loading .ttlb-btn-icon {
	animation: ttlb-pulse 0.85s ease-in-out infinite;
}

.ttlb-listen-btn.is-playing {
	background: linear-gradient(90deg, #c8a96b 0%, #e4c986 100%);
	color: #151515;
}

.ttlb-listen-btn.is-playing .ttlb-btn-icon {
	background: rgba(0, 0, 0, 0.10);
}

.ttlb-listen-btn.is-paused {
	background: linear-gradient(90deg, #2b2b2b 0%, #555555 100%);
	color: #ffffff;
}

.ttlb-listen-btn.is-paused .ttlb-btn-icon {
	background: rgba(255, 255, 255, 0.16);
}

.rtl .ttlb-button-wrap,
[dir="rtl"] .ttlb-button-wrap {
	direction: rtl;
}

.rtl .ttlb-listen-btn,
[dir="rtl"] .ttlb-listen-btn {
	padding: 8px 20px 8px 8px;
}

@keyframes ttlb-pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

@media (max-width: 767px) {
	.ttlb-button-wrap {
		margin: 14px 0 20px;
	}

	.ttlb-listen-btn {
		font-size: 12px;
		gap: 12px;
		min-height: 42px;
		min-width: 188px;
		padding: 7px 7px 7px 16px;
	}

	.ttlb-btn-icon {
		height: 32px;
		width: 32px;
	}

	.ttlb-btn-icon svg {
		height: 16px;
		width: 16px;
	}
}
