.wp-food-container, 
.food-app-container, 
.food-dash-container, 
.food-tracking-container, 
.motoboy-tracking-container {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	max-width: 1350px !important;
	margin: 20px auto !important;
	padding: 20px;
	color: #333;
	background: #fff;
	border-radius: 20px;
	border: 1px solid #eee;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	overflow: hidden;
}

.wp-food-header h1 {
	text-align: center;
	color: #e74c3c;
	margin-bottom: 40px;
}

.wp-food-menu-layout {
	display: grid;
	grid-template-columns: 200px 1fr 300px;
	gap: 30px;
}

@media (max-width: 992px) {
	.wp-food-menu-layout {
		grid-template-columns: 1fr;
	}
	.wp-food-categories-nav {
		display: flex;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 10px;
	}
}

.wp-food-categories-nav a {
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #666;
	border-left: 3px solid transparent;
	transition: all 0.3s;
}

.wp-food-categories-nav a:hover {
	background: #f9f9f9;
	border-left-color: #e74c3c;
	color: #e74c3c;
}

.wp-food-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.wp-food-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.2s;
}

.wp-food-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.wp-food-card-info h3 {
	margin: 0 0 5px 0;
	font-size: 1.1rem;
}

.wp-food-card-info p {
	font-size: 0.9rem;
	color: #777;
	margin-bottom: 10px;
}

.wp-food-price {
	font-weight: bold;
	color: #27ae60;
}

.wp-food-add-btn {
	background: #e74c3c;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-food-cart-sidebar {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 20px;
	position: sticky;
	top: 20px;
	height: fit-content;
}

.wp-food-checkout-btn {
	width: 100%;
	background: #27ae60;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
}

.wp-food-checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}
