h1 {
  font-family: 'Poppins', sans-serif !important;
}

p {
  font-family: 'Poppins', sans-serif !important;
}

/*NAV BAR*/
.navbar-container {
  width: 100%;
  min-height: 12vh;
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  width: 100%;
  color: white;
  z-index: 1;
}

.logo {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #6022F8;
}

/*NAV BAR*/

/* PAGE-0 */
#page-0 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#sub-header {
  position: relative;
}

.p-smallifier {
  font-size: 22px !important;
}

.top-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* PAGE-0 */
.search-container {
  position: relative;
  width: 100%;
  padding: 20px;
}

.discover-search {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid #000;
  box-shadow: 0 5px 0 #1a1a1a;
}

#headlines {
  text-align: center;
  width: 70vw;
  font-family: 'Poppins', sans-serif;
}

.discover-search svg {
  width: 22px;
  height: 22px;
  color: #333;
}

.discover-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 16px auto 6px;
}

.chip {
  border-radius: 25px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.chip.active {
  background: black;
  color: white;
}

.grid-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 22px auto 80px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Card */
.circle-card {
  background: white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  overflow: hidden;
}

.circle-thumb {
  position: relative;
  height: 190px;
  background: #EFEFFF
}

.circle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--cc-dark);
  color: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 14px;
}

.circle-body {
  padding: 16px
}

.circle-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.circle-title {
  margin: 0;
  font-size: 22px;
  font-family: 'Poppins', sans-serif
}

.circle-price {
  background: #d6d6d6;
  border: 2px solid #000;
  box-shadow: 0 3px 0 #1a1a1a;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.circle-price.paid {
  background: #6022F8;
  color: white;
}

.circle-subtitle {
  margin: 8px 0 16px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.circle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.members {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333
}

.count {
  font-family: 'Poppins', sans-serif;
}

.members svg {
  width: 22px;
  height: 22px
}

.view-btn {
  padding: .6rem 1.2rem;
  border-radius: 12px
}

/* Responsive tweaks */
@media(max-width:640px) {
  .circle-thumb {
    height: 160px
  }
}