/* 
 * Fichier     : food-truck.css
 * Auteur      : Yannick FRANÇOIS E.I. (firmoday.fr)
 * Date        : 08/2025
 * Version     : 1.0
 */
.items-main-2col {
	margin-top: 15px;
}
.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* espace entre les colonnes */
	justify-content: center; /* <-- ceci centre les éléments horizontalement */
}
.categorie {
	box-sizing: border-box;
	text-align: center;
	padding: 15px;
	border: 2px solid rgba(180, 180, 180, 0.4); /* gris clair semi-transparent */
	border-radius: 8px;
	background: transparent;
	box-shadow: 0 0 6px 2px rgba(180, 180, 180, 0.3); /* effet diffus, style craie */
	margin-bottom: 20px;
	transition: box-shadow 0.3s ease;
}
.categorie-title  {
    color: #E6332F;
    padding-bottom: 5px;
}
.item-header {
    color: #DBDADA;
	padding-bottom: 5px;
}
.item-description {
    color: #A7A6AB;
	padding-bottom: 15px;
}