/* =========================================================
   JAMEENGUIDE HOME SEARCH
========================================================= */

.home-search-wrapper {
    position: relative;
}


/* =========================================================
   RESULT BOX
========================================================= */

.jg-search-results {

    position: absolute;

    left: 0;

    right: 0;

    top: calc(100% + 8px);

    background: #ffffff;

    border: 1px solid #e1e5ea;

    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

    overflow: hidden;

    display: none;

    z-index: 999999;

    max-height: 480px;

    overflow-y: auto;
}


.jg-search-results.show {
    display: block;
}


/* =========================================================
   RESULT ITEM
========================================================= */

.jg-search-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    text-decoration: none;

    color: #111827;

    border-bottom: 1px solid #f0f1f3;

    background: #fff;
}


.jg-search-item:hover {
    background: #f7faff;
}


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

.jg-search-item img {

    width: 50px;

    height: 50px;

    object-fit: cover;

    border-radius: 9px;

    flex-shrink: 0;
}


/* =========================================================
   ICON
========================================================= */

.jg-search-icon {

    width: 50px;

    height: 50px;

    border-radius: 9px;

    background: #f1f5f9;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #1976ff;

    font-size: 19px;

    flex-shrink: 0;
}


/* =========================================================
   INFO
========================================================= */

.jg-search-info {

    flex: 1;

    min-width: 0;
}


.jg-search-title {

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;

    color: #111827;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


.jg-search-type {

    font-size: 11px;

    margin-top: 3px;

    color: #1976ff;

    font-weight: 600;
}


/* =========================================================
   ARROW
========================================================= */

.jg-search-arrow {

    font-size: 11px;

    color: #9ca3af;

    flex-shrink: 0;
}


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

.jg-search-all {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 16px;

    background: #fafcff;

    color: #1976ff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;
}


.jg-search-all:hover {

    background: #f2f7ff;
}


/* =========================================================
   EMPTY
========================================================= */

.jg-search-empty {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 24px;

    color: #6b7280;

    font-size: 14px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jg-search-results {

        top: calc(100% + 6px);

        border-radius: 12px;

        max-height: 420px;
    }


    .jg-search-item {

        padding: 10px;

        gap: 10px;
    }


    .jg-search-item img,
    .jg-search-icon {

        width: 43px;

        height: 43px;
    }


    .jg-search-title {

        font-size: 13px;
    }

}