.desktop-header {
  display: none;
}

.sub-menu {
  display: none !important;
  position: absolute;
  top: 50px;
  left: 0;
  flex-direction: column;
  background-color: #f8f8f8;
  color: black;
}

#menu-header-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.menu-desktop-menu-container .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.menu-desktop-menu-container,
#menu-header-menu-desktop {
  height: 100%;
}

.menu-desktop-menu-container .menu-item:hover>.sub-menu {
  display: flex !important;
}

.menu-desktop-menu-container .sub-menu .menu-item:hover {
  background-color: white;
  cursor: pointer;
}

.menu-desktop-menu-container .sub-menu .menu-item {
  text-wrap: nowrap;
}

.menu-desktop-menu-container .sub-menu a {
  color: black !important;
  padding: 16px 32px;
  width: 100%;

}


.mobile-header {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.mobile-header.scrolled{
  background-color: black;
}

.desktop-header {
  display: none;
}

.desktop-header-glob {
  padding-right: 124px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  align-items: center;
}


.logo-header-desk {
  height: 70px;
  margin-left: 148px;
}

.desktop-header a {
  color: white;
}

.desktop-header a:hover {
  transition: all 0.3s ease;
  color: var(--main-red);
}

.menu-desktop-menu-container,
#menu-header-menu-desktop {
  display: flex;
  font-size: 13px;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.menu-cta {
  font-size: 13px;
  padding: 16px 20px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  gap: 8px;
  width: auto;
}



.boutique-cta-header {
  color: white;
  border: 1px solid white;
}

.boutique-cta-header:hover {
  background-color: white;
  color: var(--main-red);
  border: 1px solid var(--main-red);
  transition: all 0.3s ease;
}

.devis-cta-header {
  background-color: var(--main-red);
  color: white;
  border: 1px solid var(--main-red);
  transition: all 0.3s ease;
}

.devis-cta-header:hover {
  background-color: white;
  color: var(--main-red);
  border: 1px solid var(--main-red);
}

.phone-cta-header {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.phone-cta-header:hover {
  color: var(--main-red);
  transition: all 0.3s ease;
  border: 1px solid var(--main-red);
}




.menu-desktop-menu-container ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-icon {
  margin-left: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
}

.mobile-phone {
  margin-right: 20px;
}

.burger-line {
  background-color: #fff;
  width: 100%;
  height: 4px;
  margin: 3.5px 0;
  transition: all 0.3s ease;
}

.burger-menu {
  /* position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 12px;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.burger-menu.menu-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.burger-exit {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5000;
}

.burger-exit img {
  width: 32px;
  height: 32px;
}

.burger-menu li {
  list-style: none;
  margin: 10px 0;
}

.burger-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.burger-menu a:hover {
  color: var(--main-red);
}

.menu-header-menu-mobile-container .menu-item-has-children.active .sub-menu{
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  visibility: visible;
}


@media screen and (min-width: 1200px) {
  .mobile-header {
    display: none;
  }

  .desktop-header {
    background-color: rgba(0,0,0,0.4);
	position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    height: 70px;
    padding: 8px 0;
    z-index: 1000;
  }

  .desktop-header.scrolled{
  background-color: black;
  }
}

@media screen and (min-width: 1600px) {
  .desktop-header-glob {
    padding-right: 196px;
  }

  .menu-desktop-menu-container,
  #menu-header-menu-desktop {
    font-size: 14px;
  }

  .menu-cta {
    font-size: 14px;
  }
}