/* ==========================================================================
   Live Search — Dropdown
   ========================================================================== */

.brd-hdr-search-wrap {
    position: relative;
}

#brd-mobile-search {
    position: relative;
}

@media (max-width: 921px) {
    #brd-mobile-search .brd-search-dropdown {
        left: 12px;
        right: 12px;
        min-width: 0;
        border-radius: 10px;
        top: calc(100% + 6px);
    }
}

.brd-search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 360px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    overflow: hidden;
    font-size: 14px;
}

.brd-sd-section-label {
    padding: 8px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

/* Categoria */
.brd-sd-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    text-decoration: none;
    color: #0D0D0D;
    transition: background 0.15s;
}

.brd-sd-cat:hover,
.brd-sd-cat.brd-sd-active {
    background: #f4f6f9;
    color: #0D0D0D;
}

.brd-sd-cat svg {
    flex-shrink: 0;
    color: #206BB3;
}

.brd-sd-cat-name {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.brd-sd-cat-count {
    color: #888;
    font-size: 13px;
}

/* Produto */
.brd-sd-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    text-decoration: none;
    color: #0D0D0D;
    transition: background 0.15s;
}

.brd-sd-product:hover,
.brd-sd-product.brd-sd-active {
    background: #f4f6f9;
    color: #0D0D0D;
}

.brd-sd-product img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.brd-sd-product--variation img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.brd-sd-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.brd-sd-name {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brd-sd-variation {
    font-size: 13px;
    font-weight: 600;
    color: #183357;
}

.brd-sd-sku {
    font-size: 12px;
    color: #888;
}

.brd-sd-pix {
    font-size: 13px;
    color: #206BB3;
    font-weight: 600;
}

.brd-sd-pix .woocommerce-Price-currencySymbol {
    font-size: 11px;
}

.brd-sd-login {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Rodapé — ver todos */
.brd-sd-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
    color: #206BB3;
    text-decoration: none;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    transition: background 0.15s;
}

.brd-sd-footer:hover {
    background: #f0f4fa;
    color: #206BB3;
}

/* Estado vazio */
.brd-sd-empty {
    padding: 18px 14px;
    color: #888;
    text-align: center;
    font-size: 13px;
}

/* Loading */
.brd-sd-loading {
    padding: 14px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Divisor entre seções */
.brd-sd-cat + .brd-sd-section-label {
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
    padding-top: 12px;
}
