.search-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.shop-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.search-hint {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
}

.main-search-bar {
  max-width: 800px;
  margin: 0 auto 30px;
}

.search-input-wrapper {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-input-wrapper:focus-within {
  border-color: #f9a825;
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.2);
}

#filter-search {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  outline: none;
  width: 100%;
}

.main-search-btn {
  background: #f9a825;
  color: #111;
  border: none;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.1s;
}

.main-search-btn:hover {
  background: #f09800;
}

.main-search-btn svg {
  stroke-width: 3;
}





@media (max-width: 768px) {
  .search-container {
    padding: 30px 15px;
  }

  .shop-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .search-hint {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .search-input-wrapper {
    flex-direction: row;
    border-radius: 12px;
  }

  #filter-search {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .main-search-btn {
    padding: 0 15px;
  }

  .main-search-btn span {
    display: none;
  }
}

.no-results-suggestions {
  margin-top: 16px
}

.no-results-suggestions .shop-content p {
  margin: 8px 0 12px
}
.suggest-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.shop-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 300px;
  margin-top: 1rem;
  margin-bottom: 2rem
}

.shop-content .product-box {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(50% - .5rem);
  max-width: calc(50% - .5rem)
}

.products-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  min-height: 200px
}

.lds-dual-ring {
  display: inline-block;
  width: 40px;
  height: 40px
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin: 4px;
  border-radius: 50%;
  border: 4px solid #f9a825;
  border-color: #f9a825 #fff0;
  animation: .4s linear infinite lds-dual-ring
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@media (max-width:768px) {
  .shop-content .product-box {
    flex-basis: 100%;
    max-width: 100%
  }
}