.products {
  position: relative;
  overflow: hidden;
  font-size: 18px !important;
}
.products .item {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 3px;
  color: var(--text-color);
  background-color: white;
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.products .btn {
  background-color: #d4cfcf;
  color: var(--text-color) !important;
  border: none !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 900;
  border-radius: 0.5em;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
  transition: 0.3s ease-in;
  font-style: italic;
  text-shadow: none !important;
  font-weight: bold;
}

.products .item:hover {
  scale: 1.025;
}
.products .item .wrapper {
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .products .item .wrapper {
    display: grid;
    grid-template-areas: "header header" "title info" "img info" "img totals" "footer footer";
    grid-template-columns: 1fr 1fr;
    align-items: center;
    -moz-column-gap: 0.5em;
    column-gap: 0.5em;
    padding: 0.5em 0;
  }
}
.products .item .item-header {
  grid-area: title;
  padding: 0.25em 0.5em;
  background-color: var(--primary-color-light);
  font-weight: 800;
  color: var(--light-1);
  font-style: italic;
}
@media (max-width: 767px) {
  .products .item .item-header {
    background-color: transparent;
    font-size: 16.2px;
    padding: 0;
    color: var(--secondary-color);
  }
}
.products .item .item-img {
  grid-area: img;
}
.products .item .item-img .supply {
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .products .item .item-img .supply {
    font-size: 14.4px;
    padding: 0;
  }
}
.products .item .item-img .supply b {
  display: block;
  font-size: 31.5px;
}
@media (max-width: 767px) {
  .products .item .item-img .supply b {
    font-size: 22.5px;
  }
}
.products .item .item-img img {
  max-height: 200px;
}
.products .item .item-info {
  grid-area: info;
}
.products .item .item-info .price2 {
  display: flex;
  text-align: start;
  gap: 0.25em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}
.products .item .item-info .price2 b {
  font-size: 72px;
  text-align: center;
}
@media (max-width: 767px) {
  .products .item .item-info .price2 b {
    font-size: 50.4px;
    letter-spacing: -0.06em;
  }
}
.products .item .item-info .price2 sup {
  font-size: 8.1px;
  top: -0.2em;
}
.products .item .item-info .price2 span {
  font-weight: 800;
}
@media (max-width: 767px) {
  .products .item .item-info .price2 span {
    font-size: 11.7px;
  }
}
.products .item .item-info .savings {
  font-size: 12.6px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .products .item .item-info .savings {
    font-size: 11.7px;
  }
}
.products .item .item-info .savings > div {
  padding: 0.5em;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4196078431);
}
.products .item .item-info .savings > div:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.4196078431);
  color: var(--secondary-color);
}
.products .item .item-info .savings > div:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .products .item .item-info .savings > div {
    padding: 0.5em 0;
  }
}
.products .item .item-info .savings span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  line-height: 1;
}
@media (max-width: 767px) {
  .products .item .item-info .savings span {
    letter-spacing: -0.4px;
  }
}
.products .item .item-info .savings span::before {
  content: "\f270";
  font-family: "bootstrap-icons";
  font-size: 27px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .products .item .item-info .savings span::before {
    font-size: 18px;
  }
}
.products .item .item-buy {
  grid-area: footer;
}
.products .item .item-buy .btn {
  padding: 5.7px;
  margin: 0.5em 0.25em;
  font-style: italic;
}
@media (max-width: 767px) {
  .products .item .item-buy .btn {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20.7px;
    font-style: italic;
  }
}
.products .item .item-buy .btn span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.products .item .item-buy .btn span::before {
  content: "\f23e";
  font-family: "bootstrap-icons";
  font-weight: normal;
  margin-top: -0.1em;
}
.products .item .item-buy .card-flags {
  max-width: 220px;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .products .item .item-buy .card-flags {
    display: none;
  }
}
.products .item .item-totals {
  grid-area: totals;
  font-size: 16.2px;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  .products .item .item-totals {
    font-size: 14.4px;
  }
}
.products .item .item-totals .totals s {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}
.products .item .item-totals .totals span {
  color: var(--contrast-color);
}
.products .item .item-totals .shipping {
  font-weight: 800;
}
.products .item .item-totals .shipping span {
  color: #dc3545;
}

.products .item.promo {
  color: white;
  background-color: white;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
  border: 4px solid white;
  filter: drop-shadow(0 0 2.5px var(--secondary-color));
  box-shadow: 0 0 10px var(--secondary-color-dark);
}

.products .item.promo .wrapper {
  background-image: radial-gradient(var(--secondary-color), black);
}
@media (max-width: 767px) {
  .products .item.promo .wrapper {
    grid-template-areas: "header header" "img info" "img totals" "footer footer";
  }
}
.products .item.promo .item-header {
  grid-area: header;
  background-color: white;
  color: var(--secondary-color);
  text-shadow: none;
  font-size: 21.6px;
}
@media (max-width: 767px) {
  .products .item.promo .item-header {
    margin: -0.55em 0 0.5em;
    padding: 0.25em;
  }
}
.products .item.promo .item-img img {
  max-height: 240px;
}
.products .item.promo .item-info .savings > div {
  color: white;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.products .item.promo .item-info .savings > div:first-child {
  color: #fccd15;
  border-top: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.products .item.promo .item-info .savings > div:nth-child(2) {
  display: block;
}
.products .item.promo .item-buy .btn {
  color: var(--text-color) !important;
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  text-shadow: none;
  font-style: italic;
}
.products .item.promo .item-buy .btn:hover {
  background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}
.products .item.promo .item-totals .shipping {
  color: #fccd15;
}
.products .item.promo .item-totals .shipping span {
  color: #fccd15;
}
