.partners__item > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.popular-items__more {
    margin-top: 70px;
}

.header__search-btns {
    margin: auto 0;
    position: absolute;
    top: 1px;
    bottom: 1px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
}

.header__search-btn {
    margin: 0;
    position: relative;
    right: unset;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.header__search-remove {
    padding: unset;
    padding: 0 15px;
    border: unset;
    border-right: 1px solid #C9C9C9;
    background: unset;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__search-block {
    position: relative;
}

/* .header__search-block.active .header__search-results {
    display: block;
} */

.header__search-block.active .header__search-remove {
    opacity: 1;
    pointer-events: all;
}

.header__search-results {
    display: none;
    padding: 30px 10px 34px 30px;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: fit-content;
    background: #fff;
    border: 1px solid #C9C9C966;
    border-radius: 20px;
    box-shadow: 0px 8px 15px 0px #0000000F;
}

.header__search-list {
    padding-right: 16px;
    max-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--green) #F2F2F2;
}

.header__search-list::-webkit-scrollbar {
    width: 4px;
}

.header__search-list::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 5px;
}

.header__search-list::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 5px;
}

.header__search-img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.header__search-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
}

.header__search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__search-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__search-price {
    flex-shrink: 0;
}


