/* ══════════════════════════════════════════════════════════════
   ANNUAIRE — DESIGN SYSTEM (préfixe ann-)
   ══════════════════════════════════════════════════════════════ */

/* --- Variables annuaire --- */
.ann-page {
	--ann-primary: #93bf00;
	--ann-primary-dark: #7a9f00;
	--ann-primary-light: #f0f9e0;
	--ann-primary-10: rgba(147, 191, 0, 0.1);
	--ann-primary-25: rgba(147, 191, 0, 0.25);
	--ann-accent: #ff8e01;
	--ann-accent-dark: #e67e00;
	--ann-text: #1a1a2e;
	--ann-text-secondary: #555;
	--ann-text-muted: #888;
	--ann-border: #e8e8ec;
	--ann-bg-soft: #f7f7fa;
	--ann-card-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
	--ann-card-shadow-hover: 0 4px 16px rgba(0,0,0,.08), 0 8px 32px rgba(0,0,0,.06);
	--ann-radius: 16px;
	--ann-radius-sm: 10px;
	--ann-transition: .25s cubic-bezier(.4,0,.2,1);
}

/* --- Hero section --- */
.ann-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 48px 0 40px;
	margin-top: -20px;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
}
.ann-hero::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(147,191,0,.15) 0%, transparent 70%);
	pointer-events: none;
}
.ann-hero-title {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 28px;
	color: #fff;
	margin-bottom: 6px;
	letter-spacing: -.3px;
}
.ann-hero-sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	color: rgba(255,255,255,.65);
	margin-bottom: 0;
}

/* --- Catégories grid --- */
.ann-cats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 12px;
}
.ann-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 10px 16px;
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	text-decoration: none;
	transition: all var(--ann-transition);
	position: relative;
	overflow: hidden;
}
.ann-cat-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--ann-primary);
	transition: width var(--ann-transition);
}
.ann-cat-card:hover {
	border-color: var(--ann-primary);
	box-shadow: 0 4px 16px var(--ann-primary-10);
	transform: translateY(-2px);
}
.ann-cat-card:hover::after {
	width: 60%;
}
.ann-cat-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ann-primary-light);
	border-radius: 12px;
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--ann-primary);
	transition: all var(--ann-transition);
}
.ann-cat-card:hover .ann-cat-icon {
	background: var(--ann-primary);
	color: #fff;
}
.ann-cat-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 12.5px;
	color: var(--ann-text);
	text-align: center;
	line-height: 1.3;
	margin-bottom: 4px;
}
.ann-cat-count {
	font-size: 11px;
	color: var(--ann-text-muted);
}

/* --- Search bar --- */
.ann-search {
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	padding: 20px 24px;
	box-shadow: var(--ann-card-shadow);
}
.ann-search .form-control,
.ann-search .form-select {
	border-color: var(--ann-border);
	border-radius: var(--ann-radius-sm);
	font-size: 13.5px;
	padding: 10px 14px;
	background-color: var(--ann-bg-soft);
	transition: all var(--ann-transition);
}
.ann-search .form-control:focus,
.ann-search .form-select:focus {
	background-color: #fff;
	border-color: var(--ann-primary);
	box-shadow: 0 0 0 3px var(--ann-primary-10);
}
.ann-search .form-label {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--ann-text-secondary);
	margin-bottom: 6px;
}
.ann-search-btn {
	background: var(--ann-primary);
	border: none;
	border-radius: var(--ann-radius-sm);
	color: #fff;
	padding: 10px 20px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13.5px;
	transition: all var(--ann-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.ann-search-btn:hover {
	background: var(--ann-primary-dark);
	box-shadow: 0 4px 12px var(--ann-primary-25);
	color: #fff;
}

/* --- Business cards (listing) --- */
.ann-biz-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	overflow: hidden;
	transition: all var(--ann-transition);
	height: 100%;
	text-decoration: none;
}
.ann-biz-card:hover {
	border-color: transparent;
	box-shadow: var(--ann-card-shadow-hover);
	transform: translateY(-3px);
}
.ann-biz-cover {
	height: 120px;
	background-size: cover;
	background-position: center;
	background-color: var(--ann-bg-soft);
	position: relative;
}
.ann-biz-cover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
.ann-biz-body {
	padding: 0 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.ann-biz-logo {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 3px solid #fff;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -32px auto 10px;
	position: relative;
	z-index: 1;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	overflow: hidden;
}
.ann-biz-logo img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}
.ann-biz-initials {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 20px;
	color: var(--ann-primary);
	line-height: 1;
}
.ann-biz-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 15px;
	color: var(--ann-text);
	margin-bottom: 4px;
	line-height: 1.3;
}
.ann-biz-card:hover .ann-biz-name {
	color: var(--ann-primary);
}
.ann-biz-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 4px;
}
.ann-biz-rating-text {
	font-size: 11.5px;
	color: var(--ann-text-muted);
}
.ann-biz-location {
	font-size: 12.5px;
	color: var(--ann-text-muted);
	margin-bottom: 8px;
}
.ann-biz-location i {
	color: var(--ann-primary);
	margin-right: 3px;
}
.ann-biz-desc {
	font-size: 12.5px;
	color: var(--ann-text-secondary);
	line-height: 1.5;
	flex: 1;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ann-biz-phone {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-bottom: 8px;
}
.ann-biz-phone i {
	color: var(--ann-primary);
	margin-right: 3px;
}
.ann-biz-brands {
	display: flex;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
	padding-top: 10px;
	border-top: 1px solid var(--ann-border);
}
.ann-biz-brand {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--ann-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ann-biz-brand img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.ann-biz-service-badge {
	display: inline-block;
	font-size: 10.5px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-accent-dark);
	background: #fff3e0;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
}

/* --- Section titles --- */
.ann-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--ann-border);
}
.ann-section-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ann-primary-light);
	border-radius: var(--ann-radius-sm);
	color: var(--ann-primary);
	font-size: 16px;
	flex-shrink: 0;
}
.ann-section-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 17px;
	color: var(--ann-text);
	margin: 0;
}
.ann-section-count {
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text-secondary);
	margin-left: auto;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	background: #f0f0f5;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	white-space: nowrap;
}

/* --- Content card (white panel) --- */
.ann-card {
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	box-shadow: var(--ann-card-shadow);
	padding: 24px;
	margin-bottom: 20px;
}

/* --- Profile header (fiche) --- */
.ann-profile {
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	box-shadow: var(--ann-card-shadow);
	overflow: hidden;
	margin-bottom: 20px;
}
.ann-profile-cover {
	background-color: #e8e8ec;
	position: relative;
	overflow: hidden;
}
.ann-profile-cover img {
	width: 100%;
	height: auto;
	display: block;
}
.ann-profile-cover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(0,0,0,.25), transparent);
	pointer-events: none;
}
.ann-profile-identity {
	padding: 12px 24px 20px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	z-index: 2;
}
.ann-profile-logo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 4px solid #fff;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0,0,0,.12);
	flex-shrink: 0;
	overflow: hidden;
	margin-top: -60px;
}
.ann-profile-logo img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}
.ann-profile-logo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--ann-primary), var(--ann-primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 32px;
	border-radius: 50%;
}
.ann-profile-info {
	flex: 1;
	min-width: 0;
	padding-bottom: 4px;
}
.ann-profile-name {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 24px;
	color: var(--ann-text);
	line-height: 1.2;
	margin-bottom: 4px;
}
.ann-profile-cats {
	font-size: 13px;
	color: var(--ann-text-secondary);
}
.ann-profile-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}
.ann-profile-rating .ann-review-stars-sm {
	font-size: 13px;
}
.ann-profile-rating-text {
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-profile-status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 3px 10px;
	border-radius: 20px;
	margin-left: 8px;
	vertical-align: middle;
}
.ann-profile-status-open {
	background: #e8f5e9;
	color: #2e7d32;
}
.ann-profile-status-closed {
	background: #ffebee;
	color: #c62828;
}

