/**
 * IOA Brand Product Display - Estilos Frontend
 */

.ioa-bpd-featured-products {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto 30px auto;
	padding: 0;
}

.ioa-bpd-featured-grid {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.ioa-bpd-featured-item {
	width: 155px;
	height: 196px;
	flex-shrink: 0;
	background: #fff;
	border: none;
	border-bottom: 3px solid transparent;
	overflow: hidden;
	transition: all 0.3s ease;
}

.ioa-bpd-featured-item:hover {
	border-bottom-color: #ff0000;
}

.ioa-bpd-featured-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.ioa-bpd-featured-image {
	width: 100%;
	height: 155px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	overflow: hidden;
	flex-shrink: 0;
}

.ioa-bpd-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}

.ioa-bpd-featured-item:hover .ioa-bpd-featured-image img {
	transform: scale(1.05);
}

.ioa-bpd-featured-brand {
	height: 41px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	font-size: 12.6px;
	font-weight: 735;
	text-align: center;
	color: #333;
	background: transparent;
	border: none;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
	.ioa-bpd-featured-grid {
		justify-content: center;
		gap: 10px;
	}

	.ioa-bpd-featured-item {
		width: 140px;
		height: 180px;
	}

	.ioa-bpd-featured-image {
		height: 140px;
	}

	.ioa-bpd-featured-brand {
		height: 40px;
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.ioa-bpd-featured-item {
		width: 120px;
		height: 160px;
	}

	.ioa-bpd-featured-image {
		height: 120px;
	}

	.ioa-bpd-featured-brand {
		height: 40px;
		font-size: 10px;
		padding: 6px 8px;
	}
}
