/* Geral */
body {
  padding-bottom: 70px;
  background-color: #f7f7f7;
}

/* Navbar */
.navbar-brand img {
  max-height: 60px;
}

/* Estilos da página de pedidos (mantidos) */
h2.main-title {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.sticky-top-filters {
  position: sticky;
  top: 0;
  z-index: 999;
}

.search-section {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.filter-item {
  flex: 1 1 auto;
  min-width: 150px;
}

.dropdown-toggle {
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
}

#productList .list-group-item {
  font-size: 0.7rem;
}

.product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

.quantity-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quantity-selector button {
  min-width: 30px;
  margin: 2px 0;
}

.quantity-selector input {
  width: 30px;
  text-align: center;
  margin: 3px 0;
}

.cart-summary {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
  padding: 10px;
  z-index: 999;
}

#orderText {
  height: 400px;
}

.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  font-size: 0.9rem;
  z-index: 2000;
}

/* Estilos da página inicial (Home) */
.hero {
  padding: 60px 15px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

.footer {
  background-color: #343a40;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  margin: 5px 0;
}
