.products-filter {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.products-filter-selector {
    width: 35%;
    border: 1px solid #94a3b8;
    border-radius: 8px;
    background-color: #fff;
    color: #94a3b8;
    font-family: Inter;
    overflow: hidden;
}

.autocomplete-google {
    width: 100%;
    border: 1px solid #94a3b8;
    border-radius: 8px;
    background-color: #fff;
    font-family: Inter;
    overflow: hidden;
}

#geo-input {
    width: 100%;
    padding: 8px 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
}

#geo-input:focus,
#geo-input:active,
#geo-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.autocomplete-results {
    background: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
}

.autocomplete-results li {
    margin: 0;
    padding: 0;
}

.place-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px;
    border: none;
    background: white;
    cursor: pointer;
}

.place-button:hover {
    background: #f5f5f5;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-dropdown {
    position: relative;
    width: 100%;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: Inter;
    border-radius: 8px;
    cursor: pointer;
}

.category-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-chevron {
    flex-shrink: 0;
    margin-left: 12px;
}

.category-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 10px;
    z-index: 1000;
}

.category-dropdown-panel ul {
    list-style: none;
    padding-left: 15px;
}

.category-dropdown-panel li {
    margin-bottom: 6px;
}

.category-item {
    cursor: pointer;
    display: inline-block;
}

.category-item:hover {
    font-weight: 500;
}
