/* Redfin Typeahead Search Styles */

.redfin-search-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.redfin-search-dropdown {
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999999;
    display: none;
    box-sizing: border-box;
}

.redfin-search-dropdown.active {
    display: block;
}

.redfin-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.redfin-search-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    min-width: 0;
    box-sizing: border-box;
}

.redfin-search-item:nth-child(2n) {
    border-right: none;
}

.redfin-search-item:only-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    border-right: none;
}

.redfin-search-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.redfin-search-item a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.15s ease;
}

.redfin-search-item:hover a,
.redfin-search-item.selected a {
    background-color: #f5f5f5;
}

.redfin-search-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.redfin-search-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.redfin-search-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.redfin-search-title mark {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

.redfin-search-sku {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.redfin-search-price {
    font-size: 13px;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 4px;
}

.redfin-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Section titles */
.redfin-search-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px 4px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

/* Category results */
.redfin-search-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.redfin-search-category {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.redfin-search-category a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.15s ease;
}

.redfin-search-category:hover a,
.redfin-search-category.selected a {
    background-color: #f5f5f5;
}

.redfin-category-icon {
    margin-right: 10px;
    font-size: 16px;
}

.redfin-category-name {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.redfin-category-name mark {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

.redfin-category-count {
    font-size: 12px;
    color: #888;
    margin-left: 8px;
}

/* View all results link */
.redfin-view-all {
    border-top: 2px solid #eee;
    background: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
}

.redfin-view-all a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.redfin-view-all:hover a,
.redfin-view-all.selected a {
    background-color: #e8f0fe;
    color: #1557b0;
}

.redfin-view-all-icon {
    margin-right: 8px;
    font-size: 14px;
}

.redfin-view-all-text {
    flex: 0 1 auto;
}

.redfin-view-all-arrow {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.15s ease;
}

.redfin-view-all:hover .redfin-view-all-arrow,
.redfin-view-all.selected .redfin-view-all-arrow {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .redfin-search-dropdown {
        max-height: 60vh;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
    }

    .redfin-search-results {
        grid-template-columns: 1fr;
    }

    .redfin-search-item a {
        padding: 12px;
    }

    .redfin-search-image {
        width: 40px;
        height: 40px;
    }

    .redfin-search-title {
        font-size: 13px;
    }
}
