.product-search-container{
    display: flex;
    gap: 25px;
    background: #e8f0f5;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 24px;
}
.product-search-container select {
    width: 100%;
    border: 0px !important;
    padding: 18px 24px 18px 18px; /* top, right, bottom, left */
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    appearance: none; /* Remove default browser styles */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="black" d="M0 0l5 6 5-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
}
.product-search-container select:focus {
    outline: none;
    box-shadow: none;
}

  @media (max-width: 991px) {
    .product-search-container {
      flex-direction: column;
      gap: 15px;
    }
  }

.loader-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin: 0 auto;
  text-align: center;
}

.loader-spinner:after {
  content: "";
  width: 40px;
  height: 40px;
  border: 5px solid #ddd;
  border-top: 5px solid #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
