/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 01 2026 | 08:04:28 */
/* === CUSTOM HEADER SEARCH (FORCED) === */

.custom-search .elementor-search-form__container {
    display: flex !important;
    align-items: center;
    background: #ffffff !important;
    border-radius: 50px !important;
    padding: 6px 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

/* Input */
.custom-search input[type="search"] {
    border: none !important;
    outline: none !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    flex: 1;
    border-radius: 50px !important;
}

/* Button */
.custom-search button {
    background: #0d6efd !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    cursor: pointer;
}

/* Hover */
.custom-search button:hover {
    background: #084298 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .custom-search input[type="search"] {
        font-size: 13px !important;
    }

    .custom-search button {
        padding: 8px 14px !important;
    }
}