/* --- Tabs --- */
.ann-tabs {
	display: flex;
	gap: 0;
	padding: 0 24px;
	border-top: 1px solid var(--ann-border);
	margin: 0;
	list-style: none;
}
.ann-tabs li {
	list-style: none;
}
.ann-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 14px 20px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13.5px;
	color: var(--ann-text-secondary);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all var(--ann-transition);
	white-space: nowrap;
}
.ann-tab:hover {
	color: var(--ann-primary);
	background: var(--ann-primary-10);
}
.ann-tab.active {
	color: var(--ann-primary);
	border-bottom-color: var(--ann-primary);
}
.ann-tab .badge {
	font-size: 10.5px;
	padding: 2px 7px;
	border-radius: 10px;
}

/* --- Info table (coordonnées, horaires) --- */
.ann-info-table {
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
}
.ann-info-row {
	display: flex;
	padding: 12px 16px;
	font-size: 13.5px;
	transition: background var(--ann-transition);
}
.ann-info-row:not(:last-child) {
	border-bottom: 1px solid var(--ann-border);
}
.ann-info-row:hover {
	background: var(--ann-bg-soft);
}
.ann-info-label {
	width: 40%;
	color: var(--ann-text-secondary);
	flex-shrink: 0;
}
.ann-info-value {
	flex: 1;
	color: var(--ann-text);
	font-family: PoppinsSemiBold, Poppins, sans-serif;
}

/* --- Activity / category chips --- */
.ann-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 14px;
	font-size: 12.5px;
	color: var(--ann-text-secondary);
	background: var(--ann-bg-soft);
	border: 1px solid var(--ann-border);
	border-radius: 20px;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-chip:hover {
	background: var(--ann-primary-light);
	border-color: var(--ann-primary);
	color: var(--ann-primary-dark);
}
.ann-chip i {
	font-size: 11px;
	color: var(--ann-primary);
}

/* --- Filter bar --- */
.ann-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
	font-size: 13px;
}
.ann-filter-label {
	color: var(--ann-text-muted);
	font-size: 12px;
}
.ann-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 12px;
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	border-radius: 20px;
}
.ann-filter-chip-search {
	background: #e3e3e8;
	color: var(--ann-text);
}
.ann-filter-chip-location {
	background: #e0f2fe;
	color: #0369a1;
}
.ann-filter-chip-category {
	background: var(--ann-primary-light);
	color: var(--ann-primary-dark);
}
.ann-filter-chip-service {
	background: #fff3e0;
	color: var(--ann-accent-dark);
}
.ann-filter-clear {
	font-size: 12px;
	color: #dc3545;
	text-decoration: none;
	transition: opacity var(--ann-transition);
}
.ann-filter-clear:hover {
	opacity: .7;
	color: #dc3545;
}

/* --- Avis / Reviews --- */
.ann-review-summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: var(--ann-bg-soft);
	border-radius: var(--ann-radius-sm);
	margin-bottom: 20px;
}
.ann-review-score {
	text-align: center;
	min-width: 70px;
}
.ann-review-number,
.ann-review-score-value {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 36px;
	color: var(--ann-primary);
	line-height: 1;
}
.ann-review-scale,
.ann-review-score-label {
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-review-stars {
	color: #f59e0b;
	font-size: 17px;
	letter-spacing: 1px;
}
.ann-review-total {
	font-size: 13px;
	color: var(--ann-text-muted);
}
.ann-review-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
}
.ann-review-item:not(:last-child) {
	border-bottom: 1px solid var(--ann-border);
}
.ann-review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
}
.ann-review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ann-review-avatar-placeholder {
	width: 100%;
	height: 100%;
	background: var(--ann-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 16px;
}
.ann-review-content {
	flex: 1;
	min-width: 0;
}
.ann-review-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.ann-review-author {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13.5px;
	color: var(--ann-text);
}
.ann-review-stars-sm {
	color: #f59e0b;
	font-size: 12px;
}
.ann-review-text {
	font-size: 13.5px;
	color: var(--ann-text-secondary);
	line-height: 1.5;
	margin-bottom: 4px;
}
.ann-review-date {
	font-size: 12px;
	color: var(--ann-text-muted);
}

/* --- Star rating input --- */
.ann-star-input {
	display: flex;
	gap: 2px;
	font-size: 28px;
	color: #ddd;
	cursor: pointer;
}
.ann-star-input i {
	transition: color .15s;
}
.ann-star-input i:hover {
	transform: scale(1.1);
}

/* --- Utility --- */
.text-ann-primary {
	color: var(--ann-primary);
}
.ann-description {
	font-size: 14px;
	line-height: 1.7;
	color: var(--ann-text-secondary);
	margin-bottom: 24px;
}

/* --- Review sub-elements --- */
.ann-review-stars-lg {
	color: #f59e0b;
	font-size: 18px;
}
.ann-review-empty {
	padding: 24px 0;
}
.ann-review-empty .ann-empty-icon {
	font-size: 32px;
}
.ann-review-login {
	font-size: 14px;
}
.ann-review-login a {
	color: var(--ann-primary);
}
.ann-review-form-title {
	font-size: 15px;
	margin-bottom: 16px;
}
.ann-review-form .form-label {
	font-size: 13px;
}

/* --- Claim banner --- */
.ann-claim {
	background: linear-gradient(135deg, #fffcf0, #fff8e1);
	border: 1px solid #ffd54f;
	border-radius: var(--ann-radius);
	padding: 28px;
	text-align: center;
	margin-bottom: 24px;
}
.ann-claim-icon {
	width: 56px;
	height: 56px;
	background: #fff8e1;
	border: 2px solid #ffd54f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	font-size: 24px;
	color: #f59e0b;
}
.ann-claim-title {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 18px;
	color: var(--ann-text);
	margin-bottom: 8px;
}
.ann-claim-text {
	font-size: 14px;
	color: var(--ann-text-secondary);
	margin-bottom: 16px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.ann-claim-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: #f59e0b;
	color: #fff;
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 15px;
	border: none;
	border-radius: 28px;
	transition: all var(--ann-transition);
	text-decoration: none;
}
.ann-claim-btn:hover {
	background: #d97706;
	box-shadow: 0 4px 16px rgba(245,158,11,.3);
	color: #fff;
}

/* --- Price tag --- */
.ann-price {
	background: var(--ann-primary-light);
	border: 1px solid #c5e1a5;
	border-radius: var(--ann-radius-sm);
	padding: 16px 20px;
}
.ann-price-label {
	font-size: 13px;
	color: var(--ann-text-secondary);
	margin-bottom: 2px;
}
.ann-price-value {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 28px;
	color: var(--ann-primary);
	line-height: 1.2;
}
.ann-price-currency {
	font-size: 15px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
}

/* --- Annonce badges (inside biz-cover) --- */
.ann-ann-badge-pic,
.ann-ann-badge-neuf,
.ann-ann-badge-special {
	position: absolute;
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 3px 8px;
	border-radius: 6px;
	z-index: 2;
}
.ann-ann-badge-pic {
	bottom: 8px;
	left: 8px;
	background: rgba(0,0,0,.6);
	color: #fff;
}
.ann-ann-badge-neuf {
	top: 8px;
	left: 8px;
	background: var(--ann-primary);
	color: #fff;
}
.ann-ann-badge-special {
	top: 8px;
	right: 8px;
	background: #ff8e01;
	color: #fff;
}

/* --- Specs grid (vehicle) --- */
.ann-specs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}
.ann-spec {
	padding: 14px;
	text-align: center;
	background: var(--ann-bg-soft);
	border-radius: var(--ann-radius-sm);
	transition: all var(--ann-transition);
}
.ann-spec:hover {
	background: var(--ann-primary-light);
}
.ann-spec-icon {
	font-size: 18px;
	color: var(--ann-primary);
	margin-bottom: 6px;
}
.ann-spec-label {
	font-size: 11px;
	color: var(--ann-text-muted);
	text-transform: uppercase;
	letter-spacing: .3px;
	margin-bottom: 2px;
}
.ann-spec-value {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
}

/* --- Versions table --- */
.ann-versions {
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
}
.ann-versions table {
	width: 100%;
	font-size: 13.5px;
	margin: 0;
}
.ann-versions thead {
	background: var(--ann-bg-soft);
}
.ann-versions th {
	padding: 12px 16px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--ann-text-secondary);
	border: none;
}
.ann-versions td {
	padding: 14px 16px;
	border: none;
	border-top: 1px solid var(--ann-border);
	vertical-align: middle;
}
.ann-versions tr:hover {
	background: var(--ann-bg-soft);
}
.ann-version-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text);
}
.ann-version-detail {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-top: 2px;
}
.ann-version-price {
	font-family: PoppinsBold, Poppins, sans-serif;
	color: var(--ann-primary);
	white-space: nowrap;
}

