.storefront-search .body-form {
    position: relative;
    overflow: visible;
}

.storefront-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1200;
    max-height: min(520px, 68vh);
    overflow-y: auto;
    border: 1px solid #cdbba9;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(49, 31, 18, .24);
}

.main_header .storefront-search .storefront-search-result {
    min-height: 72px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #eee5dc;
    color: #34271d;
    text-align: left;
}

.storefront-search-result:last-child { border-bottom: 0; }
.storefront-search-result:hover,
.storefront-search-result.is-active { background: #f8f1ea; color: #2f2117; }
.storefront-search-result img { width: 56px; height: 56px; object-fit: contain; background: #fbf8f4; }
.main_header .storefront-search .storefront-search-result > span { min-width: 0; text-align: left; }
.storefront-search-result strong {
    display: block;
    overflow: hidden;
    color: inherit;
    font-family: "OpenSans-SemiBold", Arial, sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.storefront-search-result small {
    display: block;
    margin-top: 4px;
    color: #76685d;
    font-family: "OpenSans-Regular", Arial, sans-serif;
    font-size: .76rem;
}
.main_header .storefront-search .storefront-search-price { display: grid; justify-items: end; gap: 2px; white-space: nowrap; }
.storefront-search-price del { color: #88796d; font-size: .72rem; }
.storefront-search-price b { color: #b8202e; font-family: "OpenSans-Bold", Arial, sans-serif; }
.storefront-search-loading,
.storefront-search-empty { padding: 20px; color: #66584c; text-align: center; }
.storefront-search-status {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 48em) {
    .storefront-search-results { top: calc(100% + 2px); max-height: min(420px, 60vh); }
    .storefront-search-result {
        min-height: 64px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 8px 9px;
    }
    .storefront-search-result img { width: 48px; height: 48px; }
    .storefront-search-price { justify-items: end; margin-top: 0; }
}
