html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 150px;
}

/* MENU LINKY */

.sticky-menu {
  position: sticky;
  top: var(--shoptet-header-bottom-height, 72px);
  z-index: 20;
  font-family: Arial, sans-serif;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
}

.menu-link {
  color: #0f3557;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.25s ease;
  font-weight: 700;
}

/* hover */

.menu-link:hover {
  background: #e0f2fe;
  color: #0284c7;
}

.menu-link.active {
  background: #0ea5e9;
  color: white;
  box-shadow: 0 4px 12px rgba(14,165,233,0.25);
}

/* MOBILE FIX */

.menu-link:focus,
.menu-link:active {
  outline: none;
  background: #e0f2fe;
  color: #0284c7;
}

.menu-link.active {
  background: #0ea5e9 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(14,165,233,0.25);
}

@media (max-width: 991px) {

  .sticky-menu {
    position: static !important;
    top: auto !important;
    z-index: 1 !important;
  }

  header[itemprop="headline"] {
    display: none !important;
  }

  section:first-of-type {
    padding-top: 140px !important;
  }

  section[id] {
    scroll-margin-top: 40px !important;
  }

}