/* Best-sellers sidebar block — replaces the six widgets that printed
   [BestSale …] as literal text. Deliberately plain: it has to sit inside four
   different Revo sidebars (blog, product listing, product detail, left/right)
   without inheriting a fight with any of them. */

.dga-bestsale {
	margin: 0 0 30px;
}

.dga-bestsale__title {
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e3e3e3;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #222;
}

.dga-bestsale__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dga-bestsale__item + .dga-bestsale__item {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}

.dga-bestsale__link {
	display: flex;
	gap: 12px;
	align-items: center;
	/* 44px minimum touch target (DGA-027) without forcing a height on the row */
	min-height: 44px;
	text-decoration: none;
	color: inherit;
}

.dga-bestsale__thumb {
	flex: 0 0 62px;
	width: 62px;
}

.dga-bestsale__thumb img {
	display: block;
	width: 62px;
	height: 62px;
	object-fit: contain;
	background: #fafafa;
	border: 1px solid #eee;
}

.dga-bestsale__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.dga-bestsale__name {
	font-size: 13.5px;
	line-height: 1.35;
	color: #333;
	/* two lines, so a long Ayurvedic product name cannot stretch the sidebar */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dga-bestsale__link:hover .dga-bestsale__name,
.dga-bestsale__link:focus-visible .dga-bestsale__name {
	color: var(--dga-green, #1b6f1b);
	text-decoration: underline;
}

.dga-bestsale__price {
	font-size: 14px;
	font-weight: 700;
	color: var(--dga-green, #1b6f1b);
}

.dga-bestsale__price del {
	font-weight: 400;
	color: #6a6a6a;
	margin-right: 5px;
}
