:root {
  --primary-color: #E5A4B9;
  --secondary-color: #D4688B;
  --fourth-color: #581226;
  --primary-color-light: #F6E1E8;
  --primary-color-dark: #132433;
  --contrast-color: #FCC961;
  --text-color-light: #A72F4A;
  --text-p-color: #240E15;
  --text-color-dark: #581226;
  --light-color: #F1F1F1;
  --third-color: #ddbec1;
  --secondary-color-light: #ce9cae;
  --secondary-color-dark: #6a1f3c;
  --text-color: #3c292f;
}

.products {
  position: relative;
}

.products > .products-wrapper {
  max-width: 100% !important;
}

.products .productsGrid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 2em !important;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1399px) {
  .products .productsGrid {
    gap: 1em !important;
  }
}

@media (max-width: 767px) {
  .products .productsGrid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) {
  .products .productsGrid [data-offer=promo] { order: 2; }
  .products .productsGrid [data-offer=mid] { order: 3; }
  .products .productsGrid [data-offer=basic] { order: 1; }
}

.products .productsGrid > a {
  width: 100% !important;
  max-width: 420px !important;
  margin: 0 auto !important;
}

.products .title {
  text-align: center;
  margin-bottom: 0.75em;
  font-size: 2.25em;
}

@media (max-width: 599px) {
  .products .title {
    font-size: 1.25em;
  }
}

.products a {
  text-decoration: none !important;
  color: var(--text-color) !important;
}

.products .item {
  display: block;
  text-align: center;
  padding: 3px;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  box-shadow: var(--bs-box-shadow-sm, 0 1px 2px rgba(0,0,0,0.1));
  transition: transform 0.2s ease-in-out;
}

.products .item:hover {
  transform: 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;
    column-gap: 0.5em;
    padding: 0.5em 0;
  }
}

.products .item .item-header {
  grid-area: title;
  padding: 0.25em 0.5em;
  background-color: var(--secondary-color);
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-header {
    background-color: transparent;
    font-size: 0.9em;
    padding: 0;
  }
}

.products .item .item-img {
  grid-area: img;
}

.products .item .item-img .supply {
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .products .item .item-img .supply {
    font-size: 0.8em;
    padding: 0;
  }
}

.products .item .item-img .supply b {
  display: block;
  font-size: 1.75em;
}

@media (max-width: 767px) {
  .products .item .item-img .supply b {
    font-size: 1.25em;
  }
}

.products .item .item-img img {
  max-height: 200px;
}

.products .item .item-info {
  grid-area: info;
}

.products .item .item-info .price {
  display: flex;
  text-align: start;
  gap: 0.25em;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}

.products .item .item-info .price b {
  font-size: 4em;
  text-align: center;
}

@media (max-width: 767px) {
  .products .item .item-info .price b {
    font-size: 2.8em;
    letter-spacing: -0.06em;
  }
}

.products .item .item-info .price sup {
  font-size: 0.45em;
  top: -0.5em;
}

.products .item .item-info .price span {
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-info .price span {
    font-size: 0.65em;
  }
}

.products .item .item-info .savings {
  font-size: 0.7em;
  font-weight: 800;
}

@media (max-width: 767px) {
  .products .item .item-info .savings {
    font-size: 0.65em;
  }
}

.products .item .item-info .savings > div {
  padding: 0.5em;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.42);
}

.products .item .item-info .savings > div:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.42);
  color: var(--primary-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: 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: 1.5em;
  font-weight: normal;
}

@media (max-width: 767px) {
  .products .item .item-info .savings span::before {
    font-size: 1em;
  }
}

.products .item .item-buy {
  grid-area: footer;
}

.products .item .item-buy .button {
  padding: 0.65em;
  margin: 0.5em 0.25em;
}

@media (max-width: 767px) {
  .products .item .item-buy .button {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.15em;
  }
}

.products .item .item-buy .button span {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}

.products .item .item-buy .button 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: 0.9em;
  padding-bottom: 1em;
}

@media (max-width: 767px) {
  .products .item .item-totals {
    font-size: 0.8em;
  }
}

.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;
  text-transform: uppercase;
}

.products .item .item-totals .shipping span {
  color: #dc3545;
}

.products .item.promo {
  color: white;
  background-color: white;
  text-shadow: 0px 2px rgba(0, 38, 121, 0.64);
  border: 2px solid var(--primary-color);
}

.products .item.promo .wrapper {
  background-image: radial-gradient(var(--secondary-color-dark), var(--primary-color));
}

@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(--primary-color);
  text-shadow: none;
  text-transform: uppercase;
}

@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.42);
}

.products .item.promo .item-info .savings > div:first-child {
  color: var(--contrast-color);
  border-top: 1px dashed rgba(255, 255, 255, 0.42);
}

.products .item.promo .item-info .savings > div:nth-child(2) {
  display: block;
}

.products .item.promo .item-buy .button{
color: var(--text-color);
    background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  text-shadow: none;
}

.products .item.promo .item-buy .button:hover{
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);;
}
.products .item.mid .item-buy .button,
.products .item.basic .item-buy .button {
  color: var(--text-color);
  background-color: rgb(229 164 185 / var(--tw-bg-opacity, 1));
  text-shadow: none;
}


.products .item.mid .item-buy .button:hover,
.products .item.basic .item-buy .button:hover {
  background-color: rgb(229 164 185 / var(--tw-bg-opacity, 1));
}

.products .item.mid .item-totals .shipping span {
  color: var(--contrast-color);
}

.products .item.promo .item-totals .shipping span {
  color: var(--contrast-color);
}

.no-thanks {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 16px;
  max-width: 600px;
  text-decoration: none;
}


.item-img{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-buy{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
@media (max-width: 1399px) {


}