/* ===========================
   PÁGINA DE PRODUTOS
=========================== */
.produtos-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.produtos-titulo {
  margin-bottom: 20px;
}

.produtos-titulo h1 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #111;
}

.produtos-titulo p {
  font-size: 1rem;
  color: #777;
  margin-top: 4px;
}

/* ===========================
   FILTROS
=========================== */
.filtros-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filtros-categorias {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filtros-label {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filtros-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  background: #f0f0f0;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.pill:hover {
  background: #e0e0e0;
}

.pill.active {
  background: var(--green);
  color: #fff;
}

.filtros-ordenar {
  display: flex;
  justify-content: flex-end;
}

.select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 7px 36px 7px 12px;
  font-size: 0.82rem;
  color: #333;
  cursor: pointer;
  outline: none;
  min-width: 140px;
  transition: border-color 0.2s;
}

.select-wrapper select:focus {
  border-color: var(--green);
}

.select-icon {
  position: absolute;
  right: 10px;
  font-size: 0.7rem;
  color: #888;
  pointer-events: none;
}

/* ===========================
   CONTAGEM
=========================== */
.produtos-count {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 16px;
}

/* ===========================
   NENHUM RESULTADO
=========================== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: #aaa;
  font-size: 1rem;
}

.no-results i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (min-width: 600px) {
  .filtros-categorias {
    flex-direction: row;
    align-items: center;
  }

  .filtros-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .filtros-categorias {
    flex: 1;
  }
}
