/**
 * En-tête apps MCV — icône hub (cercle indigo) + titre dégradé (#ce9bdd → #71baff).
 */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@800;900&family=Poppins:wght@600;700;800&display=swap");

.mcv-app-header {
  position: relative;
  z-index: 40;
  overflow: visible;
  border-bottom: 1px solid rgb(226 232 240 / 0.9);
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(8px);
}

.mcv-app-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mcv-app-header__brand {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.mcv-app-header__icon-ring {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ce9bdd, #71baff);
  box-shadow: 0 1px 4px rgb(206 155 221 / 0.35);
}

.mcv-app-header__icon-ring::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 9999px;
  background: #fff;
  z-index: 0;
}

@media (min-width: 640px) {
  .mcv-app-header__icon-ring {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.mcv-app-header__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

@media (min-width: 640px) {
  .mcv-app-header__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Dégradé titre + cercle icône (référence Mes salons MCV) */
.mcv-app-header__title {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ce9bdd, #71baff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 640px) {
  .mcv-app-header__title {
    font-size: 1.75rem;
  }
}

.mcv-app-header__title--salon {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
}

.mcv-app-header__title a {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-decoration: none;
}

.mcv-app-header__title a:hover {
  opacity: 0.88;
}

.mcv-app-header__title-em {
  font-style: italic;
  font-weight: 700;
}

.mcv-app-header__subtitle {
  margin: 0.15rem 0 0;
  width: 100%;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #64748b;
}

@media (min-width: 640px) {
  .mcv-app-header__subtitle {
    font-size: 0.75rem;
  }
}

.mcv-app-header__brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mcv-app-header__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
