.single-page-layout h3 {
  font-size: 1.2em !important;
  color: #3b3d40;
  font-weight: 700;
}

.single-page-layout .seperator {
  border-bottom: 1px solid #e6e6e6;
}

.single-page-layout p {
  font-weight: 500;
  font-size: 1em;
}

.background {
  background-color: #e6e6e6;
}

.product-view {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
}

.product-card-content {
  width: 48.5%;
  padding: 1em;
  background-color: #fff;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-button-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.product-card-button{
  position: relative;
  color: #ffffff;
  border-color: rgb(228,64,101);
  background-color: rgb(228,64,101);
  padding: 0.65em 1.25em !important;
  text-shadow: none !important;
  font-family: "supera-gothic";
  font-weight: 700 !important;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding-right: 3em !important;
  padding-left: 3em !important;
  padding-top: 0.8em !important;
  padding-bottom: 0.8em !important;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  max-width: 140px;
  z-index: 10;
}

.product-card-button:hover{
  border-color: rgb(231,14,63);
  background-color: rgb(231,14,63);
}
.product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
}

a.product-link {
  color: rgb(0, 0, 0) !important;
  line-height: 1.4 !important;
}

.heading-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.img-card-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1em;
}

.product-card-content h2 {
  font-family: "supera-gothic";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0em;
  text-transform: none;
  margin: 0;
}

.product-card-content .tags {
  font-size: 0.8em;
  line-height: 1.6;
  font-weight: 400;
  color: rgb(88, 89, 91);
  text-transform: uppercase;
}

.product-card-content .short-desc,
.product-card-content .extent,
.product-card-content .leader,
.product-card-content .long-desc {
  color: rgb(0, 0, 0) !important;
  font-size: 1em;
  line-height: 1.4 !important;
  margin: 0;
}

.product-card-content .short-desc {
  margin: 0;
}

.product-card-content .long-desc {
  margin-top: 20px;
}

.img-wrapper {
  position: relative;
  height: 98px;
  width: 98px;
  border-radius: 50%;
  overflow: hidden;
  min-width: 98px;
}

.img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .product-card-content {
    width: 100%;
  }
}