.dasty-nav {
  display: flex;
  align-items: center;
  height: 44px;
  width: 100%;
}

.dasty-nav__left {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.dasty-nav__center {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
  overflow: hidden;
}

.dasty-nav__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.dasty-nav__categories-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 18px;
  background: rgba(0,0,0,.15);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.dasty-nav__categories-btn:hover,
.dasty-nav__categories-btn:focus {
  background: rgba(0,0,0,.25);
}

.dasty-nav__categories-btn svg {
  flex-shrink: 0;
}

/* ── Main Nav List ── */
.dasty-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.dasty-nav__list li {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.dasty-nav__list li a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color .2s ease;
}

.dasty-nav__list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: #fcbe00;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.dasty-nav__list li a:hover {
  color: #fff;
}

.dasty-nav__list li a:hover::after {
  transform: scaleX(1);
}

.dasty-nav__list li a:focus-visible {
  outline: 2px solid #fcbe00;
  outline-offset: -2px;
}

.dasty-nav__list li.current-menu-item a,
.dasty-nav__list li.current-page-item a {
  color: #fff;
  font-weight: 600;
}

.dasty-nav__list li.current-menu-item a::after,
.dasty-nav__list li.current-page-item a::after {
  transform: scaleX(1);
}

/* ── Hide cart in bottom nav on desktop (shown in top header) ── */
@media (min-width: 1025px) {
  .dasty-nav__right .dasty-cart {
    display: none;
  }
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .dasty-nav {
    display: none;
    flex-direction: column;
    height: auto;
  }

  .dasty-nav.open {
    display: flex;
  }

  .dasty-nav__left {
    width: 100%;
  }

  .dasty-nav__center {
    width: 100%;
    justify-content: flex-start;
  }

  .dasty-nav__right {
    width: 100%;
    margin-left: 0;
  }

  .dasty-nav__categories-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(0,0,0,.2);
  }

  .dasty-nav__list {
    flex-direction: column;
    width: 100%;
    background: #1a2a4a;
  }

  .dasty-nav__list li a {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .dasty-nav__right .dasty-cart {
    display: flex;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
}