
      .dealer-directory {
        background: linear-gradient(135deg, #fdf6ed 0%, #f7fdf9 100%);
        padding: 70px 0 40px;
      }

      .dealer-directory__header {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
      }

      .dealer-directory__title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #262626;
      }

      .dealer-directory__subtitle {
        font-size: 15px;
        color: #6d7688;
        margin: 0;
      }

      .dealer-directory__controls {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        justify-content: flex-end;
      }

      .dealer-directory__search {
        flex: 1 1 280px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(58, 127, 97, 0.2);
        border-radius: 14px;
        padding: 0 18px;
        background: #fff;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
      }

      .dealer-directory__search input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 15px;
        background: transparent;
        height: 48px;
      }

      .dealer-directory__primary-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(120deg, #f18f26, #ce7a2c);
        color: #262626;
        border: none;
        border-radius: 14px;
        padding: 14px 28px;
        font-weight: 600;
        letter-spacing: 0.3px;
        box-shadow: 0 18px 35px rgba(206, 122, 44, 0.45);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .dealer-directory__primary-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 45px rgba(206, 122, 44, 0.55);
      }

      .dealer-directory__filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        /*! margin-bottom: 30px; */
      }

      .dealer-directory__filter {
        border: 1px solid rgba(241, 143, 38, 0.28);
        border-radius: 999px;
        padding: 10px 20px;
        background: #fff;
        color: #3e7f61;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.2s ease;
        cursor: pointer;
      }

      .dealer-directory__filter.is-active {
        background: #2a8c41;
        color: #fff;
        border-color: #2a8c41;
      }

      .dealer-directory__insights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-bottom: 35px;
      }

      .insight-card {
        border-radius: 18px;
        padding: 22px;
        background: #fff;
        border: 1px solid rgba(15, 31, 61, 0.08);
        box-shadow: 0 12px 30px rgba(15, 31, 61, 0.07);
      }

      .insight-card__label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #6d7688;
        display: block;
        margin-bottom: 8px;
      }

      .insight-card__value {
        font-size: 34px;
        font-weight: 700;
        color: #1f2937;
        line-height: 1;
      }

      .insight-card__trend {
        font-size: 12px;
        margin-top: 4px;
        color: #2a8c41;
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }

      .dealer-directory__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
      }

      .dealer-tile {
        border-radius: 22px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        padding: 28px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .dealer-tile:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(16, 32, 72, 0.13);
      }

      .dealer-tile__header {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .dealer-tile__logo {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: linear-gradient(135deg, #ce7a2c, #3e7f61);
        color: #fff;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }

      .dealer-tile__name {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #1f2937;
      }

      .dealer-tile__location {
        font-size: 14px;
        color: #6d7688;
        margin: 0;
      }

      .dealer-tile__contact-block {
        margin: 14px 0;
        padding: 14px 18px;
        border-radius: 16px;
        background: rgba(247, 249, 252, 0.7);
        border: 1px dashed rgba(62, 127, 97, 0.35);
      }

      .dealer-tile__contact-label {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #3e7f61;
        font-weight: 700;
        margin: 0 0 8px;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .dealer-tile__contact-line {
        font-size: 13px;
        color: #6d7688;
        margin: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .status-badge {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border-radius: 999px;
        padding: 6px 16px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .status-badge--onboarding {
        background: rgba(42, 140, 65, 0.15);
        color: #2a8c41;
      }

      .status-badge--monitoring {
        background: rgba(241, 143, 38, 0.2);
        color: #ce7a2c;
      }

      .status-badge--calm {
        background: rgba(62, 127, 97, 0.18);
        color: #3e7f61;
      }

      .dealer-tile__counts {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .count-pill {
        border-radius: 18px;
        background: rgba(247, 249, 252, 0.9);
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .count-pill__label {
        font-size: 12px;
        text-transform: uppercase;
        color: #6d7688;
        letter-spacing: 0.05em;
      }

      .count-pill__value {
        font-weight: 700;
        font-size: 18px;
        color: #1f2937;
      }

      .count-pill--pending {
        background: rgba(241, 143, 38, 0.15);
        border: 1px solid rgba(241, 143, 38, 0.3);
        color: #ce7a2c;
      }

      .count-pill--pending .count-pill__label,
      .count-pill--pending .count-pill__value {
        color: inherit;
      }

      .count-pill--validated {
        background: rgba(42, 140, 65, 0.15);
        border: 1px solid rgba(42, 140, 65, 0.25);
        color: #2a8c41;
      }

      .count-pill--validated .count-pill__label,
      .count-pill--validated .count-pill__value {
        color: inherit;
      }

      .dealer-tile__footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
      }

      .dealer-tile__cta {
        font-weight: 700;
        color: #f18f26;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .dealer-pagination {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .dealer-pagination__btn {
        min-width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.12);
        background: #fff;
        color: #1f2937;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        gap: 6px;
        transition: background 0.2s ease, color 0.2s ease,
          box-shadow 0.2s ease, border-color 0.2s ease;
        cursor: pointer;
      }

      .dealer-pagination__btn.is-active {
        background: linear-gradient(120deg, #f18f26, #ce7a2c);
        border-color: transparent;
        color: #262626;
        box-shadow: 0 12px 25px rgba(206, 122, 44, 0.25);
      }

      .dealer-pagination__btn[disabled] {
        opacity: 0.4;
        cursor: not-allowed;
      }

      .dealer-search-card {
        background: #fef4e8;
        border-radius: 18px;
        border: 1px solid rgba(241, 143, 38, 0.2);
        padding: 28px;
        margin-bottom: 35px;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
      }

      .dealer-search-card__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        padding: 12px 18px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #262626;
        margin-bottom: 20px;
      }

      .dealer-search-card__body {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
      }

      .dealer-search-card select,
      .dealer-search-card input {
        flex: 1 1 250px;
        height: 48px;
        border-radius: 10px;
        border: 1px solid rgba(38, 37, 37, 0.2);
        padding: 0 16px;
        font-size: 15px;
        background: #fff;
      }

      .dealer-search-card button {
        height: 48px;
        padding: 0 28px;
        border-radius: 10px;
        border: none;
        background: #2a8c41;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 14px 30px rgba(42, 140, 65, 0.25);
        cursor: pointer;
      }

      @media (max-width: 991px) {
        .dealer-directory__controls {
          width: 100%;
        }

        .dealer-directory__primary-btn {
          width: 100%;
          justify-content: center;
        }

        .dealer-directory__search {
          flex: 1 1 100%;
        }
      }

      .dealer-tile--hidden {
        display: none !important;
      }
    /* Page hero */
.page-hero{
	position:relative;
	padding:50px 0 50px;
	overflow:hidden;
	background:linear-gradient(135deg,#ce7a2c 0%,#3e7f61 100%);
}



.page-hero__bg{
	position:absolute;
	inset:0;
	background-size:cover;
	background-position:center;
	filter:brightness(0.55);
	opacity:0.48;
}




.page-hero .auto-container,
.page-hero__inner{
	max-width:700px;
	color:#262626;
	text-align:left;
}



.page-hero__inner{
	max-width:715px;
	color:#262626;
	text-align:left;
}



.page-hero__label{
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:5px 14px;
	border-radius:999px;
	background:rgba(241,143,38,0.3);
	border:1px solid rgba(241,143,38,0.62);
	font-size:11px;
	letter-spacing:0.12em;
	text-transform:uppercase;
	margin-bottom:18px;
	color:#ffe4c5;
}



.page-hero__title{
	font-size:36px;
	line-height:1.35;
	font-weight:700;
	margin-bottom:14px;
	color:#262626;
}



.page-hero__subtitle{
	font-size:15px;
	line-height:1.8;
	color:rgba(255,255,255,0.82);
	margin-bottom:22px;
}



.page-hero__btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:10px 22px;
	border-radius:999px;
	font-weight:600;
	text-transform:uppercase;
	font-size:11px;
	letter-spacing:0.1em;
	transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-hero__btn--primary{
	background:#f18f26;
	color:#262626;
	box-shadow:0 10px 24px rgba(241,143,38,0.2);
}

.page-hero__btn--primary:hover{
	transform:translateY(-2px);
	box-shadow:0 14px 28px rgba(241,143,38,0.22);
}

@media (max-width:991px){
	.page-hero{
	position:relative;
	padding:78px 0 70px;
	overflow:hidden;
	background:linear-gradient(135deg,#e9974b 0%,#4d8a6d 100%);
}



@media (max-width:575px){
	.page-hero{
	position:relative;
	padding:78px 0 70px;
	overflow:hidden;
	background:linear-gradient(135deg,#e9974b 0%,#4d8a6d 100%);
}



/* ccs ble ajouter le 06 11 2025*/
.dashboard-summary {
	padding: 80px 0;
	background-color: #f7f9fc;
}

.dashboard-summary .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.dashboard-summary .section-title h2 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
}

.summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
}

.summary-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px 25px;
	box-shadow: 0 12px 35px rgba(27, 47, 125, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
}

.summary-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(27, 47, 125, 0.12);
}

.summary-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c64f1, #74b2ff);
	color: #fff;
	font-size: 22px;
	margin-bottom: 18px;
}

.summary-card h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #0f1f3d;
}

.summary-value {
	font-size: 32px;
	font-weight: 700;
	color: #2c64f1;
	margin-bottom: 4px;
}

.summary-desc {
	font-size: 13px;
	color: #6d7688;
}

.summary-card--guide {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.summary-card--guide .summary-icon {
	background: linear-gradient(135deg, #13b887, #6ce3b9);
}

.main-header .main-menu .navigation > li > a{
	color:#ffffff !important;
}

.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a{
	color:#000000 !important;
}

.sticky-header .main-menu .navigation > li > a{
	color:#ffffff !important;
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a{
	color:#000000 !important;
}

.summary-link {
	margin-top: 18px;
	display: inline-block;
	font-weight: 600;
	color: #2c64f1;
}

.summary-link:hover {
	text-decoration: underline;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,rgba(15,23,42,0.72) 0%,rgba(15,23,42,0.42) 55%,rgba(15,23,42,0.18) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Dealer directory custom styles */
.dealer-directory {
  background: linear-gradient(135deg, #fdf6ed 0%, #f7fdf9 100%);
  padding: 70px 0 40px;
}

.dealer-directory__header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.dealer-directory__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #262626;
}

.dealer-directory__subtitle {
  font-size: 15px;
  color: #6d7688;
  margin: 0;
}

.dealer-directory__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.dealer-directory__search {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(58, 127, 97, 0.2);
  border-radius: 14px;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.dealer-directory__search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  background: transparent;
  height: 48px;
}

.dealer-directory__primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, #f18f26, #ce7a2c);
  color: #262626;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 18px 35px rgba(206, 122, 44, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dealer-directory__primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(206, 122, 44, 0.55);
}

.dealer-directory__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.dealer-directory__filter {
  border: 1px solid rgba(241, 143, 38, 0.28);
  border-radius: 999px;
  padding: 10px 20px;
  background: #fff;
  color: #3e7f61;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dealer-directory__filter.is-active {
  background: #2a8c41;
  color: #fff;
  border-color: #2a8c41;
}

.dealer-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dealer-tile {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dealer-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(16, 32, 72, 0.13);
}

.dealer-tile__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dealer-tile__logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ce7a2c, #3e7f61);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.dealer-tile__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2937;
}

.dealer-tile__location {
  font-size: 14px;
  color: #6d7688;
  margin: 0;
}

.dealer-tile__contact-block {
  margin: 14px 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(247, 249, 252, 0.7);
  border: 1px dashed rgba(62, 127, 97, 0.35);
}

.dealer-tile__contact-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3e7f61;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dealer-tile__contact-line {
  font-size: 13px;
  color: #6d7688;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-badge--onboarding {
  background: rgba(42, 140, 65, 0.15);
  color: #2a8c41;
}

.status-badge--monitoring {
  background: rgba(241, 143, 38, 0.2);
  color: #ce7a2c;
}

.status-badge--calm {
  background: rgba(62, 127, 97, 0.18);
  color: #3e7f61;
}

.dealer-tile__counts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.count-pill {
  border-radius: 18px;
  background: rgba(247, 249, 252, 0.9);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.count-pill__label {
  font-size: 12px;
  text-transform: uppercase;
  color: #6d7688;
  letter-spacing: 0.05em;
}

.count-pill__value {
  font-weight: 700;
  font-size: 18px;
  color: #1f2937;
}

.count-pill--pending {
  background: rgba(241, 143, 38, 0.15);
  border: 1px solid rgba(241, 143, 38, 0.3);
  color: #ce7a2c;
}

.count-pill--validated {
  background: rgba(42, 140, 65, 0.15);
  border: 1px solid rgba(42, 140, 65, 0.25);
  color: #2a8c41;
}

.count-pill--pending .count-pill__label,
.count-pill--pending .count-pill__value,
.count-pill--validated .count-pill__label,
.count-pill--validated .count-pill__value {
  color: inherit;
}

.dealer-tile__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.dealer-tile__cta {
  font-weight: 700;
  color: #f18f26;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dealer-tile__cta:hover {
  color: #ce7a2c;
}

.dealer-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dealer-pagination__btn {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #1f2937;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.dealer-pagination__btn.is-active {
  background: linear-gradient(120deg, #f18f26, #ce7a2c);
  border-color: transparent;
  color: #262626;
  box-shadow: 0 12px 25px rgba(206, 122, 44, 0.25);
}

.dealer-pagination__btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.dealer-search-card {
  background: #fef4e8;
  border-radius: 18px;
  border: 1px solid rgba(241, 143, 38, 0.2);
  padding: 28px;
  margin-bottom: 35px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

.dealer-search-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #262626;
  margin-bottom: 20px;
}

.dealer-search-card__body {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.dealer-search-card select,
.dealer-search-card input {
  flex: 1 1 250px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(38, 37, 37, 0.2);
  padding: 0 16px;
  font-size: 15px;
  background: #fff;
}

.dealer-search-card button {
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  border: none;
  background: #2a8c41;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(42, 140, 65, 0.25);
  cursor: pointer;
}

@media (max-width: 991px) {
  .dealer-directory__controls {
    width: 100%;
  }

  .dealer-directory__primary-btn {
    width: 100%;
    justify-content: center;
  }

  .dealer-directory__search {
    flex: 1 1 100%;
  }
}
