.filter {
  background: #fafafa;
  padding: 16px;
  border-radius: 8px;
  max-width: 250px;
}

.filter h3 {
  font-size: 24px;
}

.filter .filter-card {
  padding: 16px 0;
  border-top: 1px solid #dfdfdf;
}

.filter h4 {
  font-size: 23px;
  margin-bottom: 16px;
}
.filter-card-item {
  display: flex;
  gap: 5px;
  align-items: center;
}
.filter-card-item label {
  font-size: 14px;
  margin-bottom: 0;
  font-family: var(--font-titles);
}

.pagination {
  width: 100%;
  justify-content: end;
  height: 50px;
  border-top: 1px solid #e5e7ea;
  border-bottom: 1px solid #e5e7ea;
  gap: 32px;
}

.pagination select {
  font-family: "Montserrat";
  border: none;
  width: auto !important;
  color: #000;
  background: url(../../../images/svg/arrow.svg) no-repeat 100%/25px, #FFFFFF 100% 100%;
  padding: 0 19px;
}

.pagination select.order{
  border-left: 1px solid #e5e7ea;
  border-radius: 0;
  padding: 0 25px;
}

.product-card {
  width: 280px;
  max-width: 280px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.product-card:hover {
  box-shadow: 3px 5px 10px 0px #e6e7e7a4;
  border: 1px solid var(--color-primary);
}

.slider .product-card {
  height: 100%;
}
.product-card h5 {
  font-size: 16px;
}
.product-card p {
  font-size: 14px;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.product-card .btn {
  width: 100%;
}
.product-list {
  gap: 24px;
}

.pagination-footer {
  gap: 32px;
  width: 100%;
  justify-content: center;
  margin: 32px 0;
}

.pagination-footer .page-num {
  font-size: 18px;
  cursor: pointer;
}

.pagination-footer .page-num.active {
  color: var(--color-primary);
}

.product-container {
  flex-wrap: nowrap;
}

.listagem-categorias-items li {
  cursor: pointer;
}

.listagem-categorias-items li:hover {
  color: var(--color-primary);
}

.indicate{
  align-items: center;
  gap: 5px;
}
