/**
 * Search Autocomplete Dropdown Styles
 * Adalya Point E-cigarette Webshop
 */

.search-autocomplete {
    position: fixed !important;
    background: #FFFFFF !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
    z-index: 10001 !important;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.autocomplete-item {
    border-bottom: 1px solid #f1f5f9;
}

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

.autocomplete-item.selected {
    background: #f8fafc;
}

.autocomplete-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1a1c1e;
    transition: background 0.2s ease;
}

.autocomplete-link:hover,
.autocomplete-item.selected .autocomplete-link {
    background: #f8fafc;
}

.autocomplete-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.autocomplete-info {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1c1e;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-price {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C0A050;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .search-autocomplete {
        max-height: 300px;
    }
    
    .autocomplete-link {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .autocomplete-image {
        width: 40px;
        height: 40px;
    }
    
    .autocomplete-name {
        font-size: 0.875rem;
    }
    
    .autocomplete-price {
        font-size: 0.8125rem;
    }
}
