body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #eef0f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.top-bar {
  width: 100%;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #faffff;
  z-index: 1000;
  height: 50px;
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}
.navbar-b {
  margin-right: 1%;
}

.search-container {
  display: flex;
  height: 44px;
  background-color: transparent;
  justify-content: center;
}
.search-bar {
  width: 210px;
  height: 30px;
  color: black;
  border: none;
  padding-left: 10px;
  padding-right: 3px;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.search-button {
  display: flex;
  align-items: center;
  height: 30px;
  color: black;
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  cursor: pointer;
}
.content {
  margin-top: 50px;
  padding: 20px;
  height: calc(100vh - 50px);
}

.card-container {
  display: flex;
  flex-direction: row;
  background-color: #faffff;
  height: 200px;
  width: 600px;
  border-radius: 5px;
  align-items: center;
  gap: 16px;
  padding: 10px;
  /* box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.4); */
}
.product-info-container {
  width: 300px;
  gap: 16px;
  display: flex;
  align-items: start;
  height: 100%;
  flex-direction: column;
}
.product-info-name {
  font-weight: bold;
}

.product-info-price {
  font-weight: bold;
}

.product-more-info-container {
  height: 100%;
  width: 90px;
  display: flex;
  align-items: end;
}

.product-more-info-b {
  border: none;
  border-radius: 8px;
  font-weight: bold;
  background-color: #052dd6;
  color: #faffff;
  cursor: pointer;
  padding: 8px 16px;
}

.card-products-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-and-product-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.filter-categories {
  flex-direction: column;
  display: flex;
  gap: 8px;
}

/* Estilos del contenedor */
.filter {
  margin: 20px 0;
}

.filter h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.filter-btn {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: #45a049;
}

/* Opciones de filtro ocultas por defecto */
.filter-options {
  display: block;
  margin-top: 10px;
}

.filter-options label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

/* Añadir algo de espacio a los checkboxes */
.filter-options input[type="checkbox"] {
  margin-right: 10px;
}
