/* Estilo geral */
body {
  background-color: #f8f9fa;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
}

/* Filtros */
.card-header {
  font-size: 1rem;
  font-weight: bold;
}

.card-body h6 {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-body .form-check-label {
  font-size: 0.85rem;
}

.card-body input[type="number"] {
  font-size: 0.85rem;
}

/* Botões */
button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #0056b3 !important;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Grid de Produtos */
.card {
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.1);
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

.card-footer button {
  font-size: 0.9rem;
  font-weight: bold;
}

.card-footer button:hover {
  background-color: #198754 !important;
}

/* Área de busca */
#searchInput {
  font-size: 0.9rem;
}

#searchInput:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Ordenação e Reset */
.form-select {
  font-size: 0.85rem;
  border-radius: 5px;
}

button.btn-outline-secondary {
  font-size: 0.85rem;
}

button.btn-outline-secondary:hover {
  background-color: #f0f0f0;
}

/* Responsividade */
@media (max-width: 768px) {
  .card-title {
    font-size: 0.95rem;
  }

  .card-text {
    font-size: 0.8rem;
  }

  .btn {
    font-size: 0.8rem;
  }
}
