.resultado-busca {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.resultado-busca > li {
    flex: 0 1 calc(25% - 20px);
    box-sizing: border-box;
    margin: 0;
}

/* Responsivo para telas menores */
@media (max-width: 1024px) {
    .resultado-busca > li {
        flex: 0 1 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .resultado-busca {
        justify-content: space-between;
    }
    .resultado-busca > li {
        flex: 0 1 calc(50% - 20px); /* 2 por linha */
    }
}




.onsale {
  background-color: rgb(209, 179, 10);
  color: rgb(255, 255, 255);
  font-size: 22px;
  padding: 8px 13px;
  position: absolute;
  text-transform: uppercase;
  z-index: 9;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.resultado-busca .woocommerce-loop-product__title {
    box-sizing: border-box;
    color: rgb(0, 0, 0);
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-top: 4rem;
    overflow-wrap: break-word;
    padding: 0;
    text-align: center;
    text-transform: none;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.resultado-busca .price {
  color: rgb(170, 170, 170);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 990px) {
    .custom ul.products li.product .button {
        width: auto !important;
        left: 0;
    }
}
.site-content {
    display: block;
}

.pagination {
    margin: 20px 0;
}
.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0;
}

.woocommerce-pagination li {
    display: inline-block;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
}

.woocommerce-pagination .current {
    background-color: #000;
    color: #fff;
}