.produktfilter-sidebar {
    background: #ebe9e5; /* Beige/Grau wie im Screenshot */
    padding: 20px;
    border-radius: 4px;
}

/* Filter Gruppen */
.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-of-type {
    margin-bottom: 0;
}

/* Filter Titel */
.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

/* Input & Select Felder */
.filter-select,
.filter-input {
    width: 100%;
    padding: 10px 12px !important;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #666;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

/* Select Dropdown-Pfeil */
.filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

/* Hover & Focus States */
.filter-select:hover,
.filter-input:hover {
    border-color: #ff6600;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Placeholder Styling */
.filter-input::placeholder {
    color: #999;
}

/* Dimension Fields (3 Inputs nebeneinander) */
.dimension-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dimension-fields input {
    text-align: center;
    padding: 10px 5px;
}

/* ================================================
   FILTER BUTTONS
   ================================================ */

.filter-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-submit-btn,
.filter-reset-btn {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

/* Submit Button (Orange) */
.filter-submit-btn {
    background: #ff6600;
    color: #fff;
    border: none;
	
	text-transform: uppercase;
}

.filter-submit-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.filter-submit-btn:active {
    transform: translateY(0);
}

/* Reset Button */
.filter-reset-btn {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.filter-reset-btn:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #999;
}

/* Auto-Submit Modus (Buttons verstecken) */
.filter-actions.auto-submit {
    display: none;
}

/* ================================================
   ERGEBNISSE ANZEIGE
   ================================================ */

.results-count {
    margin: 0 0 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #ff6600;
    font-size: 14px;
    color: #666;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.no-results p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .produktfilter-sidebar {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .filter-group {
        margin-bottom: 15px;
    }
    
    .filter-actions {
        margin-top: 20px;
    }
}

/* ================================================
   LOADING STATE (optional)
   ================================================ */

.produktfilter-sidebar.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.produktfilter-sidebar.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-reset-btn {
    flex: 1;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
	text-transform: uppercase;
}

.filter-reset-btn:hover {
    background: #e0e0e0;
}

.filter-submit-btn {
    flex: 1;
}
