body .promo-card-grid {
  display: grid;
  gap: 20px;
}
body .promo-card-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
body .promo-card-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
body .promo-card-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
body .promo-card-grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
body .promo-card-grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1024px) {
  body .promo-card-grid.columns-2,
  body .promo-card-grid.columns-3,
  body .promo-card-grid.columns-4,
  body .promo-card-grid.columns-5,
  body .promo-card-grid.columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body .promo-card-grid.columns-2,
  body .promo-card-grid.columns-3,
  body .promo-card-grid.columns-4,
  body .promo-card-grid.columns-5,
  body .promo-card-grid.columns-6{
    grid-template-columns: 1fr;
  }
}
body .promo-card {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 265px;
  position: relative;
  background-color: #fff;
  background-image: var(--product-card-bg);
  background-size: cover;
  background-position: center;
}
body .promo-card__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
}
body .promo-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .promo-card__details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 50px;
  color: #231f20;
}
body .promo-card__brand-name {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1;
}
body .promo-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #231f20;
}
body .promo-card__info {
  font-size: 0.85rem;
  color: #555;
}
body .promo-card.voucher {
  background-color: #f4fbfe;
  color: #000;
}
body .promo-card.voucher .promo-card__btn {
  background-color: #fff;
  color: #000;
}
body .promo-card.coupon .promo-card__btn {
  background-color: #000;
  color: #fff;
}
body .promo-card__discount {
  color: #e7288a;
  font-size: 0.85rem;
  line-height:1;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
body .promo-card__price{
    font-weight: 700;
}
body .promo-card__price bdi{
    font-size: 1.2rem;

}
body .promo-card__price .woocommerce-Price-currencySymbol{
    font-size: 0.7rem;
}
body .promo-card__ecoins svg{
    height: 0.6rem;
}
body .promo-card .iworks-omnibus{
    font-size: 0.55rem;
}
body .promo-card__btn {
  position: absolute;
  display: flex;
  align-content: center;
  bottom: 20px;
  right: 20px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px;
}
body .promo-card__btn svg {
  margin: auto;
  max-height: 100%;
}
body .promo-card__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
}
body .promo-card__icon svg {
  width: 100%;
  height: 100%;
}
/* Pagination */
body .promo-card-pagination {
  margin-top: 30px;
  text-align: center;
}

body .promo-card-pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

body .promo-card-pagination li {
  display: inline;
}

body .promo-card-pagination a,
body .promo-card-pagination span {
  display: block;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

body .promo-card-pagination a:hover {
  background-color: #00aaba;
  color: #fff;
}

body .promo-card-pagination .current {
  background-color: #00aaba;
  color: #fff;
  font-weight: bold;
}
