.search form {
    --border-color: #b2b2b2;
    --border: 1px solid var(--border-color);

    height: 29px;
    display: flex;
    margin-top: 0.4375rem;
    gap: 0;
}

.search button[type='submit'] {
    cursor: pointer;
    background: none;
    padding: 0;
    min-width: unset;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border);
    border-right: none;
}

.search button[type='submit']::after {
    display: none;
}

.search input {
    border: var(--border);
    border-left: none;
    outline: none !important;
    appearance: none;
    background: none;
    color: #fff;
    cursor: pointer;
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    line-height: 18.5714px;
    font-family:
        soleil,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    padding: 0;
    width: 100%;
    transition: var(--base-transition);
    margin-left: -1px; /* Removes gap between input and button borders */
    border-radius: 0;
}

.search input::placeholder {
    color: #fff;
    font-size: 14px;
}

.search input:focus::placeholder {
    color: transparent;
}

.search form input:focus-visible {
    border: var(--border);
    border-color: white;
}

@media (width <= 430px) {
    .livesearch .product-name,
    .livesearch .view-all-footer {
        line-height: 19.512px;
    }

    .livesearch .products-container {
        grid-template-columns: 1fr 0.9fr;
    }
}
