.search-page .listpage-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.search-page .product-list-grid {
  grid-template-columns: repeat(3, 1fr);
}

.search-page .listpage-toolbar {
    width: auto;
    padding-left: 0;
}

.search-page .listpage-sidebar {
    position: static;
}

.recent-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.recent-title {
    font-size: 18px;
    font-weight: 700;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.recent-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.recent-link {
    min-width: 0;
}

.recent-keyword {
    font-size: 18px;
    line-height: 1.4;
    min-width: 0;
    overflow-wrap: anywhere;
}

.recent-date {
    font-size: 14px;
    color: #858585;
    white-space: nowrap;
    justify-self: end;
}

.recent-remove {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    flex: 0 0 auto;
}

.recent-remove img {
    width: 20px;
    height: 20px;
    display: block;
}

.recent-clear-row {
    margin-top: 24px;
}

.btn-clear-all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    background: none;
    border: 0;
    font-size: 15px;
    cursor: pointer;
}

.btn-clear-all img {
    width: 24px;
    height: 24px;
    display: block;
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px
}

.suggest-title {
    font-size: 17px;
    font-weight: bold;
}

.chip-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chip {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background-color: #eaeaea;
}

.chip.is-active {
    border-color: var(--color-orange)
}

.sidebar-divider {
    height: 1px;
    border: 0;
    background: #d9d9d9;
    margin: 50px -26px;
}

.recent-empty {
    font-size: 15px;
    color: #5e5e5e;
}