.ann-version-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-top: 1px solid var(--ann-border);
}
.ann-version-row:first-child {
	border-top: none;
}
.ann-version-info {
	flex: 1;
	min-width: 0;
}

/* --- Version cards --- */
.ann-version-card {
	display: block;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
	text-decoration: none;
	color: var(--ann-text);
	transition: all .25s ease;
}
.ann-version-card:hover {
	border-color: var(--ann-primary);
	box-shadow: 0 4px 12px rgba(147, 191, 0, .15);
	transform: translateY(-2px);
}
.ann-version-card-img {
	aspect-ratio: 16/10;
	background: var(--ann-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.ann-version-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ann-version-card-body {
	padding: 12px 14px;
}
.ann-version-card-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13.5px;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ann-version-card-price {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 13px;
	color: var(--ann-primary);
}

/* --- Price block --- */
.ann-price-block {
	padding: 16px 20px;
	background: var(--ann-primary-light);
	border-radius: var(--ann-radius-sm);
	border: 1px solid rgba(147, 191, 0, .2);
}

/* --- Equipments --- */
.ann-equip-category {
	margin-bottom: 20px;
}
.ann-equip-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ann-equip-title i {
	color: var(--ann-primary);
}
.ann-equip-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ann-equip-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	font-size: 13px;
	color: var(--ann-text-secondary);
}
.ann-equip-item::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 10px;
	color: var(--ann-primary);
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

/* --- Document list --- */
.ann-doc {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	text-decoration: none;
	transition: all var(--ann-transition);
	margin-bottom: 8px;
}
.ann-doc:hover {
	border-color: var(--ann-primary);
	background: var(--ann-primary-10);
}
.ann-doc-icon {
	font-size: 24px;
	color: #dc3545;
	flex-shrink: 0;
}
.ann-doc-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13.5px;
	color: var(--ann-text);
}
.ann-doc-size {
	font-size: 11px;
	color: var(--ann-text-muted);
}
.ann-doc-arrow {
	margin-left: auto;
	font-size: 12px;
	color: var(--ann-text-muted);
}

/* --- Social links --- */
.ann-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.ann-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	font-size: 13px;
	color: var(--ann-text-secondary);
	background: var(--ann-bg-soft);
	border-radius: 20px;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-link:hover {
	background: var(--ann-primary-light);
	color: var(--ann-primary-dark);
}

/* --- CTA Buttons --- */
.ann-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	border-radius: 28px;
	border: 2px solid transparent;
	transition: all var(--ann-transition);
	text-decoration: none;
	cursor: pointer;
}
.ann-btn-primary {
	background: var(--ann-primary);
	border-color: var(--ann-primary);
	color: #fff;
}
.ann-btn-primary:hover {
	background: var(--ann-primary-dark);
	border-color: var(--ann-primary-dark);
	box-shadow: 0 4px 16px var(--ann-primary-25);
	color: #fff;
}
.ann-btn-outline {
	background: #fff;
	border-color: var(--ann-border);
	color: var(--ann-text-secondary);
}
.ann-btn-outline:hover {
	border-color: var(--ann-primary);
	color: var(--ann-primary);
}
.ann-btn-success {
	background: #22c55e;
	border-color: #22c55e;
	color: #fff;
}
.ann-btn-success:hover {
	background: #16a34a;
	border-color: #16a34a;
	color: #fff;
}

/* --- Gallery (vehicle showroom) --- */
.ann-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 8px;
	margin-bottom: 20px;
}
.ann-gallery-main {
	grid-row: 1 / 3;
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
}
.ann-gallery-main img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	cursor: pointer;
	transition: transform .3s;
}
.ann-gallery-main img:hover {
	transform: scale(1.02);
}
.ann-gallery-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.ann-gallery-thumb {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.ann-gallery-thumb img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	cursor: pointer;
	transition: transform .3s;
}
.ann-gallery-thumb img:hover {
	transform: scale(1.05);
}
.ann-gallery-more {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.5);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 20px;
}

/* --- Showroom vehicle cards --- */
.ann-vh-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
	transition: all var(--ann-transition);
	height: 100%;
	text-decoration: none;
}
.ann-vh-card:hover {
	border-color: transparent;
	box-shadow: var(--ann-card-shadow-hover);
	transform: translateY(-2px);
}
.ann-vh-img {
	position: relative;
	aspect-ratio: 4/3;
	background: var(--ann-bg-soft);
	overflow: hidden;
}
.ann-vh-logo {
	position: relative;
	width: 40px;
	height: 40px;
	margin: -20px 0 -2px 14px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0,0,0,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	border: 2px solid #fff;
}
.ann-vh-logo img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}
.ann-vh-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.ann-vh-card:hover .ann-vh-img img {
	transform: scale(1.05);
}
.ann-vh-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ccc;
	font-size: 48px;
}
.ann-vh-img-placeholder img {
	width: auto;
	height: auto;
	max-height: 60px;
	object-fit: contain;
	opacity: .5;
}
.ann-vh-body {
	padding: 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.ann-vh-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
	margin-bottom: 4px;
	line-height: 1.3;
}
.ann-vh-card:hover .ann-vh-name {
	color: var(--ann-primary);
}
.ann-vh-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.ann-vh-header-logo {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ann-vh-header-logo img {
	max-width: 100%;
	max-height: 100%;
}
.ann-vh-header-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 22px;
	color: var(--ann-text);
	margin: 0;
	line-height: 1.3;
}
.ann-vh-header-link {
	font-size: 13px;
	color: var(--ann-primary);
	margin-left: 8px;
}
.ann-vh-meta {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-bottom: 8px;
}
.ann-vh-meta span + span::before {
	content: '·';
	margin: 0 5px;
}
.ann-vh-price {
	font-family: Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-primary);
	margin-top: auto;
}
.ann-vh-price strong {
	font-family: PoppinsBold, Poppins, sans-serif;
}
.ann-vh-badges {
	display: flex;
	gap: 6px;
	margin-top: 8px;
}
.ann-vh-badge {
	font-size: 10.5px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 2px 8px;
	border-radius: 12px;
}
.ann-vh-badge-versions {
	background: #e3e3e8;
	color: var(--ann-text-secondary);
}
.ann-vh-badge-essai {
	background: #e0f2fe;
	color: #0369a1;
}

/* --- Sidebar --- */
.ann-sidebar-item {
	position: relative;
	border: 1px solid var(--ann-border);
	background: #fff;
	box-shadow: var(--ann-card-shadow);
	border-radius: var(--ann-radius);
	overflow: hidden;
	padding: 20px 20px 20px 24px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-sidebar-item:hover {
	border-color: var(--ann-primary);
	box-shadow: 0 4px 12px var(--ann-primary-10);
}
.ann-sidebar-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ann-bg-soft);
	border-radius: 12px;
	font-size: 18px;
	color: var(--ann-primary);
	flex-shrink: 0;
	transition: all var(--ann-transition);
}
.ann-sidebar-item:hover .ann-sidebar-icon {
	background: var(--ann-primary);
	color: #fff;
}
.ann-sidebar-item.active .ann-sidebar-icon {
	background: var(--ann-accent);
	color: #fff;
}
.ann-sidebar-label {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
	line-height: 1.2;
}
.ann-sidebar-desc {
	font-size: 12.5px;
	color: var(--ann-text-muted);
	margin-top: 1px;
}
.ann-sidebar-cats {
	background: #fff;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	box-shadow: var(--ann-card-shadow);
	padding: 20px;
}
.ann-sidebar-cats-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ann-sidebar-cat-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	text-decoration: none;
	font-size: 13.5px;
	color: var(--ann-text-secondary);
	transition: color var(--ann-transition);
}
.ann-sidebar-cat-item:hover {
	color: var(--ann-primary);
}
.ann-sidebar-cat-item:not(:last-child) {
	border-bottom: 1px solid var(--ann-border);
}
.ann-sidebar-cat-icon {
	width: 24px;
	text-align: center;
	font-size: 13px;
	color: var(--ann-primary);
	flex-shrink: 0;
}
.ann-sidebar-cat-count {
	margin-left: auto;
	font-size: 11.5px;
	color: var(--ann-text-muted);
}

