/* Search Dropdown Box */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 999;
    max-height: 350px;       /* Limit height */
    overflow-y: auto;        /* Scroll only inside list */
    display: none;
}

/* Search Item */
.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.search-item:hover {
    background: #f7f7f7;
}

/* Product Thumbnail */
.search-thumb {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* No Result Style */
.search-no-result {
    padding: 12px;
    color: #777;
    text-align: center;
}
