.ce-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(12,35,64,0.06);
  position: sticky;
  top: 0; left: 0; z-index: 100;
  font-family: 'Montserrat', Arial, sans-serif;
}

.ce-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  position: relative;
}

/* Logo + texte */
.ce-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.44rem;
  font-weight: bold;
  color: #0c2340;
  gap: 13px;
}

.ce-header-logo img {
  height: 36px;
  width: auto;
  margin-right: 6px;
  border-radius: 7px;
  box-shadow: 0 2px 8px #f5761a11;
  background: #f6f8fa;
  flex-shrink: 0;
}

.dot-orange {
  color: #f5761a;
  font-size: 1.23em;
  user-select: none;
}

/* Menu desktop */
.ce-header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.ce-header-nav a,
.ce-header-nav .nav-disabled {
  font-weight: 600;
  font-size: 1.04rem;
  color: #0c2340;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.ce-header-nav a:hover,
.ce-header-nav a.active {
  color: #f5761a;
  border-bottom-color: #f5761a;
}

.nav-disabled {
  color: #ccc !important;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.badge-soon {
  background: #f5761a;
  color: #fff;
  font-size: 0.78rem;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: middle;
}

/* Menu burger (checkbox) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 2.3rem;
  color: #f5761a;
  cursor: pointer;
  user-select: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle-label:hover {
  background: #f5761a33;
}

/* Responsive styles */
@media (max-width: 700px) {

  /* Show burger icon */
  .nav-toggle-label {
    display: block;
  }

  /* Hide desktop menu */
  .ce-header-nav {
    position: fixed;
    top: 70px; /* height of header */
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 10px 34px rgba(12,35,64,0.13);
    z-index: 9999;
  }

  .ce-header-nav a,
  .ce-header-nav .nav-disabled,
  .btn-header-orange {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 1.2rem;
  }

  /* Show menu when checkbox checked */
  .nav-toggle:checked + .nav-toggle-label + .ce-header-nav {
    max-height: 600px; /* adjust to your menu height */
    opacity: 1;
    pointer-events: auto;
  }
}
