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

.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;
}

.dashicons-search:before{
	display: block !important;
}

.store-search-input {
	font-family: var(--custom-text-font);
    padding: 6px 12px 6px 34px;
    border: 1px solid var(--custom-color);
    border-radius: 4px;
    outline: none;
	width: 100%;
    max-width: 100%;
	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: var(--custom-color);
  border-radius: 10px;
}

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

.store-search-results li a {
	font-family: var(--custom-text-font);
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.store-search-results li a:hover {
	color: var(--custom-bg);
    background: var(--custom-hover-color);
}

.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;
}