/* --- Modal premium --- */
.ann-modal .modal-content {
	border-radius: var(--ann-radius);
	overflow: hidden;
}
.ann-modal .modal-header {
	border: none;
	padding: 20px 24px 12px;
}
.ann-modal--devis .modal-header {
	background: var(--ann-primary);
	color: #fff;
}
.ann-modal--essai .modal-header {
	background: #e0f2fe;
	color: #0369a1;
}
.ann-modal .modal-header .modal-title {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 18px;
}
.ann-modal .modal-body {
	padding: 12px 24px 24px;
}
.ann-modal .modal-footer {
	border: none;
	padding: 12px 24px 20px;
}
.ann-modal .form-label {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13px;
	color: var(--ann-text-secondary);
}

/* --- Empty state --- */
.ann-empty {
	text-align: center;
	padding: 48px 20px;
}
.ann-empty-icon {
	font-size: 48px;
	color: #ddd;
	margin-bottom: 14px;
}
.ann-empty-text {
	font-size: 14px;
	color: var(--ann-text-muted);
	margin-bottom: 8px;
}
.ann-empty-links {
	font-size: 13px;
}

/* --- Map --- */
.ann-map {
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
	border: 1px solid var(--ann-border);
}
.ann-map iframe {
	display: block;
	width: 100%;
	height: 280px;
	border: 0;
}
.ann-video-ratio {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.ann-video-ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* --- Sub-categories tags --- */
.ann-subcats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
	.ann-hero {
		padding: 32px 0 28px;
	}
	.ann-hero-title {
		font-size: 22px;
	}
	.ann-cats {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 8px;
	}
	.ann-cat-card {
		padding: 14px 8px 12px;
	}
	.ann-cat-icon {
		width: 38px;
		height: 38px;
		font-size: 17px;
	}
	.ann-profile-cover img {
		min-height: 120px;
		object-fit: cover;
	}
	.ann-profile-identity {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0 16px 16px;
		gap: 10px;
	}
	.ann-profile-logo {
		width: 72px;
		height: 72px;
		margin-top: -44px;
	}
	.ann-profile-logo img {
		width: 48px;
		height: 48px;
	}
	.ann-profile-name {
		font-size: 20px;
	}
	.ann-tabs {
		padding: 0 12px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.ann-tab {
		padding: 12px 14px;
		font-size: 12.5px;
	}
	.ann-card {
		padding: 16px;
	}
	.ann-gallery {
		grid-template-columns: 1fr;
	}
	.ann-gallery-main {
		grid-row: auto;
	}
	.ann-search {
		padding: 16px;
	}
	.ann-biz-cover {
		height: 100px;
	}
	.ann-biz-logo {
		width: 52px;
		height: 52px;
		margin-top: -26px;
	}
	.ann-biz-logo img {
		width: 34px;
		height: 34px;
	}
	.ann-biz-name {
		font-size: 13.5px;
	}
	.ann-specs {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 430px) {
	.ann-cats {
		grid-template-columns: repeat(3, 1fr);
	}
	.ann-cat-name {
		font-size: 11px;
	}
}

/* ══════════════════════════════════════════════════════════════
   GESTION ENTREPRISES — Mes entreprises (préfixe ann-ent-)
   ══════════════════════════════════════════════════════════════ */

/* --- Toolbar --- */
.ann-ent-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	border-bottom: 1px solid var(--ann-border);
}
.ann-ent-toolbar-count {
	font-size: 13px;
	color: var(--ann-text-muted);
	font-family: PoppinsSemiBold, Poppins, sans-serif;
}
.ann-ent-toolbar-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: #fff;
	background: var(--ann-primary);
	border: none;
	border-radius: 20px;
	padding: 7px 16px;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-ent-toolbar-btn:hover {
	background: var(--ann-primary-dark);
	color: #fff;
	text-decoration: none;
}

/* --- Enterprise card --- */
.ann-ent-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ann-border);
	transition: background var(--ann-transition);
}
.ann-ent-card:last-child {
	border-bottom: none;
}
.ann-ent-card:hover {
	background: var(--ann-bg-soft);
}
.ann-ent-card-logo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--ann-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ann-ent-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}
.ann-ent-card-initials {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 20px;
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--ann-primary), var(--ann-primary-dark));
	border-radius: 50%;
}
.ann-ent-card-body {
	flex: 1;
	min-width: 0;
}
.ann-ent-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 4px;
}
.ann-ent-card-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 15px;
	color: var(--ann-text);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ann-ent-status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
}
.ann-ent-status--publie {
	color: #198754;
	background: #d1e7dd;
}
.ann-ent-status--brouillon {
	color: #6c757d;
	background: #e9ecef;
}
.ann-ent-status--suspendu {
	color: #842029;
	background: #f8d7da;
}
.ann-ent-card-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.ann-ent-card-meta span {
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-ent-card-meta i {
	margin-right: 3px;
}

/* --- Card actions --- */
.ann-ent-card-actions {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}
.ann-ent-action {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ann-border);
	border-radius: 10px;
	background: #fff;
	color: var(--ann-text-secondary);
	font-size: 14px;
	cursor: pointer;
	transition: all var(--ann-transition);
	text-decoration: none;
}
.ann-ent-action:hover {
	border-color: var(--ann-primary);
	color: var(--ann-primary);
	background: var(--ann-primary-light);
	text-decoration: none;
}
.ann-ent-dropdown {
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	border: 1px solid var(--ann-border);
	padding: 6px;
}
.ann-ent-dropdown .dropdown-item {
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 13px;
}
.ann-ent-dropdown .dropdown-item:hover {
	background: var(--ann-bg-soft);
}
.ann-ent-dropdown .dropdown-divider {
	margin: 4px 0;
}

/* --- Empty state --- */
.ann-ent-empty {
	text-align: center;
	padding: 48px 24px 36px;
}
.ann-ent-empty-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	background: var(--ann-bg-soft);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--ann-text-muted);
}
.ann-ent-empty-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 17px;
	color: var(--ann-text);
	margin-bottom: 6px;
}
.ann-ent-empty-text {
	font-size: 14px;
	color: var(--ann-text-muted);
	max-width: 360px;
	margin: 0 auto 20px;
}
.ann-ent-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: #fff;
	background: var(--ann-accent);
	border: none;
	border-radius: 24px;
	padding: 10px 24px;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-ent-cta:hover {
	background: var(--ann-accent-dark);
	color: #fff;
	text-decoration: none;
}

/* --- Réclamations box --- */
.ann-ent-recl-box {
	text-align: left;
	margin-top: 28px;
	padding: 16px;
	background: var(--ann-bg-soft);
	border-radius: var(--ann-radius-sm);
}
.ann-ent-recl-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 14px;
	color: var(--ann-text);
	margin-bottom: 12px;
}
.ann-ent-recl-title i {
	color: #ffc107;
}
.ann-ent-recl-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	background: #fff;
	border-radius: 8px;
	margin-bottom: 8px;
}
.ann-ent-recl-date {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-top: 2px;
}
.ann-ent-recl-badge {
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: #856404;
	background: #fff3cd;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
}
.ann-ent-recl-hint {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin: 8px 0 0;
}

