/**
 * _             _       _
 * | |____      _| | __ _| |__
 * | '_ \ \ /\ / / |/ _` | '_ \
 * | |_) \ V  V /| | (_| | |_) |
 * |_.__/ \_/\_/ |_|\__,_|_.__/.
 *
 * @author    Bwlab di Luigi Massa <info@bwlab.it>
 * @copyright since 2014 Bwlab
 * @license   proprietary
 */
.bwss-autosuggest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 420px;
    overflow-y: auto;
    margin-top: 2px;
}

.bwss-autosuggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.1s ease-in-out;
}

.bwss-autosuggest-item:last-child {
    border-bottom: 0;
}

.bwss-autosuggest-item:hover,
.bwss-autosuggest-item:focus {
    background: #f7f7f7;
    text-decoration: none;
}

.bwss-autosuggest-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
}

.bwss-autosuggest-name {
    flex: 1;
    font-size: 0.95em;
    line-height: 1.3;
}

.bwss-autosuggest-price {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}
