/* [project]/src/components/NCA-client/DesktopNav.css [app-client] (css) */
.desktop-nav {
  background: var(--NCA-surface-1);
  border-right: 1px solid var(--NCA-border);
  z-index: 10;
  flex-direction: column;
  grid-area: nav;
  padding: 28px 12px 20px;
  display: none;
  overflow-y: auto;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav__logo {
  font-family: var(--NCA-font-display);
  letter-spacing: -.04em;
  color: var(--NCA-text-primary);
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.desktop-nav__items {
  flex-direction: column;
  flex: 1;
  gap: 3px;
  display: flex;
}

.desktop-nav__item {
  border-radius: var(--NCA-radius-md);
  cursor: pointer;
  transition: background var(--NCA-transition), color var(--NCA-transition);
  color: var(--NCA-text-muted);
  white-space: nowrap;
  background: none;
  border: none;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.desktop-nav__item:hover {
  background: var(--NCA-surface-3);
  color: var(--NCA-text-secondary);
}

.desktop-nav__item--active {
  background: var(--NCA-primary-muted);
  color: var(--NCA-text-primary);
}

.desktop-nav__item--active svg {
  color: var(--NCA-primary);
}

.desktop-nav__badge {
  background: var(--NCA-primary);
  color: #000;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.desktop-nav__user {
  border-top: 1px solid var(--NCA-border);
  padding-top: 18px;
}

.desktop-nav__user-row {
  border-radius: var(--NCA-radius-md);
  cursor: pointer;
  transition: background var(--NCA-transition);
  color: inherit;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  text-decoration: none;
  display: flex;
}

.desktop-nav__user-row:hover {
  background: var(--NCA-surface-3);
}

.desktop-nav__avatar {
  background: var(--NCA-primary);
  color: #000;
  border-radius: 16px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.desktop-nav__user-info {
  flex: 1;
  min-width: 0;
}

.desktop-nav__user-name {
  color: var(--NCA-text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.desktop-nav__user-handle {
  color: var(--NCA-text-muted);
  font-size: 11px;
}

/* [project]/src/components/NCA-client/RightSidebar.css [app-client] (css) */
.right-sidebar {
  background: var(--NCA-surface-1);
  border-left: 1px solid var(--NCA-border);
  flex-direction: column;
  grid-area: side;
  padding: 28px 20px;
  display: none;
  overflow-y: auto;
}

@media (min-width: 1280px) {
  .right-sidebar {
    display: flex;
  }
}

.right-sidebar__title {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--NCA-text-muted);
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
}

.right-sidebar__item {
  border-bottom: 1px solid var(--NCA-border);
  cursor: pointer;
  transition: opacity var(--NCA-transition);
  color: inherit;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  text-decoration: none;
  display: flex;
}

.right-sidebar__item:last-child {
  border-bottom: none;
}

.right-sidebar__item:hover {
  opacity: .75;
}

.right-sidebar__item-num {
  color: var(--NCA-text-ghost);
  flex-shrink: 0;
  width: 14px;
  font-size: 12px;
  font-weight: 700;
}

.right-sidebar__item-img {
  border-radius: var(--NCA-radius-md);
  background: var(--NCA-surface-3);
  object-fit: cover;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.right-sidebar__item-info {
  flex: 1;
  min-width: 0;
}

.right-sidebar__item-name {
  color: var(--NCA-text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.right-sidebar__item-sub {
  color: var(--NCA-text-muted);
  margin-top: 1px;
  font-size: 11px;
}

.right-sidebar__item-price {
  color: var(--NCA-text-primary);
  font-size: 13px;
  font-weight: 700;
}

.right-sidebar__friends {
  border-top: 1px solid var(--NCA-border);
  margin-top: 28px;
  padding-top: 22px;
}

.right-sidebar__friends-title {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--NCA-text-muted);
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
}

.right-sidebar__friends-list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.right-sidebar__friend {
  align-items: center;
  gap: 10px;
  display: flex;
}

.right-sidebar__friend-avatar {
  border-radius: 17px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.right-sidebar__friend-info {
  flex: 1;
  min-width: 0;
}

.right-sidebar__friend-name {
  color: var(--NCA-text-primary);
  font-size: 13px;
  font-weight: 500;
}

.right-sidebar__friend-status {
  color: var(--NCA-text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
  font-size: 11px;
  overflow: hidden;
}

/* [project]/src/components/NCA-client/PublicLayoutClient.css [app-client] (css) */
.app-layout {
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  display: flex;
}

@media (min-width: 900px) {
  .app-layout {
    grid-template-columns: var(--NCA-sidebar-width) 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "nav main";
    height: 100vh;
    min-height: auto;
    display: grid;
  }
}

@media (min-width: 1280px) {
  .app-layout {
    grid-template-columns: var(--NCA-sidebar-width) 1fr var(--NCA-right-sidebar-width);
    grid-template-areas: "nav main side";
  }
}

.app-layout__main {
  flex: 1;
  grid-area: main;
  min-height: 0;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  .app-layout__main {
    scroll-behavior: smooth;
    scrollbar-width: none;
    overflow-y: auto;
  }

  .app-layout__main::-webkit-scrollbar {
    display: none;
  }
}

