.live-search-results
 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    z-index: 999;
    display: none;
    max-height: 75vh;
    overflow-y: auto;
}
.live-search-results-mobile{
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    z-index: 999;
    display: none;
    max-height: 75vh;
    overflow-y: auto;
}

.ls-wrapper { padding: 16px; }

.ls-suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ls-chip {
    padding: 6px 12px;
    background: #f2f2f2;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

.ls-section h4 {
    margin: 10px 0;
    font-size: 14px;
}

.ls-row { display: flex; gap: 10px; flex-wrap: wrap; }

.ls-cat {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.ls-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.ls-card {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.ls-card img {
    height: 90px !important;
    object-fit: contain;
    margin-bottom: 6px;
}

.ls-card h5 {
    font-size: 13px;
    margin: 4px 0;
}

.ls-card span {
    font-size: 13px;
    font-weight: 600;
}

.ls-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.ls-empty svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    opacity: .5;
}

.ls-empty p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ls-empty small {
    font-size: 13px;
    opacity: .8;
}

.ls-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #555;
}

.ls-close svg {
    width: 18px;
    height: 18px;
}

.ls-close:hover {
    color: #000;
}

/* 🔹 Loader wrapper */
.ls-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    gap: 8px;
}

/* 🔹 Dots animation */
.ls-loader span {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    animation: ls-bounce 1.4s infinite ease-in-out both;
}

.ls-loader span:nth-child(1) { animation-delay: -0.32s; }
.ls-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes ls-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: .3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .ls-close{
        display: none;
    }
}
