.elementor-79 .elementor-element.elementor-element-8e36cc3{--display:flex;}.elementor-79 .elementor-element.elementor-element-d390357{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-be674b0 *//* ============================================================
   LE COMPTOIR DE RAISE — Header
   Coller dans : Apparence > Personnaliser > CSS additionnel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;600;700&display=swap');

/* ── Sticky header ── */
.elementor-location-header,
.elementor-location-header .elementor-section,
.wre-header-wrap {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
}
.admin-bar .elementor-location-header,
.admin-bar .wre-header-wrap {
  top: 32px !important;
}
@media (max-width: 782px) {
  .admin-bar .elementor-location-header,
  .admin-bar .wre-header-wrap {
    top: 46px !important;
  }
}
.wre-header-spacer {
  display: none !important;
}

/* ── Fond noir sur la section du header ── */
.elementor-location-header .elementor-section,
.elementor-location-header .e-con,
.elementor-location-header .elementor-container {
  background: #09162A !important;
  max-width: 100% !important;
}

/* ── Reset du widget ── */
.crn, .crn *, .crn *::before, .crn *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Barre — flexbox 3 colonnes ── */
.crn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 44px clamp(40px, 7vw, 120px);
  background: #09162A;
  font-family: 'Manrope', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Logo (col gauche) ── */
.crn__logo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.crn__logo-sup {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: #C9A84C;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.crn__logo-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 5px;
  color: #fff;
  line-height: 1;
  display: block;
}

/* ── Liens (col centre) ── */
.crn__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.crn__link {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.crn__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A84C;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.crn__link:hover { color: #fff; }
.crn__link:hover::after,
.crn__link--on::after { width: 100%; }
.crn__link--on { color: #C9A84C; }

/* Bouton fermeture — caché en desktop */
.crn__close { display: none; }

/* ── Droite (col droite) ── */
.crn__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Bouton Réserver */
.crn__cta {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  padding: 10px 26px;
  background: transparent;
  border: 1px solid #C9A84C;
  border-radius: 2px;
  color: #C9A84C;
  text-decoration: none;
  transition: background .3s, color .3s;
  white-space: nowrap;
  display: inline-block;
  line-height: normal;
}
.crn__cta:hover {
  background: #C9A84C;
  color: #07111F;
}

/* Burger — caché en desktop */
.crn__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.crn__burger span {
  height: 1.5px;
  background: #fff;
  display: block;
  width: 100%;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .3s, width .3s;
  transform-origin: center;
}
.crn__burger--open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.crn__burger--open span:nth-child(2) { opacity: 0; width: 0; }
.crn__burger--open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile ── */
@media (max-width: 860px) {

  /* Cacher le CTA desktop */
  .crn__cta { display: none; }

  /* Afficher le burger */
  .crn__burger { display: flex; }

  /* Overlay plein écran */
  .crn__links {
    position: fixed;
    inset: 0;
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    background: rgba(9,22,42,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
  }
  .crn__links--open { transform: translateX(0); }

  .crn__link {
    font-size: 22px;
    letter-spacing: 6px;
    color: rgba(255,255,255,.65);
  }

  /* Bouton fermeture */
  .crn__close {
    display: block;
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: 22px;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
    padding: 4px;
    font-family: Arial, sans-serif;
  }
  .crn__close:hover { color: #C9A84C; }
}/* End custom CSS */