/* =========== Бургер-меню: СТИЛИ =========== */

/* По умолчанию показываем desktop-меню, скрываем мобильное */
.desktop-menu {
  display: flex;
}

.burger-menu,
.mobile-menu {
  display: none;
}

/* Адаптив: на мобилках прячем desktop и включаем бургер */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

.mobile-menu-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

  /* Бургер-кнопка */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 28px;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .burger-menu span {
    height: 3px;
    background: #fff;
    width: 100%;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Анимация бургер → крест */
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Мобильное меню */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #3b5998;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 90%;
    max-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .mobile-menu a {
    padding: 12px 16px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

    .mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* По умолчанию — показываем только десктоп */
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}

/* 💡 Жёстко скрываем мобильное меню на десктопе */
@media (min-width: 769px) {
  .mobile-menu,
  .burger-menu,
  .mobile-menu-wrapper {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-only,
  .mobile-menu,
  .mobile-menu.active,
  .burger-menu,
  .burger-menu.active,
  .mobile-menu-wrapper {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }
}

