div.site-store {
  padding: 15px;
}

div.product {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: transparent;
  border: 1px solid #cdcdcd;
  width: 300px;
  padding: 15px 15px 100px;
}

div.product > div {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

div.product > div > a {
  width: 260px;
  overflow-wrap: break-word;
  font-weight: 800;
}

div.disabled > a > img {
  filter: grayscale(60%);
}

span.disabled-text {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0 5px;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 800;
  font-size: 30px;
  user-select: none;
}

div.product:hover {
  border: 1px solid #20c997;
}

a.order-button {
  width: 90%;
  color: black;
  display: block;
  visibility: hidden;
  font-weight: 600;
  background-color: transparent;
  border: 3px solid #20c997;
  margin: 15px auto;
}

a.order-button:hover {
  background-color: #20c997;
  color: white;
}

div.product:hover > div > a.order-button {
  visibility: visible;
}

div.product > a {
  font-weight: 600;
  margin: 5px 0;
}

div.product > a > img {
  max-width: 250px;
  max-height: 250px;
}

i {
  font-size: 250px;
}

p {
  font-size: 20px;
}

div.flex-center {
  margin-top: 15px;
  flex-wrap: wrap;
}
