<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">h1 {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  color: #3a3a3a;
  margin-top: 20px;
  margin-bottom: 20px;
}

.search-container {
  display: flex;
  margin: 0px auto 20px;
}

.search-container {
  flex-grow: 1;
  justify-content: center;
  padding: 20px;
  align-items: center;
}
.search-container img {
  height: 25px;
  margin-left: 25px;
  cursor: pointer;
}
.search-container .search-icon {
  margin-left: 10px;
}
.search-container .search-input {
  width: 500px;
  max-width: 80%;
  margin: 0;
}

.products {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 1000px;
}
.products a {
  color: #0a0a0a;
}
.products .product-item {
  width: 25%;
  padding: 10px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .products .product-item {
    width: 50%;
  }
}
.products .product-item:hover {
  text-decoration: underline;
}
.products .product-item .product-name {
  font-size: 18px;
  margin-top: 10px;
}
.products .product-item .product-price {
  margin-bottom: 15px;
}
.products .product-item button, .products .product-item a.cart-button, .products .product-item a.buy-now {
  width: 100%;
  display: block;
  background: #91bd6c;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  display: none;
  text-align: center;
  line-height: 1;
}
.products .product-item button:hover, .products .product-item a.cart-button:hover, .products .product-item a.buy-now:hover {
  background: #5d7a45;
}
.products .product-item select:active, .products .product-item select:hover {
  box-shadow: none;
}

.products-container {
  display: flex;
  justify-content: center;
  padding: 10px;
}

/*# sourceMappingURL=search.css.map */
</pre></body></html>