/* =============================================
 * Product List Card Widget
 * ============================================= */
.plc-widget {
	width: 100%;
}

.plc-heading {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	padding-bottom: 12px;
	margin-bottom: 4px;
	border-bottom: 2px solid #333;
}

.plc-list {
	display: flex;
	flex-direction: column;
}

/* =============================================
 * Card Item
 * ============================================= */
.plc-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	text-decoration: none;
	transition: background-color 0.2s;
}

.plc-item:hover {
	text-decoration: none;
}

.plc-item.plc-border {
	border-bottom: 1px solid #f0f0f0;
}

.plc-item.plc-border:last-child {
	border-bottom: none;
}

/* =============================================
 * Image
 * ============================================= */
.plc-image {
	width: 80px;
	min-width: 80px;
	height: 80px;
	flex-shrink: 0;
	overflow: hidden;
	background: #f5f5f5;
}

.plc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.plc-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #eee;
}

/* =============================================
 * Info
 * ============================================= */
.plc-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.plc-title {
	font-size: 13px;
	line-height: 1.5;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* =============================================
 * Price
 * ============================================= */
.plc-price {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	line-height: 1.4;
}

/* =============================================
 * MOQ
 * ============================================= */
.plc-moq {
	font-size: 12px;
	color: #999;
	line-height: 1.4;
}
