/* Enhanced Search Results Styling */
.adqs-search-results-count {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
}

.adqs-ajax-search-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.adqs-ajax-search-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.adqs-search-item-link {
    display: flex;
    padding: 12px;
    text-decoration: none !important;
    color: inherit;
}

.adqs-as-img {
    width: 90px;
    min-width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 15px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adqs-as-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adqs-no-image {
    color: #999;
    font-size: 12px;
    text-align: center;
}

.adqs-as-meta {
    flex: 1;
}

.adqs-as-meta h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.adqs-as-tagline {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.adqs-as-address,
.adqs-as-phone {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.adqs-as-address i,
.adqs-as-phone i {
    font-size: 12px;
    margin-right: 5px;
    color: #666;
}

.adqs-as-metaInfo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.adqs-asMeta-price {
    margin-right: 10px;
}

.adqs-no-search-results {
    padding: 20px 0;
    text-align: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .adqs-search-item-link {
        flex-direction: column;
    }
    
    .adqs-as-img {
        width: 100%;
        height: 160px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
