/* Floating Mobile Search */
.fms-search-wrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 9999;
}



.fms-search-toggle {
    background: #0d0d0d;
    color: #fff;
    border: none;
    border-radius: 10%;
    width: 50%;
    height: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.fms-search-form {
    display: none;
    margin-top: 10px;
}

.fms-search-input {
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    width: 200px;
    outline: none;
}

.fms-search-submit {
    display: none;
}

/* Only show on mobile */
@media (min-width: 768px) {
    .fms-search-wrapper { display: none; }
}
