.custom-product-filter {
  width: 100%;
}

.filter-top-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-title h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #061735;
}

.filter-title p {
  margin: 0;
  color: #50627c;
}

.filter-search input {
    min-width: 290px;
    height: 38px;
    border: 1px solid #E2E8F0 !important;
    border-radius: 20px !important;
    padding: 0 16px 0 36px !important;
    font-size: 14px;
    background-image: url('/wp-content/uploads/2026/06/SVG.svg'); 
    background-repeat: no-repeat;
    background-position: 13px;
}

.filter-row,
.filter-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
 
}

.filter-box {
      background: #F6F6F6;
    border: 0;
  padding: 12px 16px;
  border-radius: 8px;    flex-wrap: nowrap;display: inline-flex;
}

.filter-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #40516b;
  margin-right: 8px;
}
.filter-box .filter-label{
      width: 100%;
          max-width: 140px;
}

.filter-box .collection-tabs-wrap{
      display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.filter-btn {
  border: 1px solid #e1e7f0;
  background: #f3f6fa;
  color: #071a33;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #071a33;
  color: #fff;
  border-color: #071a33;
}

.filter-box .filter-btn {
  border-radius: 6px;
  background: #fff;
color:#000;
}

.filter-box .filter-btn.active {
  background: #ff9800;
  border-color: #ff9800;
  color: #000;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}



.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-img img {
  width: 100%;
  display: block;
}

.product-content {
  padding: 16px;
}

.product-content h3 {
  margin: 0;
  font-size: 18px;
}

.no-product {
  grid-column: 1 / -1;
}

.product-card img{
width: 250px;
    height: 250px !important;
    object-fit: contain;
}
.product-grid .product-card{
	text-align:center;
}
.custom-product-filter .filter-btn{
  background: #F1F5F9;
    color: #000;
    font-size: 16px;
    line-height: 1;
    border-color: #F1F5F9;
    padding: 10px 20px;
}
.custom-product-filter .filter-btn.active {
  background: #FF9800;
    border-color: #FF9800;
    color: #fff;
}

.custom-product-filter .collection-tabs-wrap .filter-btn{
  background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 1;
    border-color: #F1F5F9;
    padding: 8px 20px;
    border-radius: 30px;
}

.custom-product-filter .collection-tabs-wrap .filter-btn.active {
      background: #0F172B;
    border-color: #0F172B;
    color: #fff;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-top {
    flex-direction: column;
  }

  .filter-search input {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}