/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 1000;
  padding: 40px 20px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu--active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.header__nav-link {
  color: beige;
}

.mobile-menu__link {
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu__buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
