.certified-badge {
	position: absolute;
	top: 9px;
	left: 10px;
	width: 30px;
	height: 30px;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	z-index: 1;
}
.certified-badge img{
	width:50px;
}
.brand-item {
	position: relative;
	margin-bottom: 20px;
	padding: 15px;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s;
}

.brand-item:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-logo {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

.brand-fee {
	font-size: 1.2rem;
	font-weight: bold;
	color: #e74c3c;
}

.recommend-card {
	margin-bottom: 15px;
	transition: all 0.3s;
}

.recommend-card:hover {
	transform: translateY(-5px);
}

.recommend-img {
	height: 150px;
	object-fit: cover;
}

@media (max-width: 768px) {
	.brand-logo {
		width: 60px;
		height: 60px;
	}
	
	.brand-fee {
		font-size: 1rem;
	}
}