/* Smart Cascading Woo Filter - Minimal Template */
.scwf-filter-wrapper.scwf-filter-template-minimal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-filter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-dropdowns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-field-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-select {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.938rem;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2064748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-select:disabled {
    background-color: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-filter-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-btn-reset {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-btn-reset:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-btn-submit {
    background: #2563eb;
    color: #ffffff;
}

.scwf-filter-wrapper.scwf-filter-template-minimal .scwf-btn-submit:hover {
    background: #1d4ed8;
}

/* Spinner loader */
.scwf-spinner {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: scwf-spin 0.6s linear infinite;
}

@keyframes scwf-spin {
    to { transform: rotate(360deg); }
}