:root {
  --swiper-navigation-sides-offset: 2.5vw;
}
.swiper {
  width: 90% !important;
  align-items: center;
  justify-content: center;
  height: 500px !important;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.swiper-slide {
  flex: 0 0 auto;
  display: flex !important;
  /* This has to be important because FUCK SWIPER BUT I NEED IT. */
  justify-content: center;
  align-items: center;
  height: 100%;
}
.swiper-pagination {
  position: relative !important;
  margin-top: 20px;
}
a {
  text-decoration: none;
  color: unset;
}
/* product card */
.product_card {
  width: 250px;
  height: 500px;
  border: 1px solid #e7e7ea;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 0px) {
  .product_card {
    width: 250px;
    height: 500px;
  }
}
@media screen and (min-width: 0px) {
  .product_card {
    width: 250px;
    height: 500px;
  }
}
@media screen and (min-width: 0px) {
  .product_card {
    width: 250px;
    height: 500px;
  }
}
@media screen and (min-width: 0px) {
  .product_card {
    width: 250px;
    height: 500px;
  }
}
.product_card * {
  transition: all 0.2s ease-in-out;
}
.product_card .product_image {
  justify-content: space-around;
  align-self: center;
}
.product_card .product_image img {
  max-height: 237.5px;
  max-width: 237.5px;
  height: 237.5px;
  width: 237.5px;
}
.product_card .product_details {
  display: flex;
  flex-direction: column;
}
.product_card .product_details img {
  width: 1ch;
  height: 1ch;
}
.product_card .product_details .product_title {
  font-size: 1.25em;
  margin: 10px 10px 0;
  text-align: center;
}
.product_card .product_details .product_price {
  display: flex;
  flex-direction: row;
  font-size: 1.5em;
  margin: 0 10px;
  color: #0f0f0f;
  justify-content: center;
}
.product_card .product_details .product_price .old {
  text-decoration: line-through;
  color: #4a4a4a;
  margin-right: 10px;
}
.product_card .product_details .product_price .sale {
  color: #e52727;
}
.product_card .product_details .stock {
  margin: 0 10px 10px;
}
.product_card .product_details .stock p {
  text-align: center;
  margin: 0 10px;
}
.product_card:hover {
  box-shadow: 0 0 10px 10px #e7e7ea;
}
.product_card:hover .product_details {
  color: #ceab61;
}
.product_card .product_interact {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.product_card .product_interact label {
  display: none;
}
.product_card .product_interact input {
  height: 48px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product_card .product_interact input::-webkit-outer-spin-button,
.product_card .product_interact input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product_card .product_interact .add_to_cart_quantity {
  width: 75px;
}
.product_card .product_interact .quantity_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25px;
}
.product_card .product_interact .quantity_buttons button {
  height: 25px;
  width: 100%;
  color: #ceab61;
  background-color: #e7e7ea;
}
.product_card .product_interact .quantity_buttons button:hover {
  background-color: #4a4a4a;
}
.product_card .product_interact .quantity_buttons button:active {
  background-color: #2b2b2b;
}
.product_card .product_interact button {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border: none;
  border-top: 1px solid #e7e7ea;
}
.product_card .product_interact button img {
  border-right: 1px solid wheat;
  padding-right: 0.5em;
  height: 2em;
  width: 2em;
}
.product_card .product_interact button.product_read_more {
  width: 250px;
  color: #242424;
  background-color: #e7e7ea;
  display: flex;
  justify-content: space-evenly;
  font-weight: bold;
}
.product_card .product_interact button.product_read_more:hover {
  background-color: #ceab61;
  color: #242424;
}
.product_card .product_interact button.product_read_more:active {
  background-color: #8a713b;
  color: #242424;
}
.product_card .product_interact button.add_to_cart {
  width: 150px;
  color: #242424;
  background-color: #ceab61;
  font-weight: bold;
  justify-content: space-between;
}
.product_card .product_interact button.add_to_cart.opc {
  width: 250px !important;
}
.product_card .product_interact button.add_to_cart:hover {
  background-color: #242424;
  color: #fff;
}
.product_card .product_interact button.add_to_cart:hover img {
  filter: invert(90%) sepia(93%) saturate(28%) hue-rotate(195deg) brightness(107%) contrast(100%);
}
.product_card .product_interact button.add_to_cart:active {
  background-color: #0f0f0f;
  color: #fff;
}
