.elementor-7043 .elementor-element.elementor-element-5860671{--display:flex;}.elementor-7043 .elementor-element.elementor-element-fb19365{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-dde8ca7 *//* =====================
   MOBILE ONLY HEADER
   ===================== */

.mobile-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99999;
  border-bottom: 1px solid #f2f4f5;
}

.mobile-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}

.logo img {
  height: 32px;
  width: auto;
}

/* KNAPP */
.menu-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent !important;
  box-shadow: none;
  outline: none;

  padding: 0;
  margin: 0;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 6px;

  width: 44px;
  height: 44px;

  justify-content: center;
  align-items: center;
}

/* tar bort klick-highlight på mobil */
.menu-btn:focus,
.menu-btn:active {
  outline: none;
  box-shadow: none;
  background: transparent !important;
}

/* MENY */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: white;
  transition: max-height .3s ease;
}

.mobile-nav.open {
  max-height: 500px;
}

.mobile-nav a {
  padding: 15px 20px;
  text-decoration: none;
  color: #2f3c44;
  font-size: 15px;
  border-bottom: 1px solid #f2f4f5;
}

/* hover */
.mobile-nav a:hover {
  background: #f4faf8;
  color: #1fa37a;
}/* HAMBURGER KNAPP */
.menu-btn {
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 6px;

  /* viktig — större touch-yta */
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

/* STRECKEN */
.menu-btn span {
  width: 28px;       /* större */
  height: 2.5px;     /* lite tjockare = premium */
  background: #2f3c44;
  border-radius: 2px;
}/* MOBILE NAV LINKS */
.mobile-nav a,
.mobile-nav a:link,
.mobile-nav a:visited,
.mobile-nav a:active {
  color: #1fa37a !important;   /* GEDOC-grön */
  text-decoration: none;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c7510ab */.gedoc-header {
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 46px;
  width: auto;
  display: block;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 22px;                    /* ⭐ premium spacing */
  align-items: center;
}

.main-nav a,
.main-nav a:visited,
.main-nav a:link {
  font-family:'Gotham', sans-serif !important;
  font-weight:500 !important;
  font-size: 13px;              /* ⭐ mindre premium text */
  letter-spacing: 0.2px;        /* ⭐ exklusiv känsla */
  color:#2f3c44 !important;
  position: relative;
  text-decoration: none;
  transition: color .25s ease;
}

/* underline animation — mjukare */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1.5px;                /* ⭐ tunnare = premium */
  background: #1fa37a;
  transition: width 0.35s ease; /* ⭐ lugnare */
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #1fa37a !important;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: white;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 12px 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 420px;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  white-space: nowrap;
  font-size: 13px;              /* ⭐ matchar menyn */
  font-weight: 500;
  color: #2f3c44 !important;
}

.dropdown-menu a:hover {
  background: #f4faf8;
  color: #1fa37a !important;
}

/* PIL SOM VISAR DROPDOWN */
.dropdown-toggle {
  padding-right: 14px;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid #2f3c44;
  border-bottom: 1.8px solid #2f3c44;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-toggle::before {
  transform: translateY(-40%) rotate(225deg);
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {

  .header-inner {
    padding: 12px 14px;
  }

  .logo img {
    height: 32px;
  }

  /* VISA MENYN */
  .main-nav {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    white-space: nowrap;
    padding-bottom: 4px;

    scrollbar-width: none; /* Firefox */
  }

  .main-nav::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .main-nav a {
    font-size: 12px;
    flex-shrink: 0;
  }

  /* dropdown funkar inte bra på touch */
  .dropdown-menu {
    display: none;
  }

}/* End custom CSS */