/* Boi_Search autocomplete popup — 3-column layout (categories sidebar + products main + view-all footer) */

#search_mini_form { position: relative; }

.boi-ac-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    min-width: 560px;
    max-width: 900px;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-top: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    font-size: 14px;
    color: #333;
}

.boi-ac-dropdown[hidden] { display: none; }

/* layout */
.boi-ac-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}
.boi-ac-sidebar {
    background: #fafafa;
    border-right: 1px solid #eee;
    padding: 4px 0 8px;
}
.boi-ac-main { padding: 4px 0 8px; }

/* full-width only (no sidebar) fallback */
.boi-ac-layout:has(.boi-ac-sidebar:only-child),
.boi-ac-layout:has(.boi-ac-main:only-child) {
    grid-template-columns: 1fr;
}

.boi-ac-section-title {
    margin: 0;
    padding: 10px 14px 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
}

.boi-ac-list { list-style: none; margin: 0; padding: 0; }

.boi-ac-item { border-top: 1px solid #f5f5f5; }
.boi-ac-item:first-child { border-top: none; }
.boi-ac-item.is-selected,
.boi-ac-item:hover { background: #f0f6ff; }

.boi-ac-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
}
.boi-ac-link-compact { padding: 8px 14px; }

.boi-ac-thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 2px;
}

.boi-ac-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.boi-ac-name {
    font-weight: 500;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.boi-ac-name mark {
    background: #fff3b0;
    color: inherit;
    padding: 0 1px;
}

.boi-ac-desc {
    font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.boi-ac-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.boi-ac-price { font-weight: 600; color: #222; }

.boi-ac-rating-stars {
    --rating: 0;
    display: inline-block;
    width: 70px;
    height: 14px;
    background: linear-gradient(90deg, #f0b100 calc(var(--rating) / 5 * 100%), #ddd calc(var(--rating) / 5 * 100%));
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 14'><g fill='black'><polygon points='7,0 8.7,4.5 13.6,4.8 9.8,7.9 11.1,12.8 7,10.2 2.9,12.8 4.2,7.9 .4,4.8 5.3,4.5'/><polygon points='21,0 22.7,4.5 27.6,4.8 23.8,7.9 25.1,12.8 21,10.2 16.9,12.8 18.2,7.9 14.4,4.8 19.3,4.5'/><polygon points='35,0 36.7,4.5 41.6,4.8 37.8,7.9 39.1,12.8 35,10.2 30.9,12.8 32.2,7.9 28.4,4.8 33.3,4.5'/><polygon points='49,0 50.7,4.5 55.6,4.8 51.8,7.9 53.1,12.8 49,10.2 44.9,12.8 46.2,7.9 42.4,4.8 47.3,4.5'/><polygon points='63,0 64.7,4.5 69.6,4.8 65.8,7.9 67.1,12.8 63,10.2 58.9,12.8 60.2,7.9 56.4,4.8 61.3,4.5'/></g></svg>") no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 14'><g fill='black'><polygon points='7,0 8.7,4.5 13.6,4.8 9.8,7.9 11.1,12.8 7,10.2 2.9,12.8 4.2,7.9 .4,4.8 5.3,4.5'/><polygon points='21,0 22.7,4.5 27.6,4.8 23.8,7.9 25.1,12.8 21,10.2 16.9,12.8 18.2,7.9 14.4,4.8 19.3,4.5'/><polygon points='35,0 36.7,4.5 41.6,4.8 37.8,7.9 39.1,12.8 35,10.2 30.9,12.8 32.2,7.9 28.4,4.8 33.3,4.5'/><polygon points='49,0 50.7,4.5 55.6,4.8 51.8,7.9 53.1,12.8 49,10.2 44.9,12.8 46.2,7.9 42.4,4.8 47.3,4.5'/><polygon points='63,0 64.7,4.5 69.6,4.8 65.8,7.9 67.1,12.8 63,10.2 58.9,12.8 60.2,7.9 56.4,4.8 61.3,4.5'/></g></svg>") no-repeat;
}

.boi-ac-empty {
    padding: 20px;
    text-align: center;
    color: #666;
}

.boi-ac-facets {
    padding: 10px 14px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.boi-ac-facet-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.boi-ac-facet-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: .05em;
    margin-right: 4px;
}
.boi-ac-facet-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    font-size: 12px;
    color: #333;
    background: #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
}
.boi-ac-facet-chip:hover { background: #e3ecf7; color: #1a73e8; }
.boi-ac-facet-count {
    font-weight: 600;
    color: #888;
}

.boi-ac-footer {
    padding: 10px 14px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.boi-ac-viewall {
    font-weight: 500;
    color: #1a73e8;
    text-decoration: none;
}
.boi-ac-viewall:hover { text-decoration: underline; }

/* mobile: stack to single column */
@media (max-width: 640px) {
    .boi-ac-dropdown { min-width: 0; }
    .boi-ac-layout { grid-template-columns: 1fr; }
    .boi-ac-sidebar { border-right: none; border-bottom: 1px solid #eee; }
}
