
/* Menu Style Start*/
.menu-item {
    transition: transform 0.1s ease-in-out; /* Smooth transition effect */
	transition: all .5s ease; 
}

.menu-item:hover {
    transform: scale(1.01); /* Slightly enlarges the menu item on hover */
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.menu-item-heading .label.red {
    background-color: #c0392b;
}
.menu-item-heading .label.instock {
    background-color: #27ae60;
}
.menu-item-heading .label {
    margin: 0 2px;
    position: relative;
    top: -15px;
    text-transform: uppercase;
    border-radius: 5px;
    background: #087935;
    padding: 2px 12px;
    font-size: 11px;
    font-weight: 400 !important;
    color: #fff;
}
.menu-type {
	display: flex;
}



#menu-filter {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5em;
	text-align: center;
}

#menu-filter li {
	display: inline-block;
	margin: 0 10px;
}




.menu-group-heading {
	margin: 0;
	/*padding-bottom: 2px;
	border-bottom: 2px solid #ccc;*/
	text-align: center;
}

.menu-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
	padding: 1.5em 0;
	display: none;
	/* Hide groups by default */
}





/*  */
.menu-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* Show 2 items per row */
	gap: 1em;
	padding: 1em 0;
	display: block;
	/* Ensure it’s visible by default */
}

.menu-item {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 18px 5px 13px 10px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
}

.menu-item-img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin-bottom: 1em;
	padding: 10px 0px 0px 0px;

}

.menu-item-text {
	flex-grow: 1;
	padding: 22px;
}

.menu-item-heading {
	display: flex;
	justify-content: space-between;
	margin: 0;
}

.menu-item-name {
	font-size: 1.2em;
	margin-right: 1.5em;
}

.menu-item-price {
	font-weight: bold;
}

.menu-item-desc {
	line-height: 1.6;
	font-size: 1em;
	color: #777;
	text-align: left;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.menu-type {
		display: contents;
	}
}

@media screen and (max-width: 992px) {
	.menu-type {
		display: contents;
	}
}

@media screen and (min-width: 768px) {

	.menu-group {
		grid-template-columns: repeat(2, 1fr);
		/* Show 2 items per row for medium screens */
	}

	.menu-item-img {
		width: 150px;
		height: 150px;
		padding: 10px 0px 0px 0px;

	}
}

@media screen and (min-width: 992px) {
	.menu-group {
		grid-template-columns: repeat(3, 1fr);
		/* Show 3 items per row for large screens */
	}

	.menu-item-img {
		width: 150px;
		height: 150px;
		padding: 10px 0px 0px 0px;
	}
}
/* Menu Style End*/