/* Product bar — TeamMon */

.teammon-brands-app.tm-product-bar {
	margin: 16px 0 20px;
}

.tm-product-bar__card {
	padding: 12px 16px;
	transition: none;
}

.tm-product-bar__card:hover {
	transform: none;
	box-shadow: var(--tm-shadow-light);
}

.tm-product-bar__inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tm-product-bar__brand-link {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.tm-product-bar__brand-link:hover {
	color: inherit;
}

[dir="rtl"] .tm-product-bar__inner {
	flex-direction: row;
}

[dir="ltr"] .tm-product-bar__inner {
	flex-direction: row;
}

.tm-product-bar__logo-wrap {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tm-product-bar__logo,
.tm-brand-initial {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	object-fit: contain;
}

.tm-brand-initial {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--tm-gradient);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.tm-product-bar__divider {
	width: 1px;
	height: 48px;
	background: var(--tm-border);
	flex-shrink: 0;
}

.tm-product-bar__info {
	flex: 1;
	min-width: 0;
}

.tm-product-bar__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}

.tm-brand-verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background: none;
	border-radius: 0;
}

.tm-brand-verified__icon {
	display: block;
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.tm-product-bar__name {
	font-size: 16px;
	font-weight: 600;
	color: var(--tm-text);
}

.tm-product-bar__subtitle {
	margin: 0;
	font-size: 13px;
	color: var(--tm-muted);
}

.tm-product-bar__btn {
	flex-shrink: 0;
	height: 40px;
	padding: 0 18px;
	font-size: 14px;
}

@media (max-width: 600px) {
	.tm-product-bar__card {
		padding: 10px 12px;
	}

	.tm-product-bar__inner {
		flex-wrap: nowrap;
		gap: 10px;
	}

	.tm-product-bar__brand-link {
		flex: 1;
		min-width: 0;
		gap: 10px;
		width: auto;
	}

	.tm-product-bar__logo-wrap,
	.tm-product-bar__logo,
	.tm-brand-initial {
		width: 48px;
		height: 48px;
	}

	.tm-brand-initial {
		font-size: 18px;
	}

	.tm-product-bar__divider {
		height: 36px;
	}

	.tm-product-bar__name {
		font-size: 14px;
	}

	.tm-product-bar__subtitle {
		font-size: 12px;
	}

	.tm-product-bar__btn {
		width: auto;
		height: 36px;
		padding: 0 12px;
		font-size: 13px;
	}
}
