/* =========================================
   Manufacturer list page
   ========================================= */

.bon-manufacturer-page {
	width: 100%;
	padding: 0 0 70px;
	background: #ffffff;
}

.bon-manufacturer-page__title {
	margin: 24px 0 28px;
	color: #252525;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
}

/* Alphabet */

.bon-manufacturer-alphabet {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;

	width: 100%;
	margin: 0 0 52px;
}

.bon-manufacturer-alphabet__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 34px;
	height: 28px;
	padding: 0 11px;

	border: 1px solid #eeeeee;
	border-radius: 999px;

	background: #ffffff;
	color: #777777;

	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;

	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.bon-manufacturer-alphabet__item:hover,
.bon-manufacturer-alphabet__item:focus,
.bon-manufacturer-alphabet__item.is-active {
	border-color: #a54bd9;
	background: #a54bd9;
	color: #ffffff;

	text-decoration: none;
	outline: none;
}

/* Logo grid */

.bon-manufacturer-logos {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;

	gap: 42px 34px;
	width: 100%;
	margin: 0;
}

.bon-manufacturer-logo {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 120px;
	padding: 8px 14px;

	background: #ffffff;
	text-decoration: none;
	overflow: hidden;
}

.bon-manufacturer-logo__image {
	display: block;

	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100px;

	object-fit: contain;

	transition: transform 0.2s ease;
}

.bon-manufacturer-logo:hover
	.bon-manufacturer-logo__image {
	transform: scale(1.03);
}

.bon-manufacturer-logo__name {
	color: #252525;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

/*
 * Внешние отступы пагинации.
 * Сами кнопки используют готовые стили каталога.
 */

.bon-manufacturer-page
	.bon-category-pagination {
	justify-content: center;
	margin: 54px 0 60px;
}

.bon-manufacturer-page
	.bon-category-pagination__links {
	margin: 0 auto;
}

/* Complete directory */

.bon-manufacturer-directory {
	width: 100%;
}

.bon-manufacturer-directory__group {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	align-items: flex-start;

	gap: 34px;
	width: 100%;
	margin: 0;
	padding: 22px 12px;

	border-radius: 12px;

	scroll-margin-top: 120px;

	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bon-manufacturer-directory__group.is-active {
	background: #fbf6fe;
	box-shadow: inset 3px 0 0 #a54bd9;
}

.bon-manufacturer-directory__letter {
	margin: 0;
	padding: 0;
    font-family: var(--bon-font-medium);
	color: var(--bon-color-primary);
	font-size: 28px;
	line-height: 1.15;
}

.bon-manufacturer-directory__names {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));

	gap: 15px 34px;
	min-width: 0;
	padding-top: 5px;
}

.bon-manufacturer-directory__link {
	display: block;
	min-width: 0;

	overflow: hidden;

	color: #222222;

	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;

	transition: color 0.2s ease;
}

.bon-manufacturer-directory__link:hover,
.bon-manufacturer-directory__link:focus {
	color: #a54bd9;
	text-decoration: none;
	outline: none;
}

@media (max-width: 991px) {
	.bon-manufacturer-logos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bon-manufacturer-directory__names {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.bon-manufacturer-page {
		padding-bottom: 48px;
	}

	.bon-manufacturer-page__title {
		margin: 18px 0 22px;

		font-size: 24px;
	}

	.bon-manufacturer-alphabet {
		gap: 6px;
		margin-bottom: 34px;
	}

	.bon-manufacturer-alphabet__item {
		min-width: 31px;
		height: 27px;
		padding: 0 9px;

		font-size: 10px;
	}

	.bon-manufacturer-logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));

		gap: 28px 18px;
	}

	.bon-manufacturer-logo {
		height: 82px;
		padding: 5px 8px;
	}

	.bon-manufacturer-logo__image {
		max-height: 72px;
	}

	.bon-manufacturer-logo__name {
		font-size: 14px;
	}

	.bon-manufacturer-page
		.bon-category-pagination {
		margin: 42px 0 48px;
	}

	.bon-manufacturer-directory__group {
		grid-template-columns: 52px minmax(0, 1fr);

		gap: 18px;
		padding: 18px 4px;

		scroll-margin-top: 90px;
	}

	.bon-manufacturer-directory__letter {
		font-size: 24px;
	}

	.bon-manufacturer-directory__names {
		grid-template-columns: 1fr;

		gap: 14px;
		padding-top: 3px;
	}

	.bon-manufacturer-directory__link {
		font-size: 12px;
		white-space: normal;
	}
}