/*------- canlı ürün arama açılır listesi -------*/
.search-results-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 40px;
    z-index: 60;
    background-color: #FFFDF8;
    border: 1px solid #E3D5B8;
    border-radius: 8px;
    box-shadow: 0 16px 32px -12px rgba(42, 29, 19, 0.25);
    max-height: 380px;
    overflow-y: auto;
}
.search-results-dropdown.is-open {
    display: block;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #F3ECDC;
    transition: 0.2s;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background-color: #F3ECDC;
}
.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: #F3ECDC;
}
.search-result-item span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: #2A1D13;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-cat {
    font-size: 11px;
    color: #8A7A68;
}
.search-no-results {
    padding: 14px;
    font-size: 13px;
    color: #8A7A68;
    text-align: center;
}

@media only screen and (max-width: 479.98px) {
    .search-results-dropdown {
        right: 15px;
    }
}
