.country-section {
	background: white;
	margin-bottom: 30px;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.country-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 4px solid #f4a261;
}

.country-header h2 {
	color: #667eea;
	font-size: 2.2em;
	margin-right: 15px;
}

.city-divider {
	background: linear-gradient(90deg, #667eea, transparent);
	height: 3px;
	margin: 40px 0 30px 0;
}

.city-name {
	color: #764ba2;
	font-size: 1.8em;
	margin-bottom: 20px;
	font-weight: 600;
}

.food-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.food-card {
	background: #f8f9ff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.food-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.food-image {
	width: 100%;
	height: 220px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4em;
	position: relative;
}

.food-content {
	padding: 20px;
}

.food-name {
	font-size: 1.4em;
	color: #667eea;
	font-weight: 600;
	margin-bottom: 10px;
}

.food-meta {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.badge {
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.85em;
	font-weight: 600;
}

.price-badge {
	background: #e8f5e9;
	color: #2e7d32;
}

.spice-badge {
	background: #fff3e0;
	color: #e65100;
}

.spice-mild {
	background: #e8f5e9;
	color: #2e7d32;
}

.spice-medium {
	background: #fff3e0;
	color: #f57c00;
}

.spice-hot {
	background: #ffebee;
	color: #c62828;
}

.category-badge {
	background: #e3f2fd;
	color: #1565c0;
}

.food-description {
	color: #555;
	line-height: 1.6;
	margin-bottom: 15px;
}

.recipe-section {
	background: white;
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
	border-left: 4px solid #667eea;
}

.recipe-section h4 {
	color: #667eea;
	margin-bottom: 10px;
	font-size: 1em;
}

.recipe-section ul {
	margin-left: 20px;
	color: #666;
	font-size: 0.9em;
}

.recipe-section li {
	margin: 5px 0;
}

.francoise-note {
	background: #fff9e6;
	padding: 10px 15px;
	border-radius: 8px;
	margin-top: 10px;
	border-left: 4px solid #f4a261;
	font-size: 0.9em;
}

.francoise-note strong {
	color: #e76f51;
}

.legend {
	background: #f8f9ff;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 30px;
}

.legend h3 {
	color: #667eea;
	margin-bottom: 15px;
}

.legend-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
}