.js-product-search-form {
    position: relative;
}

.cm-search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 120;
    display: none;
    max-height: 390px;
    overflow-y: auto;
    padding: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.cm-search-autocomplete.is-visible {
    display: block;
}

.cm-search-mini-item,
.cm-search-product-card {
    color: #1f2933;
    text-decoration: none;
}

.cm-search-mini-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
}

.cm-search-mini-item:hover,
.cm-search-mini-item:focus {
    color: #1f2933;
    text-decoration: none;
    background: #f7f7f7;
}

.cm-search-mini-item img,
.cm-search-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cm-search-mini-item__image {
    width: 54px;
    height: 54px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.cm-search-mini-item__name,
.cm-search-product-card__name {
    display: block;
    overflow: hidden;
    font-weight: 700;
    line-height: 1.3;
}

.cm-search-mini-item__name {
    font-size: 13px;
}

.cm-search-mini-item__meta,
.cm-search-product-card__meta {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
}

.cm-search-mini-empty,
.cm-search-empty {
    padding: 14px;
    color: #6b7280;
    font-size: 13px;
    text-align: center;
}

.cm-search-canvas {
    width: min(520px, 100vw) !important;
}

.cm-search-canvas .canvas-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.cm-search-canvas__head {
    flex: 0 0 auto;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #eeeeee;
}

.cm-search-canvas__head .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: #253d4e;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.cm-search-canvas__head .close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #253d4e;
    cursor: pointer;
}

.cm-search-canvas__head .tf-search-sticky {
    margin-bottom: 0;
}

.cm-search-canvas .tf-mini-search-frm {
    position: relative;
    display: block;
}

.cm-search-canvas .tf-mini-search-frm input {
    height: 46px;
    padding: 10px 52px 10px 14px !important;
    font-size: 15px;
    line-height: 24px;
    border-radius: 8px !important;
}

.cm-search-canvas .tf-mini-search-frm button {
    position: absolute;
    top: 5px;
    right: 6px;
    left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #fff;
    background: #253d4e;
    border: 0;
    border-radius: 8px;
}

.cm-search-canvas__body {
    height: calc(100vh - 118px);
    overflow-y: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}

.cm-search-section + .cm-search-section {
    margin-top: 18px;
}

.cm-search-section__title {
    margin-bottom: 10px;
    color: #253d4e;
    font-size: 14px;
    font-weight: 800;
}

.cm-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cm-search-product-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.cm-search-product-card:hover,
.cm-search-product-card:focus {
    color: #1f2933;
    text-decoration: none;
    border-color: #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.cm-search-product-card__image {
    width: 86px;
    height: 86px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.cm-search-product-card__name {
    color: #1f2933;
    font-size: 14px;
}

.cm-search-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
}

.cm-search-product-card__price strong {
    color: var(--primary);
    font-size: 15px;
}

.cm-search-product-card__price del {
    color: #9ca3af;
    font-size: 12px;
}

.cm-search-product-card__badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    padding: 3px 7px;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    background: #dcfce7;
    border-radius: 999px;
}

@media (max-width: 767px) {
    .cm-search-canvas {
        width: 100vw !important;
    }

    .cm-search-canvas__body {
        height: calc(100dvh - 118px);
        padding: 12px;
    }

    .cm-search-product-card {
        grid-template-columns: 74px minmax(0, 1fr);
        min-height: 98px;
    }

    .cm-search-product-card__image {
        width: 74px;
        height: 74px;
    }

    .cm-search-product-card__name {
        font-size: 13px;
    }
}
