.search-form {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1200;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(218, 37, 29, 0.35);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 280px;
    overflow-y: auto;
}

.search-suggestions li {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.35;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-suggestions li:hover,
.search-suggestions li.autocomplete-active {
    background: rgba(218, 37, 29, 0.08);
    color: #111;
}

.box-search.is-mobile .search-suggestions {
    left: 10px;
    right: 10px;
}
