.soc-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 32px 0;
}

body.soc-has-topbar .soc-header {
  top: 30px;
}

.soc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.soc-header__logo {
  display: flex;
  align-items: center;
}

.soc-header__logo img {
  max-height: 46px;
  width: auto;
}

.soc-nav__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.soc-nav__list li a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s ease;
  line-height: 1.4;
}

.soc-nav__list li a:hover,
.soc-nav__list li.current-menu-item a,
.soc-nav__list li.current_page_item a {
  background: rgba(255, 255, 255, 0.12);
}

.soc-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  z-index: 12;
  position: relative;
}

.soc-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.soc-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.soc-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.soc-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .soc-header {
    padding: 18px 0;
  }
  .soc-header__logo img {
    max-height: 40px;
  }
  .soc-hamburger {
    display: flex;
  }
  .soc-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88%);
    height: 100vh;
    background: linear-gradient(180deg, #4a1782 0%, #360e64 100%);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 11;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  body.soc-resizing .soc-nav,
  body.soc-resizing .soc-hamburger,
  body.soc-resizing .soc-hamburger span {
    transition: none !important;
  }
  .soc-nav.is-open {
    transform: translateX(0);
  }
  .soc-nav__list {
    flex-direction: column;
    gap: 8px;
  }
  .soc-nav__list li a {
    padding: 12px 16px;
    font-size: 18px;
    width: 100%;
  }
}
