/* =====================================================================
   LPD Food Icons – Frontend CSS
   ===================================================================== */
.lpd-food-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 20px;
	margin: 12px 0;
}

/* Dạng danh sách */
.lpd-food-icons.lpd-fi-list {
	flex-direction: column;
	gap: 10px;
}

.lpd-food-icons.lpd-fi-list .lpd-fi-item {
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
}

.lpd-food-icons.lpd-fi-list .lpd-fi-label {
	text-align: left;
	font-size: 14px;
}

/* Item */
.lpd-fi-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

/* Icon */
.lpd-fi-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lpd-fi-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.lpd-fi-no-img {
	font-size: 28px;
	line-height: 1;
}

/* Label */
.lpd-fi-label {
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	color: #333;
	line-height: 1.3;
	max-width: 72px;
	word-break: break-word;
}

/* Responsive */
@media (max-width: 480px) {
	.lpd-food-icons {
		gap: 12px 14px;
	}
	.lpd-fi-icon {
		width: 40px;
		height: 40px;
	}
	.lpd-fi-label {
		font-size: 11px;
		max-width: 60px;
	}
}
