/* [project]/src/components/Navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  border-radius: var(--radius-lg);
  width: clamp(300px, 96%, 1400px);
  margin: 1rem auto;
  padding: .75rem 0;
  position: sticky;
  top: 1rem;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 0 4% !important;
}

.logo {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
}

.logo-img {
  object-fit: contain;
  -webkit-text-fill-color: initial;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav-wrapper {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-links {
  gap: 1.5rem;
  font-weight: 500;
  display: flex;
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 2.5rem;
  }

  .nav-wrapper {
    gap: 4rem;
  }
}

.nav-links a {
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-auth {
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.btn-sm {
  white-space: nowrap;
  padding: .5rem 1rem;
  font-size: .85rem;
}

.mobile-toggle {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  display: none;
}

.mobile-toggle .bar {
  background: var(--foreground);
  width: 25px;
  height: 3px;
  transition: var(--transition-normal);
  border-radius: 3px;
}

@media (max-width: 1100px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-wrapper {
    background: var(--surface);
    width: min(300px, 80%);
    height: 100vh;
    transition: var(--transition-normal);
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    padding: 6rem 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    box-shadow: -10px 0 30px #00000080;
  }

  .nav-wrapper.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }
}

/* [project]/src/app/marketplace/marketplace.css [app-client] (css) */
.market-layout {
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  display: grid;
}

.filters {
  height: fit-content;
  padding: 2rem;
  position: sticky;
  top: 6rem;
}

.filters h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.filters ul {
  list-style: none;
}

.filters li {
  margin-bottom: .75rem;
}

.filters button {
  color: #a0aec0;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
  font-size: 1rem;
}

.filters button:hover {
  color: var(--primary);
  padding-left: 5px;
}

.filters button.active {
  color: var(--primary);
  padding-left: 5px;
  font-weight: 700;
}

.items-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  display: grid;
}

@media (min-width: 1200px) {
  .items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.item-card {
  transition: transform var(--transition-normal);
  overflow: hidden;
}

.item-card:hover {
  transform: translateY(-5px);
}

.item-image {
  background: var(--surface-highlight);
  border-bottom: 1px solid var(--glass-border);
  height: 180px;
}

.item-info {
  padding: 1.5rem;
}

.badge {
  color: var(--primary);
  background: #6366f11a;
  border-radius: 4px;
  padding: .25rem .6rem;
  font-size: .75rem;
}

.item-info h4 {
  margin: .75rem 0 .25rem;
}

.vendor {
  color: #718096;
  margin-bottom: 1rem;
  font-size: .85rem;
}

.price {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: none;
}

.item-actions .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .market-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    display: none;
  }
}

.vendor-pfp {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
}

.vendor-card .item-info h4 {
  margin-top: .5rem;
}

.item-count {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 600;
}

.search-bar-container {
  justify-content: center;
  padding: 1rem;
  display: flex;
}

.market-search {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: #fff;
  background: #ffffff0d;
  outline: none;
  width: 100%;
  max-width: 600px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all .2s;
}

.market-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  background: #ffffff14;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  background: #ffffff0d linear-gradient(90deg, #ffffff0d 0, #ffffff1a 40px, #ffffff0d 80px) 0 0 / 200px 100% no-repeat;
  border-radius: 4px;
  animation: 1.5s linear infinite shimmer;
}

.skeleton-text {
  width: 80%;
  height: 1rem;
  margin-bottom: .5rem;
}

.skeleton-text.short {
  width: 40%;
}

.skeleton-image {
  width: 100%;
  height: 180px;
}

.skeleton-btn {
  width: 100%;
  height: 40px;
  margin-top: 1rem;
}

/*# sourceMappingURL=src_d7b1385a._.css.map*/