/* === Butcher MLS Search PRO v4.0 === */
/* Wrapper */
.butcher-mls-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    font-family: inherit;
}

/* Search bar */
.butcher-mls-search-bar {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 999px;
    border: 1px solid #e3e3e3;
    padding: 6px 10px 6px 18px;
}

.butcher-mls-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333333;
}

.butcher-mls-input::placeholder {
    color: #999999;
}

/* Search button – white circle, burgundy icon */
.butcher-mls-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #800020;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
    color: #800020;
    padding: 0;
}

.butcher-mls-button:hover {
    background: #fdf3f6;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.butcher-mls-button-icon {
    font-size: 16px;
}

/* Dropdown results */
.butcher-mls-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    overflow: hidden;
}

.butcher-mls-dropdown-inner {
    max-height: 400px;
    overflow-y: auto;
}

/* Single result item – only image + title */
.butcher-mls-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    color: #222222;
    transition: background 0.15s ease;
}

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

.butcher-mls-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    background: #f7f7f7;
}

.butcher-mls-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.butcher-mls-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

/* Hover */
.butcher-mls-item:hover {
    background: #fdf3f3;
}

/* No results */
.butcher-mls-no-results {
    padding: 12px 14px;
    font-size: 13px;
    color: #777777;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .butcher-mls-wrapper {
        max-width: 100%;
    }

    .butcher-mls-dropdown {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
    }
}