/* --- Modal ann --- */
.ann-modal {
	border: none;
	border-radius: var(--ann-radius);
	box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.ann-modal-header {
	padding: 20px 24px 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ann-modal-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 17px;
	color: var(--ann-text);
	margin: 0;
}
.ann-modal-body {
	padding: 16px 24px;
	font-size: 14px;
	color: var(--ann-text-secondary);
}
.ann-modal-footer {
	padding: 0 24px 20px;
	border: none;
}
.ann-modal-footer form {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.ann-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 9px 20px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all var(--ann-transition);
	text-decoration: none;
}
.ann-btn-primary {
	color: #fff;
	background: var(--ann-primary);
}
.ann-btn-primary:hover {
	background: var(--ann-primary-dark);
	color: #fff;
}
.ann-btn-outline {
	color: var(--ann-text-secondary, #666);
	background: transparent;
	border: 1px solid var(--ann-border, #e1e3e1);
}
.ann-btn-outline:hover {
	background: var(--ann-bg-soft, #f5f6f8);
}
.ann-btn-danger {
	color: #fff;
	background: #dc3545;
}
.ann-btn-danger:hover {
	background: #bb2d3b;
	color: #fff;
}
.ann-ent-delete-warn {
	font-size: 13px;
	color: #dc3545;
	margin: 10px 0 0;
}

/* --- Form sections (ajouter/modifier entreprise) --- */
.ann-form-section {
	padding: 20px;
	border-bottom: 1px solid var(--ann-border);
}
.ann-form-section:last-child {
	border-bottom: none;
}
.ann-form-section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.ann-form-section-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ann-primary-light);
	border-radius: 8px;
	color: var(--ann-primary);
	font-size: 15px;
	flex-shrink: 0;
}
.ann-form-section-text {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 15px;
	color: var(--ann-text);
}
.ann-form-submit {
	padding: 20px;
}
.ann-form-submit button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: #fff;
	background: var(--ann-primary);
	border: none;
	border-radius: 12px;
	padding: 12px;
	cursor: pointer;
	transition: all var(--ann-transition);
}
.ann-form-submit button:hover {
	background: var(--ann-primary-dark);
}

/* --- Horaires table --- */
.ann-horaires-table {
	width: 100%;
	border-collapse: collapse;
}
.ann-horaires-table th {
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 10px;
	border-bottom: 1px solid var(--ann-border);
}
.ann-horaires-table td {
	padding: 8px 10px;
	border-bottom: 1px solid #f5f5f5;
	vertical-align: middle;
}
.ann-horaires-table tr:last-child td {
	border-bottom: none;
}
.ann-horaires-table .ann-jour {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13px;
	color: var(--ann-text);
	min-width: 90px;
}
.ann-horaires-table input[type="time"] {
	border: 1px solid var(--ann-border);
	border-radius: 8px;
	padding: 6px 10px;
	font-size: 13px;
	color: var(--ann-text);
	background: #fff;
	width: 100%;
}
.ann-horaires-table input[type="time"]:focus {
	border-color: var(--ann-primary);
	outline: none;
	box-shadow: 0 0 0 3px var(--ann-primary-10);
}
.ann-horaires-table input[type="time"]:disabled {
	background: var(--ann-bg-soft);
	color: var(--ann-text-muted);
}

/* --- Secondary establishments repeater --- */
.ann-sec-etab-container {}
.ann-sec-etab-block {
	border: 1px solid var(--ann-border);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 14px;
	background: #fafbfc;
	transition: border-color var(--ann-transition);
}
.ann-sec-etab-block:hover {
	border-color: #ccc;
}
.ann-sec-etab-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}
.ann-sec-etab-header strong {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13px;
	color: var(--ann-text);
}
.ann-sec-etab-empty {
	text-align: center;
	padding: 20px 12px;
	color: var(--ann-text-muted);
	font-size: 13px;
}
.ann-sec-etab-empty i {
	display: block;
	font-size: 28px;
	margin-bottom: 6px;
	opacity: .4;
}
.ann-btn-add-etab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-primary);
	background: var(--ann-primary-light);
	border: 1px dashed var(--ann-primary);
	border-radius: 10px;
	padding: 8px 16px;
	cursor: pointer;
	transition: all var(--ann-transition);
}
.ann-btn-add-etab:hover {
	background: var(--ann-primary);
	color: #fff;
}
.ann-btn-remove-etab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #fdd;
	background: #fff5f5;
	color: #dc3545;
	font-size: 13px;
	cursor: pointer;
	transition: all var(--ann-transition);
}
.ann-btn-remove-etab:hover {
	background: #dc3545;
	color: #fff;
	border-color: #dc3545;
}

/* --- Services checkboxes --- */
.ann-services-group {
	margin-bottom: 14px;
}
.ann-services-group-title {
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 6px;
	padding-bottom: 4px;
	border-bottom: 1px solid #f0f0f5;
}

/* --- Locked sections & limit badges --- */
.ann-locked-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 20px;
	background: var(--ann-bg-soft);
	border-radius: 12px;
	color: var(--ann-text-muted);
}
.ann-locked-section i.fa-lock {
	font-size: 22px;
	margin-bottom: 8px;
	opacity: .45;
}
.ann-locked-section p {
	font-size: 13px;
	margin: 0 0 12px;
	max-width: 340px;
	line-height: 1.5;
}
.ann-locked-section a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-primary);
	text-decoration: none;
}
.ann-locked-section a:hover {
	text-decoration: underline;
}
.ann-limit-badge {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text-muted);
	background: #f0f0f5;
	border-radius: 20px;
	padding: 2px 10px;
	margin-left: auto;
	white-space: nowrap;
}
.ann-limit-badge.ann-limit-reached {
	color: #e67700;
	background: #fff3e0;
}
.ann-limit-msg {
	font-size: 12px;
	color: #e67700;
	background: #fffbf0;
	border: 1px solid #ffe0b2;
	border-radius: 8px;
	padding: 8px 12px;
	margin-top: 12px;
	display: none;
}
.ann-limit-msg a {
	color: var(--ann-primary);
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	text-decoration: none;
}
.ann-limit-msg a:hover {
	text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.ann-ent-card {
		flex-wrap: wrap;
		gap: 12px;
		padding: 16px;
	}
	.ann-ent-card-body {
		flex: 1 1 calc(100% - 72px);
	}
	.ann-ent-card-actions {
		width: 100%;
		justify-content: flex-end;
		padding-top: 6px;
		border-top: 1px solid #f5f5f5;
	}
	.ann-ent-card-meta {
		gap: 10px;
	}
	.ann-ent-card-name {
		font-size: 14px;
	}
}

/* ==========================================================================
   Médiathèque front
   ========================================================================== */

