.searchpilot-results {
    position: absolute;
    background: #fff;
    width: 100%;
    border: 1px solid #ddd;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
}

.searchpilot-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.searchpilot-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.searchpilot-item:hover {
    background: #f7f7f7;
}

.searchpilot-no-results {
    padding: 15px;
    text-align: center;
}

/* GRID */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */
.sp-card {
    text-align: center;
}

/* IMAGE WRAP */
.sp-image-wrap {
    position: relative;
    overflow: hidden;
}

/* IMAGES */
.sp-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.35s ease;
}

/* HOVER IMAGE */
.sp-img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* HOVER EFFECT */
.sp-image-wrap:hover .sp-img.hover {
    opacity: 1;
}

.sp-image-wrap:hover .sp-img.main {
    opacity: 0;
}
.sp-highlight {
    font-weight: 600;
    color: #000;
}
/* TEXT */
.sp-content {
    margin-top: 18px;
}

.sp-title {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sp-price {
    font-size: 15px;
    color: #cfd8e3;
}

/* NO RESULTS */
.sp-no-results {
    text-align: center;
    padding: 60px;
    font-size: 20px;
}
h3.sp-title {
    font-size: 20px !important;
    margin-top: 0px !important;
}
p.sp-title {
    margin-bottom: 4px;
}
.location {
    display: inline-block;
    font-size: 11px;
    color: #bbb;
    margin-right: 6px;
    text-transform: uppercase;
}