body {
    opacity: 0!important;
    background-color: #000;
}
#search-results {
  display: flex;
  max-width: 1280px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-top: 40px;
}
.all-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1040px;
}

.all-categories div {
  margin-right: 24px;
}
.all-cetegories select {
  width: 340px;
}

#matching-articles {
  margin-top: 24px;
}
.filtering-template-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.product-cards-container {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.product-card {
  flex: 0 0 calc(27.3% - 30px);
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 30px;
}

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

img {
  width: 100%;
}

.product-name {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.product-price {
  font-size: 1rem;
}

/* Responsive styling */
@media screen and (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.333% - 30px);
  }
}

@media screen and (max-width: 767px) {
  .product-card {
    flex: 0 0 calc(50% - 30px);
  }
}

@media screen and (max-width: 480px) {
  .product-card {
    flex: 0 0 100%;
  }
}
