.eef-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: relative;
}

.eef-nav-brand { display: flex; align-items: center; text-decoration: none; }
.eef-nav-brand img { max-height: 25px; max-width: 100px; margin-right: 8px; }
.eef-nav-brand p {
    display: block;
    color: #222;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    margin: 0;
}

.eef-nav-brand:hover { text-decoration: none; }

.eef-nav-toggler {
  display: none;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: #555;
}
.eef-nav-toggler-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") center/contain no-repeat;
}

.eef-nav-collapse {
  display: flex;
  flex-basis: auto;
  flex-grow: 0;
  align-items: center;
}

.eef-nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  margin-left: auto;
  margin-bottom: 0;
}

.eef-nav-item { position: relative; }

.eef-nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 4px;
  transition: background .15s;
}
.eef-nav-link:hover { background: #f5f5f5; text-decoration: none; }

.eef-nav-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0.4em;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.eef-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  min-width: 180px;
  padding: 0.5rem 0;
  margin-top: 0.125rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  list-style: none;
}
.eef-nav-dropdown-menu.eef-nav-open { display: block; }

.eef-nav-dropdown-item {
  display: block;
  padding: 0.4rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  clear: both;
  white-space: nowrap;
}
.eef-nav-dropdown-item:hover { background: #f0f0f0; text-decoration: none; }

@media (max-width: 767px) {
  .eef-nav-toggler { display: block; }

  .eef-nav-collapse {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 0.75rem;
  }
  .eef-nav-collapse.eef-nav-open { display: flex; }

  .eef-nav-list {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }

  .eef-nav-link { width: 100%; }

  .eef-nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: #fafafa;
    margin-top: 0;
    border-radius: 0;
  }
  .eef-nav-dropdown-menu.eef-nav-open { display: block; }
}
