.store-search-wrapper {
    position: relative;
    display: inline-block;
}

.store-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.store-search-icon {
    position: absolute;
    left: 10px;
    color: #888;
    font-size: 18px;
    pointer-events: none;
}

.store-search-input {
	font-family: "Inter", sans-serif;
    padding: 6px 12px 6px 34px;
    border: 1px solid #37bcf5;
    border-radius: 0px 8px 8px;
    outline: none;
    max-width: 200px;
	color: #333;
}

.store-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    margin: 4px 0 0;
    padding: 0 !important;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
}

.store-search-results::-webkit-scrollbar{
	width: 4px;
}

.store-search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.store-search-results::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.store-search-results li a {
	font-family: "Inter", sans-serif;
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.store-search-results li a:hover {
    background: #f5f5f5;
}

.store-search-results li.no-results {
    padding: 8px 12px;
    color: #999;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}