.searchform {
    position: relative;
    --wd-search-btn-w: var(--wd-form-height);
    --wd-form-height: 46px;
}

.searchform input[type="text"] {
    padding-right: var(--wd-search-btn-w);
}

.searchform .searchsubmit {
    --btn-color: var(--wd-form-color, currentColor);
    --btn-bgcolor: transparent;
    position: absolute;
    inset-block: 0;
    right: 0;
    padding: 0;
    width: var(--wd-search-btn-w);
    min-height: unset;
    border: none;
    box-shadow: none;
    font-size: 0;
    background: transparent;
}

/* ❌ полностью убираем woodmart-иконки */
.searchform .searchsubmit::before,
.searchform .searchsubmit::after {
    content: none !important;
    display: none !important;
}

/* ❌ если вдруг остались иконки-шрифты */
.searchform .searchsubmit i,
.searchform .searchsubmit span::before,
.searchform .searchsubmit span::after {
    display: none !important;
}

/* твои img (если не используешь — можно удалить) */
.searchform .searchsubmit img {
    max-width: 24px;
    transition: opacity .2s ease;
}

/* loader (оставляем, он норм) */
.searchform .searchsubmit::before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: calc((var(--wd-form-height) / 2.5) / -2);
    margin-left: calc((var(--wd-form-height) / 2.5) / -2);
    opacity: 0;
    transition: opacity .1s ease;
    content: "";
    display: inline-block;
    width: calc(var(--wd-form-height) / 2.5);
    height: calc(var(--wd-form-height) / 2.5);
    border: 1px solid rgba(0,0,0,0);
    border-left-color: currentColor;
    border-radius: 50%;
    animation: wd-rotate 450ms linear infinite;
}

/* loading state */
.searchform.search-loading .searchsubmit::before {
    opacity: 1;
}