/* ==========================================================
   SiteSearch ST – Suchformular für Magix
   ========================================================== */

/* Gesamtes Suchformular */
.magix-search {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
}

/* Suchfeld */
.magix-search-input {
    width: 260px;
    height: 42px;
    padding: 0 24px;
    font: inherit;
    font-size: 0.9rem;
    color: #111;
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 24px;
    box-sizing: border-box;
    outline: none;
    opacity: 1;
    transition:
        width .25s ease,
        opacity .20s ease,
        padding .25s ease,
        border-width .25s ease;
}

/* Eingeklappt */
.magix-search-input.collapsed {
    width: 0;
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
    overflow: hidden;
    opacity: 0;
}

/* Fokus */
.magix-search-input:focus {
    outline: none;
}

/* Button */
.magix-search-button {
    height: 38px;
    padding: 0 16px;
    font: inherit;
    font-size: 0.9rem;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color .20s ease;
}

/* Hover */
.magix-search-button:hover {
    background: #222;
}