/*
Theme Name:   Indochine Real Estate (Child)
Theme URI:    https://example.com
Description:  Child theme d'Indochine (lohatheme), adapté pour un site immobilier.
Author:       Ton Agence
Author URI:   https://example.com
Template:     indochine
Version:      1.0.0
Text Domain:  indochine-child
*/

/* -----------------------------------------------------------------
   Toutes tes surcharges CSS personnalisées vont ci-dessous.
   Le CSS du thème parent est chargé automatiquement en premier
   (via functions.php), donc ici tu écris uniquement ce que tu
   veux MODIFIER ou AJOUTER par rapport au thème d'origine.
------------------------------------------------------------------ */

/* Exemple : mettre en avant le prix sur la fiche bien */
.property-price {
	font-size: 1.6em;
	font-weight: 700;
	color: #b8860b; /* à adapter à ta charte graphique */
}

/* Exemple : badge de statut du bien (Disponible / Vendu / Loué) */
.property-status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 0.8em;
	text-transform: uppercase;
	background: #2e7d32;
	color: #fff;
}
.property-status.sold {
	background: #c62828;
}
.property-status.rented {
	background: #ef6c00;
}
