.dgwt-wcas-suggestions-wrapp {
    display: none !important;
}

.bcl-search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    min-width: 20rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    overflow: hidden;
}

.bcl-search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}

.bcl-search-item:hover,
.bcl-search-item.focused {
    background: #f9fafb;
    text-decoration: none;
}

.bcl-search-item:last-of-type {
    border-bottom: none;
}

.bcl-search-item-img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
    background: #f3f4f6;
}

.bcl-search-item-info {
    flex: 1;
    min-width: 0;
}

.bcl-search-item-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(102 102 102);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcl-search-item-price {
    display: block;
    font-size: 0.8125rem;
    color: rgb(102 102 102);
    margin-top: 0.125rem;
}

.bcl-search-see-all {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(57 192 224);
    text-decoration: none;
    background: #f6f6f6;
    border-top: 1px solid rgb(231 231 231);
    transition: background 0.15s;
}

.bcl-search-see-all:hover {
    background: #f6f6f6;
    text-decoration: none;
}

.bcl-search-no-results {
    padding: 1rem;
    text-align: center;
    color: rgb(102 102 102);
    font-size: 0.875rem;
}

.bcl-search-loading {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.bcl-search-loading::after {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e5e7eb;
    border-top-color: rgb(57 192 224);
    border-radius: 50%;
    animation: bcl-spin 0.6s linear infinite;
}

@keyframes bcl-spin {
    to { transform: rotate(360deg); }
}
