/* Smart Cascading Woo Filter - Live Search Input Styles */
.scwf-search-input {
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 6px;
    font-size: 0.813rem;
    line-height: 1.4;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease-in-out;
    box-sizing: border-box;
}

.scwf-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.scwf-search-input:disabled {
    background-color: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Responsive optimization for mobile fallback */
@media (max-width: 640px) {
    .scwf-search-input {
        font-size: 14px;
        padding: 8px 10px;
    }
}