
.venus-anchor-menu-wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.venus-anchor-menu {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.venus-anchor-menu li {
  margin: 0;
  padding: 0;
}

.venus-anchor-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123e63 !important;
  text-decoration: none !important;
  cursor: pointer;
  padding: 15px 14px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all .2s ease;
  white-space: nowrap;
}

.venus-anchor-menu-link:hover,
.venus-anchor-menu-link.active {
  color: #d1b267 !important;
  background: rgba(209, 178, 103, 0.10);
}

.venus-anchor-menu-link:hover {
  transform: translateY(-1px);
}

.venus-anchor-hamburger {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-sizing: border-box;
}

.venus-anchor-hamburger span {
  display: block;
  width: 30px;
  height: 4px;
  background: #123e63;
  border-radius: 999px;
  transition: all .2s ease;
}

/* Mobil javítás */
@media (max-width: 900px) {
  .venus-anchor-menu-wrap {
    width: calc(100% - 10px) !important;
    max-width: calc(100% - 10px) !important;
    min-width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .venus-anchor-hamburger {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    margin: 0 !important;
    border-radius: 22px !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 7px 12px !important;
  }

  .venus-anchor-menu-wrap.open .venus-anchor-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .venus-anchor-menu-wrap.open .venus-anchor-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .venus-anchor-menu-wrap.open .venus-anchor-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .venus-anchor-menu {
    display: none;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    min-height: auto;
    border-radius: 24px !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
  }

  .venus-anchor-menu-wrap.open .venus-anchor-menu {
    display: flex !important;
  }

  .venus-anchor-menu li {
    width: 100% !important;
    display: block !important;
  }

  .venus-anchor-menu-link {
    width: 100% !important;
    display: flex !important;
    text-align: center;
    padding: 16px 12px !important;
    box-sizing: border-box !important;
  }
}
