.franchise-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: 0.25s;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.franchise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.franchise-img {
  height: 140px;
  object-fit: cover;
}

.franchise-title {
  font-weight: 700;
  color: #192653;
  text-align: center;
}

.progress {
  height: 8px;
}

.progress-bar {
  width: 0;
  transition: width 1s ease;
}

/* Wrapper image plein largeur */
.franchise-img-wrapper {
  width: 100%;
  height: 140px; /* hauteur contrôlée */
  padding: 0; /* suppression du padding */
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background-color: #f1f3f5;
}

/* Image cover */
.franchise-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* remplit la zone */
  display: block;
}
/* Compteurs mis en avant */
.franchise-stats {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.franchise-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: #192653;
}

.franchise-percent {
  font-size: 1.25rem;
  font-weight: 800;
  color: #192653;
}

/* Nom un peu plus discret */
.franchise-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer progress */
.franchise-card {
  position: relative;
  padding-bottom: 14px;
}

.franchise-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.franchise-progress .progress {
  height: 6px;
  border-radius: 0 0 18px 18px;
}

.franchise-progress .progress-bar {
  border-radius: 0 0 18px 18px;
}

.franchise-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.franchise-card {
  min-height: 260px; /* structure visuelle */
}

.card-extension {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.25s;
  background: #fff;
}
.card-extension:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.card-extension img {
  height: 230px;
  object-fit: cover;
  transition: 0.3s;
  cursor: pointer;
}
