/* Custom fixes for search autocomplete */
.smile-elasticsuite-autocomplete-result {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 1000;
}

.smile-elasticsuite-autocomplete-result .product-item-link {
    display: flex;
    align-items: center;
    padding: 8px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s;
}

.smile-elasticsuite-autocomplete-result .product-item-link:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.smile-elasticsuite-autocomplete-result .product-image-box {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.smile-elasticsuite-autocomplete-result .product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.smile-elasticsuite-autocomplete-result .product-shop {
    flex: 1;
}

.smile-elasticsuite-autocomplete-result .product-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.smile-elasticsuite-autocomplete-result .price-box {
    color: #243871;
    font-weight: 600;
}

.smile-elasticsuite-autocomplete-result dd {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.smile-elasticsuite-autocomplete-result dd:last-child {
    border-bottom: none;
}

.smile-elasticsuite-autocomplete-result dt {
    padding: 8px;
    background: #f8f8f8;
    font-weight: 600;
    color: #243871;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Fix for mobile devices */
@media only screen and (max-width: 767px) {
    .smile-elasticsuite-autocomplete-result {
        margin-top: 5px;
    }

    .smile-elasticsuite-autocomplete-result .product-image-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .smile-elasticsuite-autocomplete-result .product-name {
        font-size: 13px;
    }
}

#search_autocomplete {
    margin-top: 5px !important;
}