/* Compteurs */
.ann-media-counters {
	display: flex;
	gap: 12px;
	padding: 16px 20px 0;
}
.ann-media-counter {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: var(--ann-radius-sm);
	background: var(--ann-bg-soft);
}
.ann-media-counter-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	flex-shrink: 0;
}
.ann-media-counter-icon--photo { background: var(--ann-primary); }
.ann-media-counter-icon--video { background: #e53935; }
.ann-media-counter-icon--doc { background: #ff8e01; }
.ann-media-counter-info {
	display: flex;
	flex-direction: column;
}
.ann-media-counter-value {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 18px;
	line-height: 1.1;
	color: var(--ann-text);
}
.ann-media-counter-label {
	font-size: 12px;
	color: var(--ann-text-muted);
}

/* Onglets */
.ann-media-tabs {
	border-bottom: 2px solid #eee;
	margin-bottom: 16px;
}
.ann-media-tabs .nav-link {
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text-light);
	border: none;
	border-bottom: 2px solid transparent;
	padding: 8px 16px;
	margin-bottom: -2px;
	transition: color var(--ann-transition);
}
.ann-media-tabs .nav-link:hover {
	color: var(--ann-primary);
}
.ann-media-tabs .nav-link.active {
	color: var(--ann-primary);
	border-bottom-color: var(--ann-primary);
	background: transparent;
}

.ann-media-limit-info {
	font-size: 12px;
	color: var(--ann-text-light);
	margin-bottom: 10px;
}
.ann-media-limit-info i {
	color: var(--ann-primary);
}

/* Zone d'upload */
.ann-media-upload-zone {
	margin-bottom: 16px;
	padding: 14px;
	border: 2px dashed #e1e3e1;
	border-radius: var(--ann-radius-sm);
	background: var(--ann-bg-soft);
}
.ann-media-upload-row {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.ann-media-upload-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 18px;
	font-size: 13px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: #fff;
	background: var(--ann-primary);
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: background var(--ann-transition);
	white-space: nowrap;
	flex-shrink: 0;
}
.ann-media-upload-btn:hover {
	background: var(--ann-primary-dark);
}
.ann-media-upload-btn:disabled {
	opacity: .6;
	cursor: wait;
}
.ann-media-legende-input {
	flex: 1;
	min-width: 140px;
	font-size: 13px;
	border-radius: 8px;
}
.ann-media-upload-zone small {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	color: var(--ann-text-muted);
}

/* Grille photos */
.ann-media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 10px;
}
.ann-media-grid--videos {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.ann-media-item {
	position: relative;
}
.ann-media-item-img {
	position: relative;
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
	border: 1px solid #eee;
}
.ann-media-item-img img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
}
.ann-media-item-video {
	position: relative;
	border-radius: var(--ann-radius-sm);
	overflow: hidden;
	border: 1px solid #eee;
}
.ann-media-item-delete {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
	color: #fff;
	border: none;
	font-size: 12px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	z-index: 2;
	transition: background var(--ann-transition);
}
.ann-media-item-delete:hover {
	background: #e53935;
}
.ann-media-item-legende {
	display: block;
	font-size: 11px;
	color: var(--ann-text-muted);
	margin-top: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Documents */
.ann-media-docs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ann-media-doc-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid #eee;
	border-radius: var(--ann-radius-sm);
	background: #fff;
}
.ann-media-doc-icon {
	font-size: 24px;
	color: #e53935;
	flex-shrink: 0;
}
.ann-media-doc-info {
	flex: 1;
	min-width: 0;
}
.ann-media-doc-info a {
	color: var(--ann-text);
	font-size: 13px;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ann-media-doc-info a:hover {
	color: var(--ann-primary);
}
.ann-media-doc-info small {
	display: block;
}
.ann-media-doc-delete {
	flex-shrink: 0;
	background: none;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 4px 8px;
	color: var(--ann-text-muted);
	cursor: pointer;
	font-size: 13px;
	transition: all var(--ann-transition);
}
.ann-media-doc-delete:hover {
	color: #e53935;
	border-color: #e53935;
}

/* État vide */
.ann-media-empty {
	text-align: center;
	padding: 32px 16px;
	color: var(--ann-text-muted);
	font-size: 14px;
}
.ann-media-empty i {
	font-size: 32px;
	display: block;
	margin-bottom: 8px;
	opacity: .4;
}

/* --- Alert modal (premium design) --- */
.ann-alert-modal-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin: 24px auto 12px;
	font-size: 26px;
}
.ann-alert-modal-icon--error {
	background: #fff0f0;
	color: #dc3545;
}
.ann-alert-modal-icon--warning {
	background: #fff8e6;
	color: #ff8e01;
}
.ann-alert-modal-icon--success {
	background: var(--ann-primary-light);
	color: var(--ann-primary);
}
.ann-alert-modal-icon--info {
	background: #e8f4fd;
	color: #0d6efd;
}
.ann-alert-modal-title {
	text-align: center;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 16px;
	color: var(--ann-text);
	margin: 4px 20px 0;
}
.ann-alert-modal-message {
	text-align: center;
	font-size: 13px;
	color: var(--ann-text-muted);
	line-height: 1.5;
	padding: 8px 24px 0;
}
.ann-alert-modal-actions {
	display: flex;
	justify-content: center;
	padding: 16px 24px 24px;
}
.ann-alert-modal-actions .ann-btn {
	min-width: 120px;
}
.ann-alert-modal-actions .ann-btn-primary {
	background: #93bf00;
	color: #fff;
}
.ann-alert-modal-actions .ann-btn-primary:hover {
	background: #7a9f00;
}

/* Responsive */
@media (max-width: 576px) {
	.ann-media-counters {
		flex-direction: column;
		gap: 8px;
	}
	.ann-media-upload-row {
		flex-direction: column;
	}
	.ann-media-legende-input {
		width: 100%;
	}
	.ann-media-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
	.ann-media-grid--videos {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   SHOWROOM FRONT MANAGEMENT
   ============================================= */

/* Vehicle cards — list page */
.ann-showroom-card {
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius);
	background: #fff;
	overflow: hidden;
	transition: box-shadow var(--ann-transition), border-color var(--ann-transition);
}
.ann-showroom-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
	border-color: #ccc;
}
.ann-showroom-card--inactive {
	opacity: .6;
}
.ann-showroom-card-img {
	position: relative;
	height: 160px;
	background: var(--ann-bg-soft);
	overflow: hidden;
}
.ann-showroom-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ann-showroom-card-noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 40px;
	color: var(--ann-text-muted);
	opacity: .3;
}
.ann-showroom-badge-inactive {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #dc3545;
	color: #fff;
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 2px 10px;
	border-radius: 20px;
}
.ann-showroom-card-body {
	padding: 14px 16px 8px;
}
.ann-showroom-card-title {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 15px;
	color: var(--ann-text);
	margin: 0 0 6px;
}
.ann-showroom-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-bottom: 8px;
}
.ann-showroom-card-meta i {
	opacity: .6;
}
.ann-showroom-card-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 12px;
	color: var(--ann-text-secondary);
}
.ann-showroom-card-stats i {
	margin-right: 3px;
	opacity: .5;
}
.ann-showroom-card-price {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-primary);
	margin-left: auto;
}
.ann-showroom-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px 14px;
	border-top: 1px solid var(--ann-border);
}

/* Showroom nav tabs */
.ann-showroom-tabs {
	background: var(--ann-bg-soft);
	border-radius: var(--ann-radius);
	padding: 4px;
	gap: 4px;
}
.ann-showroom-tabs .nav-link {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	font-size: 13px;
	color: var(--ann-text-secondary);
	border-radius: 10px;
	padding: 8px 16px;
	transition: all var(--ann-transition);
}
.ann-showroom-tabs .nav-link:hover {
	color: var(--ann-text);
}
.ann-showroom-tabs .nav-link.active {
	background: #fff;
	color: var(--ann-primary);
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* Badge count */
.ann-badge-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	background: var(--ann-primary-light);
	color: var(--ann-primary);
	font-size: 11px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	margin-left: 4px;
}

/* Equipement badge */
.ann-eq-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--ann-bg-soft);
	border: 1px solid var(--ann-border);
	border-radius: 8px;
	padding: 5px 10px;
	font-size: 13px;
	color: var(--ann-text);
}
.ann-eq-badge small {
	font-size: 11px;
	color: var(--ann-text-muted);
}
.ann-eq-badge-delete {
	border: none;
	background: none;
	color: #dc3545;
	font-size: 11px;
	cursor: pointer;
	padding: 0;
	opacity: .5;
	transition: opacity var(--ann-transition);
}
.ann-eq-badge-delete:hover {
	opacity: 1;
}

/* Media version badge (overlay on photo) */
.ann-showroom-media-badge {
	position: absolute;
	bottom: 4px;
	left: 4px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 10px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	padding: 1px 8px;
	border-radius: 12px;
}

/* Small button variant */
.ann-btn-sm {
	font-size: 12px;
	padding: 6px 14px;
}

/* Modal footer in showroom — needs hardcoded colors outside .ann-page */
.ann-modal-footer .ann-btn-outline {
	color: #666;
	background: transparent;
	border: 1px solid #e1e3e1;
}
.ann-modal-footer .ann-btn-outline:hover {
	background: #f5f6f8;
}
.ann-modal-footer .ann-btn-primary {
	background: #93bf00;
	color: #fff;
}
.ann-modal-footer .ann-btn-primary:hover {
	background: #7a9f00;
}
.ann-modal-footer .ann-btn-danger {
	color: #fff;
	background: #dc3545;
}
.ann-modal-footer .ann-btn-danger:hover {
	background: #bb2d3b;
}

