.irenfix-header-search {
    position: relative;
}

.irenfix-header-search .irenfix-search-suggestions {
    position: absolute;
    z-index: 1090;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: 720px;
    max-height: min(31rem, calc(100vh - var(--irenfix-header-height) - 2rem));
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(45, 47, 51, 0.1);
    border-radius: 0.9rem;
    background: #fff;
    box-shadow: 0 1rem 2.8rem rgba(22, 23, 26, 0.16);
}

.irenfix-header-search .irenfix-search-suggestions[hidden] {
    display: none;
}

.irenfix-header-search .irenfix-search-status {
    display: block;
    padding: 1rem;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.7;
    text-align: center;
}

.irenfix-header-search .irenfix-search-status:empty {
    display: none;
}

.irenfix-header-search .irenfix-search-result {
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    min-height: 3.75rem;
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid rgba(45, 47, 51, 0.07);
    color: var(--irenfix-charcoal, #2d2f33);
    line-height: 1.5;
    text-decoration: none;
}

.irenfix-header-search .irenfix-search-result:hover,
.irenfix-header-search .irenfix-search-result.is-active {
    color: var(--irenfix-gold-dark, #8f5e00);
    background: var(--irenfix-gold-soft, #fbf3df);
}

.irenfix-header-search .irenfix-search-result-icon {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border-radius: 0.65rem;
    color: var(--irenfix-gold-dark, #8f5e00);
    background: var(--irenfix-gold-soft, #fbf3df);
    font-size: 1rem;
}

.irenfix-header-search .irenfix-search-result-copy {
    display: block;
    min-width: 0;
}

.irenfix-header-search .irenfix-search-result-copy strong,
.irenfix-header-search .irenfix-search-result-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.irenfix-header-search .irenfix-search-result-copy strong {
    font-size: 0.86rem;
}

.irenfix-header-search .irenfix-search-result-copy small {
    margin-top: 0.1rem;
    color: #7a8494;
    font-size: 0.7rem;
}

.irenfix-header-search .irenfix-search-result-kind {
    display: inline-block;
    padding: 0.2rem 0.45rem;
    border-radius: 2rem;
    color: #7a8494;
    background: #f3f4f6;
    font-size: 0.62rem;
    white-space: nowrap;
}

.irenfix-header-search .irenfix-search-more {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.7rem;
    background: #fafafa;
}

.irenfix-header-search .irenfix-search-more a {
    display: block;
    padding: 0.55rem;
    border-radius: 0.6rem;
    color: var(--irenfix-gold-dark, #8f5e00);
    background: #fff;
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .irenfix-header-search .irenfix-search-suggestions {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .irenfix-header-search .irenfix-search-suggestions {
        max-height: min(24rem, calc(100vh - var(--irenfix-header-height) - 1rem));
    }

    .irenfix-header-search .irenfix-search-result {
        grid-template-columns: 2.1rem minmax(0, 1fr);
    }

    .irenfix-header-search .irenfix-search-result-icon {
        width: 2.1rem;
        height: 2.1rem;
    }

    .irenfix-header-search .irenfix-search-result-kind {
        display: none;
    }
}
