/* Styling for the search menu item */
.menu-item-search-178f6fda {
    display: flex;
    align-items: center;
    list-style: none;
    margin-left: 10px;
}

.woo-search-wrapper-178f6fda {
    position: relative;
    display: flex;
    align-items: center;
}

.woo-search-form-178f6fda {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--e-global-color-a495fd4, #ccc);
    border-radius: 20px;
    padding: 2px 10px;
    transition: all 0.3s ease;
}

.woo-search-field-178f6fda {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 5px 10px !important;
    width: 200px;
    color: var(--e-global-color-text, #333);
}

.woo-search-submit-178f6fda {
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
    cursor: pointer;
    color: var(--e-global-color-text, #333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.woo-search-toggle-178f6fda {
    display: none;
    background: transparent !important;
    border: none !important;
    padding: 10px;
    cursor: pointer;
    color: var(--e-global-color-text, #333);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .woo-search-toggle-178f6fda {
        display: block;
    }
    
    .woo-search-form-178f6fda {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        z-index: 9999;
        width: 250px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .woo-search-wrapper-178f6fda.is-active .woo-search-form-178f6fda {
        display: flex;
    }
}
