/* Single source of truth — desktop + shared nav look. Loaded last. */
@media (min-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 64px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    /* Opaque — same look on every page (no content showing through) */
    background: #18181c !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
    z-index: 99980 !important;
  }

  [data-theme="light"] nav {
    background: #f0f2f5 !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
  }

  nav.nav-scrolled {
    background: #18181c !important;
    box-shadow: none !important;
  }

  [data-theme="light"] nav.nav-scrolled {
    background: #f0f2f5 !important;
    box-shadow: none !important;
  }

  nav .nav-inner {
    width: 100% !important;
    max-width: none !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 0.7rem 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2.5rem !important;
    box-sizing: border-box !important;
  }

  nav .logo {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
  }

  nav .logo img {
    display: block !important;
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    max-width: 180px !important;
  }

  nav .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
    gap: 2.25rem !important;
  }

  nav .nav-actions {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex: 0 0 auto !important;
    margin-left: 0 !important;
  }

  nav .nav-account {
    margin: 0 !important;
  }

  nav .nav-cart {
    margin-left: 0 !important;
  }

  nav .nav-links li {
    display: list-item !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  nav .nav-links a {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    padding: 0.15rem 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }

  nav .nav-links a .ti {
    display: inline-block !important;
    font-size: 1.15rem !important;
    line-height: 1 !important;
    width: 1.15rem !important;
    height: 1.15rem !important;
    transform: none !important;
  }

  nav .nav-links a .nav-icon {
    display: block !important;
    width: 2.25rem !important;
    height: 2.25rem !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  nav .nav-links a:hover .ti,
  nav .nav-links a.active .ti {
    transform: none !important;
  }
}
