/* ===================================
   MENU PRO - Frontend CSS
   =================================== */

.mpro-nav {
  width: 100%;
}

.mpro-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.mpro-nav--vertical .mpro-list {
  flex-direction: column;
}

.mpro-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mpro-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1.4;
}

.mpro-item-link:hover {
  text-decoration: none !important;
}

.mpro-item-link:focus {
  outline: 2px solid rgba(0,0,0,0.2);
  outline-offset: 2px;
}

.mpro-item-img {
  display: block;
  flex-shrink: 0;
}

.mpro-item-text {
  display: inline-block;
}

/* Active item indicator */
.mpro-item--active .mpro-item-link {
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .mpro-list {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .mpro-item-link {
    width: 100%;
    justify-content: center;
  }
}
