.bsr-container {
    position: absolute;
    top: 100%;           /* Nằm ngay dưới ô input */
    left: 0;             /* Căn trái 0 */
    width: 100%;         /* Chiếm toàn bộ chiều rộng của thẻ cha */
    max-width: 100%;     /* Bỏ giới hạn px cũ (ví dụ 700px) để nó co giãn theo ô input */
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    border-radius: 0 0 4px 4px; /* Bo cong 2 góc dưới cho đẹp */
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    box-sizing: border-box; /* Đảm bảo padding không làm vỡ khung */
    margin-top: 2px;     /* Cách ô input một chút xíu cho thoáng (tuỳ chọn) */
}

/* Header: Kết quả tìm kiếm */
.bsr-main-header {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #000;
}

.bsr-scroll-container {
    max-height: 500px; /* Chiều cao tối đa, quá thì scroll */
    overflow-y: auto;
}

/* Section Header: Dải màu xám chứa Tiêu đề + Xem tất cả */
.bsr-section-header {
    background-color: #e6e6e6;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bsr-section-title {
    font-weight: 700;
    color: #333;
}

.bsr-view-all {
    text-decoration: none;
    color: #555;
    font-size: 13px;
}

.bsr-view-all:hover {
    text-decoration: underline;
    color: #000;
}

/* List Item Chung */
.bsr-list {
    display: flex;
    flex-direction: column;
}

.bsr-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.bsr-item:last-child {
    border-bottom: none;
}

.bsr-item:hover {
    background-color: #fafafa;
}

/* --- Style Riêng cho Sản Phẩm --- */
.bsr-thumb-wrapper {
    width: 50px;
    height: 70px; /* Chỉnh chiều cao cho hợp ly rượu */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bsr-thumb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bsr-info {
    flex: 1;
}

.bsr-name {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px 0;
    color: #333;
    line-height: 1.4;
}

.bsr-price {
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

/* --- Style Riêng cho Tin Tức --- */
.bsr-news-thumb-wrapper {
    width: 80px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}

.bsr-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Chỉnh lại font title cho tin tức đậm hơn chút */
.bsr-news-item .bsr-name {
    font-weight: 600;
    font-size: 13px;
}

.bsr-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bsr-read-more {
    font-size: 12px;
    color: #8b0000; /* Màu đỏ rượu vang */
    font-weight: 600;
}
