/* ══════════════════════════════════════════════════════
   header.css – Barre de navigation supérieure + bouton PWA
   ══════════════════════════════════════════════════════ */

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.h-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.h-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.h-logo-wrap {
  height: 42px;
  width: auto;
  display: flex;
  align-items: center;
}
.h-logo-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.h-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.h-sub {
  font-size: 0.63rem;
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.h-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Bouton installer PWA */
.btn-install {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-install.show {
  display: flex;
}
.btn-install:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}
.btn-install svg {
  width: 16px;
  height: 16px;
}
