.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
  margin-top: 30px;
}

.banner-content {
  max-width: 80%;
}
.banner-content h1 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 24px;
  color: #fff;
}

.banner-content {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.category-banner {
  height: 540px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 36.06%, #1e1e1e 100%),
    url("/assets/images/cat-iamge.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.category-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.active-cat {
  color: #ff7606;
}

.cat-item .cat-href {
  text-decoration: none;
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  padding: 24px 0px;
  display: block;
  color: #000;
  position: relative;
}
.cat-item .cat-href.active-cat {
  color: #ff7606;
}
.cat-item .cat-href.active-cat:after {
  width: 100%;
  content: "";
  height: 3px;
  background-color: #ff7606;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cat-item .cat-href:hover:after {
  width: 100%;
  content: "";
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cat-item .cat-href.active-cat:hover:after {
  width: 100%;
  content: "";
  height: 3px;
  background-color: #ff7606;
  position: absolute;
  bottom: 0;
  left: 0;
}

.seo-categories {
  display: flex;
  align-content: center;
  align-items: center;
  padding-bottom: 120px;
  padding-top: 120px;
}

.seo-categories .column-left,
.seo-categories .column-right {
  width: 50%;
}

.seo-categories .column-left img {
  width: 100%;
  height: auto;
}
.seo-categories .column-right {
  padding-left: 124px;
}

.seo-text-wrap h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 40px;
}

.seo-text-wrap .seo-text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
}

.products-filter {
  width: 100%;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
}

.filter-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.filter-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
}

.filter-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
}

.filter-option-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.filter-option-lable {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
}

.filter-option-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.color-lable {
  width: 28px;
  height: 28px;
  cursor: pointer;
  border-radius: 9999px;
}

.color-lable input,
.filter-option-block input {
  display: none;
}

.color-radio:checked + .color-lable {
  outline: 2px solid #f97316;
  outline-offset: 0px;
}
.color-lable:hover {
  outline: 2px solid #f97316;
}
.measurment-lable {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  background-color: #ededed;
  border-radius: 8px;
  transition: 0.2s;
}
.measurment-lable:hover {
  background-color: #f97316;
  color: #fff;
}
.dimensions-radio:checked + .measurment-lable {
  background-color: #f97316;
  color: #ffffff;
}

.order-by-wrap {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}

.order-by-lable {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.order-by-options {
  position: relative;
}

.order-by-options-select {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  padding-right: 45px;
  border-radius: 8px;
  background-color: #ededed;
  border: none;
}

.order-by-options-select:focus {
  outline: none;
}

select.order-by-options-select {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  padding-right: 45px;
  border-radius: 8px;
  background-color: #ededed;
  border: none;
  appearance: none; /* hide default arrow */
  background-image: url("/assets/icons/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 6px;
  transition: width 0.2s ease;
}

.archive-page .breadcrumbs {
  padding-bottom: 24px !important;
}

.products-filter.open .filter-title {
  font-weight: bold;
}

.products-filter.open svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.products-filter.open .filter-top {
  border-bottom: 1px solid #ededed;
  padding-bottom: 20px;
}

.filter-top,
.measurment-lable,
.order-by-options-select,
.order-by-options {
  cursor: pointer !important;
}
.archive-products .load-more-btn {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background-color: #000;
  margin: auto;
  display: block;
  width: fit-content;
  padding: 20px 35px;
  border-radius: 8px;
  transition: 0.2s;
}
.archive-products .load-more-btn:hover {
  background-color: #606060;
}

.search-page-main {
  padding-bottom: 120px;
}
.search-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.products-card-block .product-image a img {
    width: 100%;
}
/* Min 1024px BEGIN*/
@media only screen and (max-width: 1024px) {
  .search-title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  .banner-content h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
  }

  .category-banner .container {
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 64px;
  }
  .banner-content {
    max-width: 100%;
  }
  .filter-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    flex-direction: column;
    align-content: center;
  }
  .product-grid {
    margin-right: -20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
    margin-top: 30px;
    margin-left: -20px;
  }

  .seo-categories {
    display: flex;
    align-content: center;
    align-items: center;
    padding-bottom: 64px;
    padding-top: 64px;
    flex-direction: column;
  }

  .category-filter .cat-item {
    width: auto;
    margin-right: 48px;
  }

  .category-filter .cat-item:last-child {
    margin-right: 0;
    padding-right: 48px;
  }

  .cat-item .cat-href {
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
  }
  .filter-option-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .order-by-wrap {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #ededed;
    width: 100%;
    text-align: center;
  }
  .products-filter {
    width: 100%;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
  }
  .seo-categories .column-left,
  .seo-categories .column-right {
    width: 100%;
  }
  .seo-text-wrap h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
  }
  .seo-categories .column-right {
    padding-left: 0;
  }
}

/* Min 768px BEGIN*/
@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 390px) {
  .product-grid {
    margin-right: -20px;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    margin-top: 30px;
    margin-left: -20px;
  }
}
