@-webkit-keyframes heartPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes heartPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes heartUnlike {
  50% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes heartUnlike {
  50% {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
.flag-lancamento {
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  margin-top: 5px;
  background: var(--flag-lancamento-bg);
  border-radius: 3px;
}

.flag-frete-gratis {
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  margin-top: 5px;
  background-color: var(--flag-frete-gratis-bg);
  border-radius: 3px;
}

.wishlist-badge {
  width: 48px;
  height: 48px;
  background-color: #e0e0e0;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2;
}
.wishlist-badge span {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 1.3rem;
  -webkit-animation: heartUnlike 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: heartUnlike 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.wishlist-badge span i {
  font-size: 17px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.wishlist-badge span i:before {
  content: "\f004";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
.wishlist-badge.active span {
  -webkit-animation: heartPulse 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: heartPulse 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.wishlist-badge.active span i {
  color: #eb0013;
}
.wishlist-badge.active span i:before {
  font-weight: 900;
}

.flag-estoque-esgotado {
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  margin-top: 5px;
  background-color: red;
  border-radius: 3px;
}

.produtos .lista {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.produtos .lista .item {
  width: 50%;
  padding: 40px 0;
  vertical-align: top;
  margin: 0 1px 0px -1px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-right: 0;
}
.produtos .lista .item .produto {
  margin: 0 auto;
  position: relative;
}
.produtos .lista .item .produto .badges {
  position: absolute;
  top: 7px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.produtos .lista .item .produto .badges-left {
  left: 7px;
}
.produtos .lista .item .produto .badges-left .badge {
  background: #000;
  color: #fff;
}
.produtos .lista .item .produto .badges-right {
  right: 7px;
}
.produtos .lista .item .produto .badge {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 7px;
}
.produtos .lista .item .produto .badge i {
  font-size: 17px;
}
.produtos .lista .item .produto .discount-badge {
  line-height: 50%;
}
.produtos .lista .item .produto .btn-comprar,
.produtos .lista .item .produto .btn-ver-opcoes {
  background-color: #fff;
}
.produtos .lista .item .produto .btn-comprar:hover,
.produtos .lista .item .produto .btn-ver-opcoes:hover {
  background-color: var(--bs-btn-color);
}
.produtos .lista .item .produto .imagens {
  position: relative;
  margin-bottom: 15px;
}
.produtos .lista .item .produto .imagens .imagem {
  width: 100%;
  display: block;
  text-align: center;
}
.produtos .lista .item .produto .imagens .imagem img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.produtos .lista .item .produto .imagens .imagem-hover {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  z-index: 1;
}
.produtos .lista .item .produto .imagens .buttons {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 10px;
  transition: all 0.3s 0.1s;
  z-index: 10;
  text-align: center;
}
.produtos .lista .item .produto .info h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #333;
  margin-top: 10px;
  margin-bottom: 15px;
}
.produtos .lista .item .produto .info h2 a {
  color: #333;
  text-decoration: none;
}
.produtos .lista .item .produto .info h2 a:hover {
  text-decoration: underline;
}
.produtos .lista .item .produto .info h2 .preco {
  margin: 0 0 10px 0;
  color: #E32400;
}
.produtos .lista .item .produto .info .btn-comprar,
.produtos .lista .item .produto .info .btn-ver-opcoes {
  margin-top: 10px;
  display: none;
}
.produtos .lista .item:hover .imagens .buttons {
  opacity: 1;
  bottom: 15px;
  visibility: visible;
}
@media (min-width: 576px) {
  .produtos .lista {
    margin-left: -20px;
    margin-right: -20px;
    overflow: initial;
  }
  .produtos .lista .item {
    width: 33.3333333333%;
    padding-left: 20px;
    padding-right: 20px;
    border: 0;
    margin: 0;
  }
  .produtos .lista .item .produto:hover .imagem-hover {
    background-color: #fff;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
  }
}
.preco span {
  line-height: 130%;
}
.preco span.apartir {
  font-weight: bold;
  color: #000;
  font-size: 18px;
  display: block;
}
.preco span.apartir i {
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
}
.preco span.avista {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.preco span.avista-descricao {
  font-size: 12px;
  display: block;
}
.preco span.normal {
  color: #000;
  font-size: 18px;
  display: block;
}
.preco span.normal-de {
  color: #333;
  font-size: 12px;
  display: block;
}
.preco span.promocao-por {
  color: #000;
  font-size: 18px;
  display: block;
  margin-top: 3px;
}
.preco span.economize {
  font-size: 12px;
  color: #666;
  display: none;
  margin-top: 3px;
}
.preco span.parc-cj, .preco span.parc-sj, .preco span.parc-dep, .preco span.parc-boleto {
  color: #333;
  font-size: 12px;
  display: block;
  margin-top: 3px;
  line-height: 15px;
}
.preco span.parc-cj strong, .preco span.parc-sj strong, .preco span.parc-dep strong, .preco span.parc-boleto strong {
  font-size: 14px;
  color: #333;
}
.preco span.somente-logado {
  font-size: 12px;
  display: block;
}
.preco span.somente-logado a {
  color: #000;
}
.preco span.sob-consulta {
  font-size: 13px;
  font-weight: bold;
  color: red;
  display: block;
}
.preco span.sob-consulta a {
  color: #000;
}

.marcas-carrossel {
  width: 100%;
  margin-bottom: 30px;
  display: none;
}
.marcas-carrossel__wrapper {
  position: relative;
}
.marcas-carrossel__link {
  display: block;
  border: solid 1px #eee;
  padding: 10px;
}
.marcas-carrossel__image {
  background: no-repeat center;
  background-size: contain;
}
.marcas-carrossel__text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
}
.marcas-carrossel__text span {
  display: block;
  text-align: center;
  padding: 20px;
  position: absolute;
  color: #999;
  font-weight: bold;
}

.m-page .banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.m-page .banner.banner-boxed {
  margin-top: 20px;
}
.m-page .banner .item {
  text-align: center;
}
.m-page .banner .item .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1920px;
  display: inline-block;
}
.m-page .banner .item .image img {
  width: 100%;
  height: auto;
  max-width: 1296px;
}
.m-page .banner .item .image a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.m-page .banner-tarja {
  margin-bottom: 40px;
}
.m-page .banner-mini {
  margin-bottom: 40px;
}
.m-page section {
  margin-bottom: 40px;
}
.m-page section header {
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: center;
}
.m-page section header h1 {
  font-size: 25px;
  text-transform: unset;
  margin: 0;
}
.m-page section header h1 a {
  color: inherit;
  text-decoration: none;
}
.m-page section header:after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #ddd;
  margin-top: 20px;
}
.m-page .destaques .produtos .lista {
  margin: 0;
  padding: 0 5px;
}
.m-page .destaques .produtos .lista .item {
  border: 0;
  margin: 0;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 576px) {
  .m-page .destaques .produtos .lista {
    padding: 0;
  }
  .m-page .destaques .produtos .lista .item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .m-page .banner,
  .m-page .banner-tarja,
  .m-page .banner-mini,
  .m-page .marcas-carrossel--top {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .m-page .banner,
  .m-page .banner-tarja,
  .m-page .banner-mini {
    margin-bottom: 70px;
  }
  .m-page .marcas-carrossel--top {
    margin-bottom: 90px;
  }
  .m-page .produtos .lista .item {
    width: 25%;
  }
}