/**
 * Chef Menu Frontend Styles
 */

/* Container */
.chef-menu {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Empty state */
.chef-menu-empty {
	text-align: center;
	color: #666;
	font-style: italic;
	padding: 40px 20px;
}

/* Group section */
.chef-menu-group {
	margin-bottom: 40px;
}

.chef-menu-group:last-child {
	margin-bottom: 0;
}

/* Group title */
.chef-menu-group-title {
	font-size: 1.75em;
	font-weight: 600;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #333;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Items container - 3 column grid */
.chef-menu-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* Individual item */
.chef-menu-item {
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background: #fff;
}

/* Item title */
.chef-menu-item-title {
	font-size: 1.1em;
	font-weight: 500;
	margin: 0 0 8px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

/* Favorite heart icon */
.chef-menu-favorite {
	color: #e74c3c;
	font-size: 0.9em;
	line-height: 1.3;
	flex-shrink: 0;
}

/* Item description */
.chef-menu-item-description {
	margin: 0;
	color: #555;
	font-size: 0.9em;
	line-height: 1.6;
}

/* Favorite item styling (optional subtle highlight) */
.chef-menu-item.is-favorite {
	/* Can add background or border if desired */
}

/* =====================
   Tablet Styles (992px)
   ===================== */
@media screen and (max-width: 992px) {
	.chef-menu-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.chef-menu-group-title {
		font-size: 1.5em;
		margin-bottom: 15px;
	}
}

/* =====================
   Mobile Styles (600px)
   ===================== */
@media screen and (max-width: 600px) {
	.chef-menu {
		padding: 15px;
	}

	.chef-menu-group {
		margin-bottom: 30px;
	}

	.chef-menu-group-title {
		font-size: 1.3em;
		margin-bottom: 12px;
		padding-bottom: 8px;
	}

	.chef-menu-items {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.chef-menu-item {
		padding: 12px;
	}

	.chef-menu-item-title {
		font-size: 1.05em;
	}

	.chef-menu-item-description {
		font-size: 0.85em;
		line-height: 1.5;
	}
}
