@charset "utf-8";
.menu-hero {
  	background-image: url('image/menu-bg.png');
  	background-size: cover;
  	background-position: center;
  	height: 340px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	filter:contrast(120%)
}

.menu-logo {
  	height: 120px;
  	margin-bottom: 10px;
	margin-top: 90px;
}
	
.menu-hero h1 {
	text-align:center;
	font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: White;
}

.price-disclaimer {
	font-family: 'Arial', sans-serif;
  	font-size: 10px;
  	color: #A0A0A0;
  	text-align: center;
	margin-top: 20px;
}

.price-disclaimer2 {
	font-family: 'Arial', sans-serif;
  	font-size: 10px;
  	color: #A0A0A0;
  	text-align: center;
	margin-bottom: 50px;
}

.product-grid.category {
  	display: none;
}

.product-grid.category.active {
  	display: flex;
  	flex-wrap: wrap;
  	gap: 100px;
  	justify-content: center;
}

/* Extra info */

.product-info {
  	opacity: 0;
  	max-height: 0;
  	transition: opacity 0.3s ease, max-height 0.3s ease;
  	margin-top: 0px;
}

.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-grid:hover .product-info {
  opacity: 1;
  max-height: 300px;
}

.product-grid:hover .product-card img {
  transform: scale(1.2);
}

.product-card:hover img {
  transform: scale(1.1);
}


.product-info p {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	font-size: 0.90rem;
  	margin: 6px 0;
  	padding: 0 10px;
}

.label {
	font-size:15px;
  	font-weight: bold;
	font-family: 'Arial', sans-serif;
  	color: #000;
	margin-right:10px;
	margin-top:12px;
}

.price-block {
  	display: flex;
  	align-items: flex-end;
  	gap: 10px;
}

.price-block .rm {
  	font-weight: bold;
}

.price-block .price {
  	color: #d71920;
  	font-size: 1.5rem;
}

.price-block sup {
  	font-size: 0.9rem;
}

/* Button */
.order-btn {
  	margin-top: 10px;
  	background-color: #AEA8A8;
  	color: white;
  	padding: 10px 20px;
  	border-radius: 25px;
  	font-size: 0.9rem;
  	cursor: pointer;
  	transition: background-color 0.3s ease;
}

.order-btn:hover {
  	background-color: #666;
}

