/* Небольшой стиль для выпадающих результатов */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border: 1px solid rgba(0,0,0,.125);
    border-top: none;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}
.search-result-item {
    padding: .5rem .75rem;
    cursor: pointer;
}
.search-result-item:hover, .search-result-item:focus {
    background: #f8f9fa;
}
.product-title { font-weight: 600; }
.product-code, .product-price { font-size: .875rem; }
.search-loader {
    position: absolute;
    top: 8px;
    right: 8px;
}
.filter-header {
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .5rem;
    cursor: pointer;
    margin-bottom: .75rem;
}
.collapse-icon {
    transition: transform .2s ease;
}
.collapse.show + .collapse-icon,
.filter-header[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg);
}
/* Toast контейнер в правом верхнем углу */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1080;
}

#errorToast .toast-body {
    background-color: rgb(255, 255, 255);
    opacity: 1;
}