/* ===== Demandes showroom ===== */
.ann-demand-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 20px;
}
.ann-demand-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	background: #fff;
	text-decoration: none;
	transition: all var(--ann-transition);
}
.ann-demand-stat:hover {
	border-color: var(--ann-primary);
	box-shadow: 0 2px 8px var(--ann-primary-10);
}
.ann-demand-stat.active {
	border-color: var(--ann-primary);
	background: var(--ann-primary-light);
}
.ann-demand-stat-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: 16px;
	flex-shrink: 0;
}
.ann-demand-stat-icon--total { background: #e8f4fd; color: #0d6efd; }
.ann-demand-stat-icon--attente { background: #fff8e6; color: #ff8e01; }
.ann-demand-stat-icon--traitee { background: var(--ann-primary-light); color: var(--ann-primary); }
.ann-demand-stat-icon--annulee { background: #fff0f0; color: #dc3545; }
.ann-demand-stat-value {
	font-family: PoppinsBold, Poppins, sans-serif;
	font-size: 20px;
	color: var(--ann-text);
	line-height: 1;
}
.ann-demand-stat-label {
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-demand-stat-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ann-demand-filter-label {
	font-size: 13px;
	color: var(--ann-text-muted);
}
.ann-demand-filter-btn {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 13px;
	text-decoration: none;
	border: 1px solid var(--ann-border);
	color: var(--ann-text-secondary);
	background: #fff;
	transition: all var(--ann-transition);
}
.ann-demand-filter-btn:hover {
	border-color: var(--ann-primary);
	color: var(--ann-primary);
}
.ann-demand-filter-btn.active {
	background: var(--ann-primary);
	color: #fff;
	border-color: var(--ann-primary);
}
.ann-demand-filter-btn--devis.active {
	background: #0d6efd;
	border-color: #0d6efd;
}
.ann-demand-filter-btn--essai.active {
	background: var(--ann-primary);
	border-color: var(--ann-primary);
}
.ann-demand-empty {
	text-align: center;
	padding: 48px 20px;
	color: var(--ann-text-muted);
}
.ann-demand-empty i {
	font-size: 48px;
	margin-bottom: 12px;
	display: block;
	opacity: 0.4;
}
.ann-demand-empty p {
	margin: 0;
	font-size: 14px;
}
.ann-demand-list {
	padding: 0 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ann-demand-card {
	border: 1px solid var(--ann-border);
	border-radius: var(--ann-radius-sm);
	background: #fff;
	overflow: hidden;
	transition: border-color var(--ann-transition);
}
.ann-demand-card:hover {
	border-color: #ccc;
}
.ann-demand-card--cancelled {
	opacity: 0.6;
}
.ann-demand-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: var(--ann-bg-soft);
	border-bottom: 1px solid var(--ann-border);
	flex-wrap: wrap;
	gap: 8px;
}
.ann-demand-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.ann-demand-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
}
.ann-demand-badge--devis {
	background: #e8f4fd;
	color: #0d6efd;
}
.ann-demand-badge--essai {
	background: var(--ann-primary-light);
	color: var(--ann-primary);
}
.ann-demand-date {
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-demand-status-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-family: PoppinsSemiBold, Poppins, sans-serif;
}
.ann-demand-status-badge--attente { background: #fff8e6; color: #e67e00; }
.ann-demand-status-badge--traitee { background: var(--ann-primary-light); color: var(--ann-primary); }
.ann-demand-status-badge--annulee { background: #fff0f0; color: #dc3545; }
.ann-demand-card-body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ann-demand-vehicle {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.ann-demand-version-badge {
	background: #e3e3e8;
	color: var(--ann-text-secondary);
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 11px;
}
.ann-demand-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 13px;
	color: var(--ann-text-secondary);
}
.ann-demand-contact a {
	color: var(--ann-primary);
	text-decoration: none;
}
.ann-demand-contact a:hover {
	text-decoration: underline;
}
.ann-demand-contact-name {
	font-family: PoppinsSemiBold, Poppins, sans-serif;
	color: var(--ann-text);
}
.ann-demand-message {
	font-size: 13px;
	color: var(--ann-text-secondary);
	line-height: 1.5;
	background: var(--ann-bg-soft);
	padding: 8px 12px;
	border-radius: var(--ann-radius-sm);
}
.ann-demand-schedule,
.ann-demand-agency {
	font-size: 13px;
	color: var(--ann-text-secondary);
}
.ann-demand-schedule i,
.ann-demand-agency i {
	color: var(--ann-primary);
}
.ann-demand-card-actions {
	padding: 10px 16px;
	border-top: 1px solid var(--ann-border);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
/* Responsive demandes */
@media (max-width: 576px) {
	.ann-demand-stats {
		grid-template-columns: repeat(2, 1fr);
		padding: 12px;
		gap: 8px;
	}
	.ann-demand-stat {
		padding: 10px 12px;
	}
	.ann-demand-stat-value {
		font-size: 16px;
	}
	.ann-demand-card-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.ann-demand-contact {
		flex-direction: column;
		gap: 4px;
	}
}

/* Responsive showroom */
@media (max-width: 576px) {
	.ann-showroom-tabs {
		flex-direction: column;
	}
	.ann-showroom-card-img {
		height: 130px;
	}
}

/* ===============================
   STATISTIQUES FRONT
   =============================== */

.ann-contact-link {
	color: var(--ann-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}
.ann-contact-link:hover {
	color: var(--ann-primary-hover);
	text-decoration: underline;
}

.ann-stat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid var(--ann-border);
}
.ann-stat-header-title {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 18px;
	color: var(--ann-text);
	margin: 0;
}
.ann-stat-header-period {
	font-size: 13px;
	color: var(--ann-text-muted);
}
.ann-stat-header-period i {
	margin-right: 4px;
}

.ann-stat-kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 20px;
}
.ann-stat-kpi {
	text-align: center;
	padding: 16px 8px;
	border-radius: 10px;
	background: var(--ann-bg-light, #f8f9fa);
	border: 1px solid var(--ann-border);
}
.ann-stat-kpi-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	margin-bottom: 8px;
}
.ann-stat-kpi-icon--vues { background: #0d6efd; }
.ann-stat-kpi-icon--tel { background: #198754; }
.ann-stat-kpi-icon--email { background: #6f42c1; }
.ann-stat-kpi-icon--demandes { background: #ff8e01; }
.ann-stat-kpi-value {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 24px;
	color: var(--ann-text);
	line-height: 1.2;
}
.ann-stat-kpi-label {
	font-size: 12px;
	color: var(--ann-text-muted);
	margin-top: 2px;
}

.ann-stat-section {
	padding: 20px;
	border-top: 1px solid var(--ann-border);
}
.ann-stat-section-title {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 15px;
	color: var(--ann-text);
	margin: 0 0 16px 0;
}
.ann-stat-section-title i {
	color: var(--ann-primary);
	margin-right: 6px;
	width: 18px;
	text-align: center;
}

.ann-stat-empty {
	font-size: 13px;
	color: var(--ann-text-muted);
	font-style: italic;
	margin: 0;
}

.ann-stat-link {
	display: inline-block;
	font-size: 13px;
	color: var(--ann-primary);
	text-decoration: none;
	margin-top: 12px;
	transition: color 0.2s ease;
}
.ann-stat-link:hover {
	color: var(--ann-primary-hover);
}
.ann-stat-link i {
	margin-right: 4px;
}

/* Chart */
.ann-stat-chart-legend {
	display: flex;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 12px;
	color: var(--ann-text-muted);
}
.ann-stat-legend-item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.ann-stat-legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	display: inline-block;
}
.ann-stat-legend-dot--vues { background: #0d6efd; }
.ann-stat-legend-dot--clics { background: var(--ann-primary); }

.ann-stat-chart {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 120px;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 1px solid var(--ann-border);
}
.ann-stat-chart-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	position: relative;
}
.ann-stat-chart-bars {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 1px;
	width: 100%;
}
.ann-stat-bar {
	flex: 1;
	border-radius: 2px 2px 0 0;
	min-height: 2px;
	transition: height 0.3s ease;
}
.ann-stat-bar--vues { background: #0d6efd; }
.ann-stat-bar--clics { background: var(--ann-primary); }
.ann-stat-chart-label {
	font-size: 10px;
	color: var(--ann-text-muted);
	position: absolute;
	bottom: -18px;
	white-space: nowrap;
}

/* Breakdown */
.ann-stat-breakdown-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
}
.ann-stat-breakdown-label {
	font-size: 13px;
	color: var(--ann-text);
	width: 140px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}
.ann-stat-breakdown-bar-wrap {
	flex: 1;
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
}
.ann-stat-breakdown-bar {
	height: 100%;
	border-radius: 4px;
	transition: width 0.4s ease;
}
.ann-stat-breakdown-value {
	font-size: 13px;
	font-family: "PoppinsSemiBold", sans-serif;
	color: var(--ann-text);
	width: 70px;
	text-align: right;
	flex-shrink: 0;
}
.ann-stat-breakdown-value small {
	font-family: "Poppins", sans-serif;
	color: var(--ann-text-muted);
	font-size: 11px;
}

/* Mini cards (demandes) */
.ann-stat-mini-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
.ann-stat-mini-card {
	text-align: center;
	padding: 10px 4px;
	border-radius: 8px;
	background: var(--ann-bg-light, #f8f9fa);
	border: 1px solid var(--ann-border);
}
.ann-stat-mini-value {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 20px;
	color: var(--ann-text);
	line-height: 1.2;
}
.ann-stat-mini-label {
	font-size: 11px;
	color: var(--ann-text-muted);
}

/* Avis score */
.ann-stat-avis-score {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.ann-stat-avis-num {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 32px;
	color: var(--ann-text);
	line-height: 1;
}
.ann-stat-avis-stars {
	color: #ffc107;
	font-size: 16px;
}
.ann-stat-avis-count {
	font-size: 13px;
	color: var(--ann-text-muted);
}
.ann-stat-avis-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 3px 0;
}
.ann-stat-avis-note {
	font-size: 12px;
	color: var(--ann-text-muted);
	width: 36px;
	text-align: right;
	flex-shrink: 0;
}
.ann-stat-avis-note i {
	color: #ffc107;
	font-size: 10px;
}
.ann-stat-avis-nb {
	font-size: 12px;
	color: var(--ann-text);
	width: 24px;
	text-align: right;
	flex-shrink: 0;
}

/* Activity */
.ann-stat-activity {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.ann-stat-activity-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--ann-bg-light, #f8f9fa);
	border: 1px solid var(--ann-border);
	flex: 1;
	min-width: 150px;
}
.ann-stat-activity-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(147, 191, 0, 0.1);
	color: var(--ann-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}
.ann-stat-activity-value {
	font-family: "PoppinsSemiBold", sans-serif;
	font-size: 18px;
	color: var(--ann-text);
	line-height: 1.2;
}
.ann-stat-activity-label {
	font-size: 12px;
	color: var(--ann-text-muted);
}

/* Complétude */
.ann-stat-completude-pct {
	font-size: 13px;
	color: var(--ann-primary);
	margin-left: 6px;
}
.ann-stat-completude-bar {
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 16px;
}
.ann-stat-completude-fill {
	height: 100%;
	background: var(--ann-primary);
	border-radius: 4px;
	transition: width 0.4s ease;
}
.ann-stat-completude-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 16px;
	margin-bottom: 8px;
}
.ann-stat-completude-item {
	font-size: 13px;
	color: var(--ann-text-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}
.ann-stat-completude-item i {
	font-size: 14px;
	color: #ddd;
}
.ann-stat-completude-item--done {
	color: var(--ann-text);
}
.ann-stat-completude-item--done i {
	color: var(--ann-primary);
}

/* Responsive */
@media (max-width: 768px) {
	.ann-stat-kpis {
		grid-template-columns: repeat(2, 1fr);
	}
	.ann-stat-mini-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ann-stat-breakdown-label {
		width: 110px;
	}
}
@media (max-width: 576px) {
	.ann-stat-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.ann-stat-kpis {
		grid-template-columns: repeat(2, 1fr);
		padding: 12px;
	}
	.ann-stat-kpi-value {
		font-size: 20px;
	}
	.ann-stat-section {
		padding: 16px 12px;
	}
	.ann-stat-chart {
		height: 80px;
	}
	.ann-stat-completude-list {
		grid-template-columns: 1fr;
	}
	.ann-stat-activity {
		flex-direction: column;
	}
	.ann-stat-breakdown-row {
		flex-wrap: wrap;
	}
	.ann-stat-breakdown-label {
		width: 100%;
	}
	.ann-stat-breakdown-value {
		width: auto;
	}
}

/* ===== Page Concessionnaire (redesign) ===== */

.ann-concess-intro {
	font-size: 16px;
	font-weight: normal;
	font-family: Poppins, sans-serif;
	color: var(--ann-text-secondary);
	line-height: 1.6;
	padding: 0 20px 8px;
	margin: 0;
}

.ann-brands-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 0 20px 20px;
}
.ann-brand-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 72px;
	text-align: center;
}
.ann-brand-item img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid var(--ann-border);
	background: #fff;
	padding: 4px;
}
.ann-brand-item span {
	font-size: 11px;
	color: var(--ann-text-secondary);
	line-height: 1.2;
}

.ann-btn-lg {
	padding: 14px 32px;
	font-size: 16px;
}

.ann-concess-cta {
	text-align: center;
	padding: 24px 20px;
	border-top: 1px solid var(--ann-border);
	margin-top: 12px;
}
.ann-concess-cta-hint {
	font-size: 13px;
	color: var(--ann-text-muted);
	margin: 10px 0 0;
}

@media (max-width: 576px) {
	.ann-brands-grid {
		gap: 10px;
		padding: 0 12px 16px;
	}
	.ann-brand-item {
		width: 60px;
	}
	.ann-brand-item img {
		width: 40px;
		height: 40px;
	}
	.ann-concess-cta {
		padding: 16px 12px;
	}
	.ann-btn-lg {
		padding: 12px 24px;
		font-size: 15px;
	}
}

/* =====================================================
   VÉRIFICATION ENTREPRISE (ann-verif-*)
   ===================================================== */
.ann-verif-page {
	padding: 24px;
}
.ann-verif-header {
	text-align: center;
	margin-bottom: 32px;
}
.ann-verif-icon {
	margin-bottom: 12px;
}
.ann-verif-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #333;
	margin-bottom: 8px;
}
.ann-verif-subtitle {
	color: #666;
	font-size: 14px;
	max-width: 480px;
	margin: 0 auto;
}
.ann-verif-steps {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
}
.ann-verif-step {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.ann-verif-step-num {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background: #1DA1F2;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ann-verif-step-text strong {
	display: block;
	font-size: 13px;
	color: #333;
	margin-bottom: 2px;
}
.ann-verif-step-text span {
	font-size: 12px;
	color: #888;
}
.ann-verif-errors {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #fff5f5;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 24px;
	color: #b91c1c;
	font-size: 13px;
}
.ann-verif-errors i {
	font-size: 18px;
	margin-top: 2px;
}
.ann-verif-errors ul {
	margin: 0;
	padding-left: 16px;
}
.ann-verif-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ann-verif-field {
	padding: 16px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
}
.ann-verif-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #333;
	margin-bottom: 4px;
}
.ann-verif-label i {
	color: #1DA1F2;
}
.ann-verif-required {
	color: #e53e3e;
}
.ann-verif-hint {
	font-size: 12px;
	color: #888;
	margin-bottom: 10px;
}
.ann-verif-input-file {
	display: block;
	width: 100%;
	font-size: 13px;
	color: #555;
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 10px;
	background: #fafafa;
	cursor: pointer;
}
.ann-verif-input-file:hover {
	border-color: #1DA1F2;
	background: #f0f9ff;
}
.ann-verif-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 13px;
	color: #0c5460;
}
.ann-verif-notice i {
	font-size: 20px;
	color: #1DA1F2;
	margin-top: 1px;
}
.ann-verif-price-box {
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
	border-radius: 12px;
	border: 1px solid #bae6fd;
}
.ann-verif-price-label {
	font-size: 13px;
	color: #666;
	margin-bottom: 4px;
}
.ann-verif-price-amount {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #1DA1F2;
}
.ann-verif-price-note {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}
.ann-verif-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding-top: 8px;
}
.ann-verif-actions button.ann-btn-primary {
	background: #93bf00;
	border-color: #93bf00;
	color: #fff;
	-webkit-appearance: none;
	appearance: none;
}
.ann-verif-actions button.ann-btn-primary:hover {
	background: #7a9f00;
	border-color: #7a9f00;
}
.ann-verif-link {
	color: #1DA1F2 !important;
	font-weight: 500;
}
.ann-verif-link:hover {
	background-color: #f0f9ff !important;
}

@media (max-width: 768px) {
	.ann-verif-page {
		padding: 16px;
	}
	.ann-verif-steps {
		flex-direction: column;
		gap: 12px;
		padding: 16px;
	}
	.ann-verif-actions {
		flex-direction: column;
	}
	.ann-verif-actions .ann-btn {
		width: 100%;
		text-align: center;
	}
	.ann-verif-price-amount {
		font-size: 24px;
	}
}

