/* =========================================================
   AUTOCOMPLETE DROPDOWN
========================================================= */

.ac_results.lps_results {
    position: absolute !important;

    top: calc(100% + 10px) !important;
    left: 0 !important;

    width: 100% !important;

    background: #fff !important;

    border: 1px solid #ececec !important;
    border-radius: 18px !important;

    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;

    overflow: hidden !important;

    z-index: 999999 !important;
}

/* =========================================================
   INNER SCROLL AREA
========================================================= */

.ac_results.lps_results > div:first-child {
    padding: 12px !important;

    max-height: 420px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* =========================================================
   LIST RESET
========================================================= */

.ac_results.lps_results ul {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

/* =========================================================
   RESULT ITEMS
========================================================= */

.ac_results.lps_results li {
    display: flex !important;

    align-items: center !important;

    gap: 14px !important;

    padding: 14px !important;
    margin-bottom: 10px !important;

    background: #fff !important;

    border: 1px solid #f2f2f2 !important;
    border-radius: 14px !important;

    transition: background 0.2s ease;
}

.ac_results.lps_results li:last-child {
    margin-bottom: 0 !important;
}

.ac_results.lps_results li:hover {
    background: #f8f8f8 !important;
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.ac_results.lps_results img {
    width: 70px !important;
    min-width: 70px !important;

    height: 70px !important;

    object-fit: contain !important;
    object-position: center !important;

    border-radius: 10px !important;

    background: #fff !important;
}

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.ac_results.lps_results .lps-result-content {
    flex: 1 !important;

    min-width: 0 !important;
}

/* =========================================================
   PRODUCT TITLE
========================================================= */

.ac_results.lps_results .lps-result-title {
    font-size: 15px !important;
    line-height: 1.4 !important;

    color: #111 !important;
}

/* =========================================================
   PRODUCT PRICE
========================================================= */

.ac_results.lps_results .lps-result-price {
    margin-top: 4px !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    color: #000 !important;
}

/* =========================================================
   PRODUCT LINKS
========================================================= */

.ac_results.lps_results a {
    text-decoration: none !important;
}

/* =========================================================
   VIEW ALL CONTAINER
========================================================= */

.ac_results.lps_results .all-search-product {
    display: flex !important;

    justify-content: center !important;

    padding: 18px 14px 16px !important;

    border-top: 1px solid #f3f3f3 !important;

    background: #fff !important;
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.ac_results.lps_results .all-search-product a {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-width: 240px !important;

    padding: 14px 28px !important;

    background: #00b2e2 !important;

    border-radius: 999px !important;

    color: #fff !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    transition: background 0.2s ease;
}

.ac_results.lps_results .all-search-product a:hover {
    background: #0095bf !important;
}