/* Mobile Slide-in Mega Menu */



.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 0px 40px;
  background-color: #f9f9f9;
  transition: left 0.3s ease-in-out;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu-panel .webshop-menu-item .mobile-menu-link{
      color: #0b6a30;
      text-transform: uppercase;
}
.mobile-menu-panel .webshop-menu-item .mobile-menu-link:before {
    font-family: 'ETModules';
    position: relative;
    bottom: -0.08em;
    content:"\e079";
    margin-right: 10px;
    
}

.mobile-menu-fixed-logo {
    position: absolute;
    top: 37px;
    left: 37px;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.95); */
    /* padding: 8px; */
    /* border-radius: 6px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.mobile-menu-fixed-logo img {
    max-width: 80px;
    height: auto;
    display: block;
}

.mobile-menu-fixed-logo a {
    display: block;
    text-decoration: none;
}

/* Zorg ervoor dat panels genoeg ruimte hebben voor het logo */
.mobile-menu-panel {
    padding-top: 60px; /* Ruimte maken voor het fixed logo */
}

.mobile-menu-panel .back-button {
    margin-top: 10px; /* Beetje extra ruimte onder het logo */
}

.mobile-menu-logo {
    padding: 20px 20px 10px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.mobile-menu-logo img {
    max-width: 120px;
    height: auto;
}

.mobile-menu-logo a {
    display: inline-block;
    text-decoration: none;
}

/* Zorg ervoor dat het logo alleen in het root panel staat */
.mobile-menu-panel:not(.active) .mobile-menu-logo {
    display: none;
}

.mobile-menu-panel.active {
  left: 0;
}

.mobile-menu-panel.slide-out {
  left: -100%;
}

.et-l--header ul.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 24px;
}

.mobile-menu-item {
  margin-bottom: 1.1rem;
  list-style: none;
}
.mobile-menu-item:last-child{
  margin-bottom: 0px;
}

.language-panel .mobile-menu-item:first-of-type {
  display: none;
}

.mobile-menu-link {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.has-children-button::after {
  content: "›";
  font-size: 18pt;
  top: -8px;
  position: relative;
  height: 10px;
}

.submenu-toggle {
    width: 100%;
    text-align: left;
    border: 0px;
    background: none;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-between;
}

.mobile-menu-link:hover {
  color: #0b6a30;
}

.back-button {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  /* font-weight: bold; */
  color: #0b6a30;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 30px;
}

.back-button::before {
  content: "←";
  font-size: 18pt;
  top: 0px;
  position: relative;
  margin-right: 15px;
}


.back-button:hover {
  font-weight: bold;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  width: fit-content;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100099991;
  /* position: absolute; */
  right: 12px;
  top: 12px;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
}



/* Slide-in styles */
.mobile-menu-toggle span {
  display: block;
  height: 3px;
  background: #000;
  width: 100%;
  border-radius: 2px;
  transition: 0.3s ease;
  width: 25px;
}

.mobile-menu-toggle .mobile-menu-name {
  height: 10px;
  background: none;
  margin-bottom: 10px;
  width: fit-content;
  color: rgb(102, 102, 102);
  font-size: 10pt;
}

.mobile-menu-container {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.mobile-menu-container.ready {
  visibility: visible;
}

.mobile-menu-container.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-toggle.is-open .menu-icon span:nth-child(1),
.mobile-menu-toggle.is-open .menu-icon span:nth-child(2),
.mobile-menu-toggle.is-open .menu-icon span:nth-child(3) {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.mobile-menu-toggle.is-open .menu-icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.is-open .menu-icon span:nth-child(2) {
  display: none; /* middenstreep verdwijnt */
}

.mobile-menu-toggle.is-open .menu-icon span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-toggle .menu-icon {
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 4px;
    position: relative;
}
.mobile-navigation-header {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.mobile-navigation-header .mobile-header-logo {
  width: 100px;
}