/* -------------------------------------------------------------------------
 * Brands index page ([hec_brands])
 * ---------------------------------------------------------------------- */

.hec-brands {
	max-width: 1520px;
	margin: 0 auto;
	color: #1C1C1B;
}

.hec-brands__section { margin-bottom: 42px; }
.hec-brands__title {
	margin: 0 0 24px;
	font-size: 32px;
	line-height: 42px;
	font-weight: 500;
}

.hec-brands__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.hec-brands__grid--popular { margin-bottom: 8px; }

.hec-brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 172px;
	padding: 18px 16px;
	border: 1px solid #e6e9e6;
	border-radius: 10px;
	background: #fff;
	text-decoration: none !important;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.hec-brand-card:hover {
	box-shadow: 0 8px 24px rgba(20, 40, 28, 0.08);
	transform: translateY(-2px);
}
.hec-brand-card img {
	max-width: 100%;
	max-height: 112px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* A–Z filter */
.hec-brands__alpha { margin-bottom: 24px; }
.hec-brands__alpha-row {
	display: flex;
	flex-wrap: wrap;
}
.hec-brands__alpha-row:last-child {
	margin-top: 12px;
}
.hec-brands__alpha-btn {
    height: 40px;
    padding: 0 8px !important;
    border: 1px solid #d7dcd7;
    border-radius: 0 !important;
    background: #fff !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 600;
    max-width: 64px;
    width: 100%;
    color: #1C1C1B !important;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.hec-brands__alpha-btn:hover,
.hec-brands__alpha-btn.is-active {
	border-color: #215630;
}

.hec-brands__empty {
	grid-column: 1 / -1;
	padding: 32px 0;
	text-align: center;
	color: #6b756e;
	font-size: 14px;
}
.hec-brands__empty[hidden] { display: none; }

.hec-brand-card[hidden] { display: none; }

@media (max-width: 980px) {
	.hec-brands__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
	.hec-brands__grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------------------------------------
 * Featured brands teaser ([hec_featured_brands])
 * ---------------------------------------------------------------------- */

.hec-brands-teaser {
	max-width: 1520px;
	margin: 0 auto;
	color: #1C1C1B;
}

.hec-brands-teaser__title {
	margin: 0 0 24px;
	font-size: 32px;
	line-height: 42px;
	font-weight: 500;
	text-align: center;
}

.hec-brands-teaser__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.hec-brands-teaser__footer {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

@media (max-width: 768px) {
	.hec-brands-teaser__grid { grid-template-columns: repeat(2, 1fr); }
	.hec-brands-teaser__view-all { width: 100%; }
}
@media (max-width: 420px) {
	.hec-brands-teaser__grid { grid-template-columns: 1fr; }
}
