.product_list .ktb-products-grid {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}
.product_list .ktb-products-grid .product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #db0123;
  padding: 20px;
  transition: 0.3s;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .product_list .ktb-products-grid .product-card {
    width: calc((100% - 10px) / 2);
  }
}
.product_list .ktb-products-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.product_list .products-heading {
  font-family: Roboto Slab;
  font-weight: 700;
  font-size: 47px;
  letter-spacing: -2%;
  margin: 0;
}
.ktb-manufacturers-search-input {
}
.ktb-manufacturers-search-input:focus {
  outline: none;
}
.product_list .ktb-products-search-input {
  width: 320px;
  height: 54px;
  font-family: "Roboto", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -2%;
  padding: 8px 30px;
  border-radius: 30px;
  border: 2px solid #cccccc;
  background: transparent;
  outline: 0;
  box-shadow: 0;
}
.product_list .ktb-products-search-input:focus {
  outline: none;
}
.product_list .product-manufacturer,
.product_list .product-ktb-id {
  font-family: "Roboto", Sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
}
.product_list .product-title {
  font-family: Roboto Slab;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
  margin: 0;
}
.product_list .product-excerpt {
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
  color: #d4d4d4;
  transition: 0.3s;
}
.product_list .read_more {
  font-family: "Roboto", Sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
  margin: 0;
}
.product_list .ktb-products-grid .product-card:hover {
  background: #fff;
}

.product_list .ktb-products-grid .product-card:hover .product-excerpt {
  color: #000 !important;
}
.product_list .ktb-products-grid .product-card:hover .product-title,
.product_list .ktb-products-grid .product-card:hover .product-manufacturer,
.product_list .ktb-products-grid .product-card:hover .read_more {
  color: #db0123;
}
.product_list .ktb-products-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.product_list .ktb-load-more-button {
  width: 235px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  margin: 0 auto;
  background: #db0123 !important;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.36);
  transition: 0.3s;
}
.product_list .ktb-load-more-button:hover {
  background: #ffffff !important;
  color: #db0123 !important;
}

.ktb-products-search {
  position: relative;
}
#ktb-products-reset-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-20px, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 20px; /* Size of the icon area */
  height: 20px;
  padding: 0;
}

/* Parent Container for the Lines */
#ktb-products-reset-btn span {
  position: absolute;
  width: 100%; /* Make lines span the icon width */
  height: 2px; /* Thickness of the lines */
  background-color: #000; /* Color of the lines */
  top: 50%; /* Center the lines vertically */
  left: 0;
  margin-top: -1px; /* Adjust for line thickness */
  transition: transform 0.3s ease; /* Smooth transition for hover/active */
}

/* First Diagonal Line */
.line-one {
  transform: translateY(-50%) rotate(45deg); /* Start at 45 degrees */
}

/* Second Diagonal Line */
.line-two {
  transform: translateY(-50%) rotate(-45deg); /* Start at -45 degrees */
}
