/* Homepage bestsellers — container-aligned popular drugs grid */

.home-bestsellers {
	clear: both;
	width: 100%;
	background: #f4f7fa;
	position: relative;
	z-index: 1;
}

.home-bestsellers > .container {
	margin-left: auto;
	margin-right: auto;
}

.home-bestsellers__title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: #01163a;
	text-align: left;
}

.home-bestsellers__grid {
	margin-left: -8px;
	margin-right: -8px;
}

.home-bestsellers__grid > [class*="col-"] {
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 16px;
}

.home-bestsellers__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	min-height: 118px;
	padding: 16px 10px 14px;
	text-align: center;
	text-decoration: none !important;
	background: #fff;
	border: 1px solid #dce6ee;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(1, 22, 58, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-bestsellers__card:hover,
.home-bestsellers__card:focus {
	border-color: #0f75bc;
	box-shadow: 0 6px 16px rgba(15, 117, 188, 0.12);
	transform: translateY(-2px);
	text-decoration: none !important;
}

.home-bestsellers__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #0f75bc;
	color: #fff;
	flex-shrink: 0;
}

.home-bestsellers__icon .sl-icon {
	width: 1.35em;
	height: 1.35em;
	color: #fff;
}

.home-bestsellers__name {
	display: block;
	width: 100%;
	min-height: 2.6em;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	color: #0f75bc;
	overflow: hidden;
}

.home-bestsellers__card:hover .home-bestsellers__name,
.home-bestsellers__card:focus .home-bestsellers__name {
	color: #0b5a91;
}

@media (max-width: 767px) {
	.home-bestsellers__title {
		font-size: 18px;
	}

	.home-bestsellers__card {
		min-height: 108px;
		padding: 12px 8px 12px;
	}

	.home-bestsellers__icon {
		width: 38px;
		height: 38px;
		border-radius: 8px;
	}

	.home-bestsellers__name {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-bestsellers__card,
	.home-bestsellers__card:hover,
	.home-bestsellers__card:focus {
		transition: none;
		transform: none;
	}
}
