.bf-weekly-menu__header { text-align: center; margin-bottom: 1.5rem; }
.bf-weekly-menu__dates { font-size: 1.1rem; color: #2f6b3a; font-weight: 600; }
.bf-weekly-menu__deadline { color: #b3541e; font-size: .95rem; }

.bf-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	background: #f2f8f1;
	border: 1px solid #d9ecd6;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	font-size: .9rem;
}
.bf-filters label { display: flex; flex-direction: column; gap: .25rem; font-weight: 600; color: #234b28; }
.bf-filters select, .bf-filters input {
	padding: .4rem .6rem;
	border-radius: 8px;
	border: 1px solid #c7ddc3;
}

.bf-meal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

.bf-meal-card {
	background: #fff;
	border: 1px solid #e6efe4;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(30, 80, 40, .06);
	display: flex;
	flex-direction: column;
	transition: transform .15s ease, box-shadow .15s ease;
}
.bf-meal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(30, 80, 40, .12); }

.bf-meal-card__link { color: inherit; text-decoration: none; }
.bf-meal-card__image {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
	background: linear-gradient(135deg, #cdeccb, #9fd9a0);
}
.bf-meal-card__image--placeholder { display: flex; align-items: center; justify-content: center; }

.bf-meal-card h3 { font-size: 1.05rem; margin: .75rem 1rem .25rem; color: #1f3d22; }
.bf-meal-card__desc { margin: 0 1rem .5rem; font-size: .85rem; color: #5a6b5c; flex-grow: 1; }

.bf-meal-card__macros {
	display: flex;
	gap: .6rem;
	list-style: none;
	margin: 0 1rem .75rem;
	padding: 0;
	font-size: .8rem;
	font-weight: 700;
	color: #2f6b3a;
	flex-wrap: wrap;
}
.bf-meal-card__macros li { background: #eef8ec; border-radius: 6px; padding: .2rem .5rem; }

.bf-meal-card__price { margin: 0 1rem .5rem; font-weight: 700; font-size: 1.05rem; color: #1f3d22; }

.bf-meal-card__add {
	margin: 0 1rem 1rem;
	background: #2f6b3a !important;
	border-color: #2f6b3a !important;
	color: #fff !important;
	text-align: center;
	border-radius: 999px !important;
}
.bf-meal-card__add:hover { background: #245229 !important; }
