.wc-logic-filter-form {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.wc-logic-filter-form .form-row {
    margin-bottom: 15px;
}

.wc-logic-filter-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wc-logic-filter-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.wc-logic-filter-form .product-type-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wc-logic-filter-form .product-type-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.wc-logic-filter-form .product-type-checkboxes label {
    font-weight: normal;
    display: flex;
    align-items: center;
}

.wc-logic-filter-form .product-type-checkboxes input {
    margin-right: 8px;
}

.wc-logic-filter-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.wc-logic-filter-form button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.wc-logic-filter-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.no-products {
    text-align: center;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 5px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.error {
    color: #d9534f;
    padding: 10px;
    background: #f8d7da;
    border-radius: 3px;
}