﻿.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    z-index: 99;
    border: 1px solid #eee;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

    .search-result-item:hover {
        background-color: #f2f2f2;
    }

    .search-result-item img {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        margin-right: 10px;
        object-fit: cover;
    }

    .search-result-item .name {
        font-weight: bold;
    }

    .search-result-item .price {
        margin-left: auto;
        color: #28a745;
        font-weight: 600;
    }

    .search-result-item.bg-light {
        background-color: #f6f6f6;
    }
