/* Membuat tinggi setiap card sama */
.single-product {
	height: 350px; 
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Gambar seragam tingginya */
.product-img img.default-img {
	width: 100%;
	height: 230px;        /* Tinggi gambar disamakan */
	object-fit: cover;    /* Crop agar proporsional & tidak melebar */
}

.product-img img.hover-img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.3s ease;
}

.product-img:hover .hover-img {
	opacity: 1;
}

/* Judul menyesuaikan panjang teks, tetap rapih */
.product-title a {
	font-size: 14px;
	font-weight: 600;
	display: block;
	line-height: 1.2rem;
	min-height: 40px;     /* agar rata walau text beda panjang */
	overflow: hidden;
}

.product-content {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* SEPARATOR BLOGS */
.separator {
	width: 100%;
	height: 1px;
	background: #bfbfbf;
	opacity: 0.6;
}