/* ES Instant Search Dropdown */
.p68es-search--dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .3); 
    scrollbar-width: thin;
}

.p68es-search--dropdown.active:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 3%;
    border-bottom: 10px solid #eee;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-width: 8px;
    border-bottom-color: #f5f5f5;
    margin-left: 2px;
}
.p68es-search--items-wrap {
    max-height: 275px;
    overflow-y: auto;
}
.p68es-search--dropdown.active {
    display: block;
}

/* Item */
.p68es-search--item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none !important;
    color: #333 !important;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

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

.p68es-search--item:hover,
.p68es-search--item.p68es-search--highlight {
    background: #f7f7f7;
}

/* Thumbnail */
.p68es-search--thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f5f5f5;
}

/* Info */
.p68es-search--info {
    flex: 1;
    min-width: 0;
}

.p68es-search--title {
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p68es-search--title mark {
    background: #fef3cd;
    color: inherit;
    padding: 0;
}

.p68es-search--price {
    font-size: 13px;
    color: #e53e3e;
    font-weight: 600;
}

/* View all */
.p68es-search--viewall {
    display: block;
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
    color: var(--isures-filter-primary) !important;
    text-decoration: none !important;
    border-top: 1px solid #eee;
    background: #fafafa;
    border-radius: 0 0 8px 8px;
}

.p68es-search--viewall:hover {
    background: #f0f0f0;
}

/* Loading */
.p68es-search--loading {
    padding: 20px;
    text-align: center;
}

.p68es-search--spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: p68es-spin .6s linear infinite;
}

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

/* Category suggestion tags */
.p68es-search--cats {
    border-bottom: 1px solid #eee;
}

.p68es-search--cats-label,
.p68es-search--products-label {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 400;
    padding: 10px;
}

.p68es-search--products-label {
    padding: 8px 14px 0;
}


.p68es-search--cattag {
    color: var(--isures-filter-primary);
    font-size: 12px !important;
    margin: 0 5px 0;
    padding: 5px 10px;
    font-weight: 500 !important;
    display: block;
}

/* Empty */
.p68es-search--empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}