.product-search-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top */
}
.woocommerce-product-search {
  display: none;
  position: fixed;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--art-white);
  padding: 2rem 1rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  border-radius: 10px;
}

.close-product-search {
  font-size: 35px;
  color: red;
  cursor: pointer;
}
.product-search-button::before {
  content: "";
  width: 28px;
  height: 23px;
  display: inline-block;
  background: url(../../../../woocommerce/assets/img/icon-search.svg);
  background-repeat: no-repeat;
  margin-top: 8px;
}
.product-search-button {
  padding: 5px;
  border: none;
  cursor: pointer;
}
.woocommerce-product-search {
  gap: 0.5rem;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
}
.woocommerce-product-search .search-field {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.191), 1rem);
  font-weight: 500;
  line-height: 1.375rem;
  padding: 0.75rem 1.125rem;
  width: 100%;
  background-color: var(--wp--preset--color--art-white);
  border: 1px solid #c6c6c6;
  border-radius: calc(1.25rem + 1px);
  outline: none;
}
.woocommerce-product-search button {
  padding: calc(0.667em + 5px) calc(1.333em + 2px);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.191), 1rem);
  line-height: 1.2;
  display: inline-block;
  background-color: var(--wp--preset--color--art-primary);
  border: 2px solid var(--wp--preset--color--art-primary);
  border-radius: 3rem;
  color: var(--wp--preset--color--art-white);
  text-decoration: none;
  cursor: pointer;
}
.woocommerce-product-search button:hover {
  background-color: var(--wp--preset--color--art-white);
  border: 2px solid var(--wp--preset--color--art-primary);
  color: var(--wp--preset--color--art-primary);
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .cart-box-area span.cart-count {
    top: -1.8rem;
    right: 3rem;
  }
}
@media only screen and (max-width: 567px) {
  .product-search-results {
    padding: 1rem 1rem 1.5rem 1rem;
  }
  form img.search-icon {
    display: none;
  }
  .woocommerce-product-search {
    gap: 0;
    justify-content: center;
  }
}

#product-search-results {
  display: none;
  position: fixed;
  top: 14rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 1rem 2rem 1.5rem 2rem;
  z-index: 9999;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  border-radius: 0px 0px 10px 10px;
  border-top: 2px solid var(--wp--preset--color--art-primary);
}
.product-item {
  border-bottom: 1px solid var(--wp--preset--color--art-primary);
}
.product-item a:hover {
  color: var(--wp--preset--color--art-primary);
}
