/* Autocomplete Search Styles */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.autocomplete-item:hover,
.autocomplete-item.autocomplete-active {
    background-color: #f8f9fa;
}

.autocomplete-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.autocomplete-img-placeholder {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autocomplete-img-placeholder::before {
    content: "\f03e"; /* Font Awesome image icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    color: #ccc;
    font-size: 20px;
}

.autocomplete-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.autocomplete-title strong {
    color: #dc3545;
    font-weight: 600;
}

.autocomplete-price {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
}

.autocomplete-view-all {
    background: #f8f9fa;
    color: #007bff;
    font-weight: 500;
    text-align: center;
    border-bottom: none;
}

.autocomplete-view-all:hover {
    background: #e9ecef;
    color: #0056b3;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .autocomplete-suggestions {
        max-height: 300px;
    }
    
    .autocomplete-img {
        width: 40px;
        height: 40px;
    }
    
    .autocomplete-img-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .autocomplete-title {
        font-size: 13px;
    }
    
    .autocomplete-price {
        font-size: 12px;
    }
}
