.product-search {
	background: var(--second-color);
	padding: 0.75rem 0;
}

.product-search-results {
	position: relative;
	width: 100%;
	padding: 5rem 0 3rem;
}

.product-search-results .container-fluid {
	max-width: calc(1200px + 8rem);
}

.product-search-results #searchResults {
	display: flex;
	flex-wrap: wrap;
	gap:0.5%;
	justify-content: flex-start;
}

#searchResults .searchResult {
	display: flex;
	flex: 0 0 24.5%;
	flex-direction: column;
	position: relative;
	background: var(--white-color);
	  padding: 1.5rem;
	  border: 1px solid var(--lighter-gold);
	  transition: all 0.3s;
	  margin:0.5rem 0;
}

#searchResults .searchResult .store-product-list-thumbnail {
	width: 100%;
	overflow:hidden;
}



.searchResult .store-product-list-thumbnail a {
	width: 100%;
	display: block;
}

.searchResult .store-product-list-thumbnail a img {
	width: 100%;
	height: auto;
	transition: all 0.3s;
}

#searchResults .searchResult:hover img {
	transform: scale(1.05);
	transition: all 0.3s;
}

.searchContent {
	text-align: center;
}

.searchContent p span {
	background: none!important;
}

.searchResult .searchContent h2 {
font-size: 1.5em;
  line-height: 1.25em;
  color: var(--second-color);
  transition: all 0.3s;
}

.searchResult p.store-product-price {
font-size: 1.75em;
  line-height: 1.125em;
  color: var(--second-color);
  font-family: var(--title-font);
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  }
  
  
.searchResult .was-price {
	font-size: 1.125rem;
  }
  
@media screen and (max-width:1130px){
	#searchResults  .searchResult {
		flex: 0 0 33%;
	}
}

@media screen and (max-width:768px){
	#searchResults  .searchResult {
		flex: 0 0 49.5%;
	}
}

@media screen and (max-width:500px){
	#searchResults  .searchResult {
		flex: 0 0 100%;
	}
}