/* ============================= */
/* SEARCH GROUP (SAFARI SAFE) */
/* ============================= */

.search-group {
    display: flex;
    align-items: center;
}

/* INPUT */
.search-input {
    height: 42px;
    line-height: 42px;
    padding: 0 16px;
    border-radius: 30px 0 0 30px;
    -webkit-appearance: none;
    appearance: none;
}

/* SEARCH BUTTON */
.search-btn {
    height: 42px;
    width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    margin: 0;
    border-radius: 0 30px 30px 0;
    /* ✅ DEFAULT: rounded */
    -webkit-appearance: none;
    appearance: none;
}

/* ❌ JIKA ADA RESET → SEARCH JADI TIDAK ROUNDED */
.search-group .search-reset-btn+.search-btn,
.search-group .search-btn:not(:last-child) {
    border-radius: 0;
}

/* RESET BUTTON */
.search-reset-btn {
    height: 42px;
    width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff4d4f;
    color: #fff;
    border: none;
    margin: 0;
    border-radius: 0 30px 30px 0;
    -webkit-appearance: none;
    appearance: none;
}

/* ICON */
.search-btn i,
.search-reset-btn i {
    font-size: 14px;
    line-height: 1;
}

/* ============================= */
/* DISABLE HOVER RESET BUTTON */
/* ============================= */

.search-reset-btn:hover,
.search-reset-btn:focus,
.search-reset-btn:active,
.search-reset-btn:focus-visible {
    background: #ff4d4f;
    /* warna tetap */
    color: #fff;
    box-shadow: none;
    outline: none;
    transform: none;
}