/* Brand page and nine-banner layout */

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

.bon-brand-page__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0 30px;
}

.bon-brand-page__logo {
	display: block;
	width: auto;
	max-width: 120px;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.bon-brand-page__name {
	margin: 0;
	font-family: var(--bon-font-medium);
	color: #252525;
	font-size: 28px;
	line-height: 1.2;
}

.bon-brand-banners {
	width: 100%;
	margin-bottom: 64px;
}

.bon-brand-banners__top {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
	gap: 8px;
	align-items: stretch;
}

.bon-brand-banners__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 14px;
	background: #D9D9D9;
	color: inherit;
	text-decoration: none;
}

a.bon-brand-banners__item {
	cursor: pointer;
}

a.bon-brand-banners__item:hover,
a.bon-brand-banners__item:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.bon-brand-banners__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-position: center;
}

.bon-brand-banners__item--hero {
	aspect-ratio: 2 / 1;
}

.bon-brand-banners__mini-slider {
	min-width: 0;
}

.bon-brand-banners__mini-track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 8px;
	height: 100%;
}

.bon-brand-banners__item--mini {
	aspect-ratio: 1 / 1;
}

.bon-brand-banners__mini-pagination {
	display: none;
}

.bon-brand-banners__wide-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 8px;
}

.bon-brand-banners__item--wide {
	aspect-ratio: 2.4 / 1;
}

.bon-brand-products__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.bon-brand-products__title {
	margin: 0;
	color: #252525;
	font-size: 24px;
	font-family: var(--bon-font-medium);
	line-height: 1.25;
}

.bon-brand-page
	.bon-category-pagination {
	justify-content: center;
	margin-top: 48px;
}

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

.bon-brand-page__description {
	max-width: 920px;
	margin: 48px auto 0;
	color: #555555;
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.bon-brand-banners__top {
		grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
	}

	.bon-brand-products__title {
		font-size: 22px;
	}
}

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

	.bon-brand-page__header {
		gap: 10px;
		margin: 18px 0 24px;
	}

	.bon-brand-page__logo {
		max-width: 86px;
		max-height: 34px;
	}

	.bon-brand-page__name {
		font-size: 22px;
	}

	.bon-brand-banners {
		margin-bottom: 42px;
	}

	.bon-brand-banners__top {
		display: block;
	}

	.bon-brand-banners__item--hero {
		aspect-ratio: 16 / 9;
	}

	.bon-brand-banners__mini-slider {
		width: 100%;
		margin-top: 8px;
		overflow: hidden;
	}

	.bon-brand-banners__mini-track {
		display: flex;
		gap: 0;
		height: auto;
		transition: transform 0.35s ease;
		will-change: transform;
		touch-action: pan-y;
	}

	.bon-brand-banners__item--mini {
		flex: 0 0 50%;
		min-width: 50%;
		aspect-ratio: 1 / 1;
		padding: 0 3px;
		border-radius: 0;
		background: transparent;
	}

	.bon-brand-banners__item--mini img {
		border-radius: 12px;
	}

	.bon-brand-banners__mini-pagination {
		display: flex;
		align-items: stretch;
		justify-content: flex-start;

		width: calc(100% - 12px);
		height: 3px;
		min-height: 3px;
		margin: 10px 6px 0;

		gap: 0;

		border-radius: 999px;
		background: #d7d7d7;

		overflow: hidden;
	}

	.bon-brand-banners__mini-dot {
		display: block;
		flex: 1 1 0;

		width: auto;
		height: 3px;
		min-width: 0;
		margin: 0;
		padding: 0;

		border: 0;
		border-radius: 0;

		background: transparent;

		cursor: pointer;

		transition:
			background-color 0.25s ease,
			transform 0.25s ease;
	}

	.bon-brand-banners__mini-dot:first-child {
		border-radius: 999px 0 0 999px;
	}

	.bon-brand-banners__mini-dot:last-child {
		border-radius: 0 999px 999px 0;
	}

	.bon-brand-banners__mini-dot.is-active {
		background: #a54bd9;
		transform: none;
	}

	.bon-brand-banners__mini-dot:hover,
	.bon-brand-banners__mini-dot:focus {
		background: rgba(165, 75, 217, 0.45);
		outline: none;
	}

	.bon-brand-banners__mini-dot.is-active:hover,
	.bon-brand-banners__mini-dot.is-active:focus {
		background: #a54bd9;
	}

	.bon-brand-banners__wide-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bon-brand-banners__item--wide {
		aspect-ratio: 2.25 / 1;
	}

	.bon-brand-products__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 22px;
	}

	.bon-brand-products__title {
		font-size: 20px;
	}

	.bon-brand-products__top
		.bon-category-sort {
		align-self: flex-end;
	}

	.bon-brand-page
		.bon-category-pagination {
		margin-top: 36px;
	}
}
