/* Root placeholder (stays inside Elementor column) */
.xe-services-nav {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Visible nav (lives on document.body) */
.xe-services-nav__inner {
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: inherit;
  box-sizing: border-box;
  z-index: 9999;
  pointer-events: auto;
}

.xe-services-nav__inner *,
.xe-services-nav__inner *::before,
.xe-services-nav__inner *::after {
  box-sizing: border-box;
}

.xe-services-nav__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.xe-services-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xe-services-nav__list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xe-services-nav__item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #444;
  background: transparent;
  border: 1.5px solid #e0e0e0;
  border-radius: 30px;
  text-decoration: none;
  transition: border-color 0.15s ease,
              background-color 0.15s ease,
              color 0.15s ease;
  white-space: normal;
  word-wrap: break-word;
}

.xe-services-nav__item:hover,
.xe-services-nav__item:focus {
  border-color: #999;
  color: #444;
  text-decoration: none;
  outline: none;
}

.xe-services-nav__item.is-active {
  background: #1e1e1e;
  color: #fff;
  border-color: #1e1e1e;
}

/* Hide on tablets and below */
@media (max-width: 1199px) {
  .xe-services-nav {
    display: none !important;
  }
  .xe-services-nav__inner {
    display: none !important;
  }
}