

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-title {
  font-size: 1rem;
  font-weight: 700;
}

.main-nav {
  display: none;
  gap: 2rem;
}

/* LAYOUT */
.layout {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* SIDEBAR */
.filters-sidebar {
  width: 100%;
  max-width: 18rem; /* 288px */
  flex-shrink: 0;
  background-color: #ffffff;
  border-right: 1px solid #dbe2e6;
}

/* Container */
.filters-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem; /* header height aprox */
}

/* Header */
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111618;
}

.filters-reset {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

.filters-reset:hover {
  text-decoration: underline;
}

/* Groups */
.filters-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filters-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

/* Options */
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #111618;
}

.filter-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.filter-option:hover span {
  color: var(--primary);
}

/* Divider */
.filters-divider {
  height: 1px;
  width: 100%;
  background-color: #e5e7eb;
}





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