/* ===== Catalog ajax search ===== */
.catalog-search {
    position: relative;
}

.catalog-search__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 50;
    margin-top: 4px;
    max-height: 420px;
    overflow-y: auto;
}

.catalog-search__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #2D2926;
    border-bottom: 1px solid #f2f2f2;
    transition: background-color .15s;
}

.catalog-search__item:last-child {
    border-bottom: none;
}

.catalog-search__item:hover {
    background-color: #f7f7f7;
    color: #1a73e8;
}

.catalog-search__item-img {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 4px;
}

.catalog-search__item-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.catalog-search__item-img_empty {
    background: #f0f0f0;
}

.catalog-search__item-name {
    flex: 1;
    font-size: 14px;
    line-height: 1.3;
}

.catalog-search__empty {
    padding: 14px;
    color: #999;
    font-size: 14px;
    text-align: center;
}
