.schulung-shop-filter form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.schulung-shop-filter input[type="text"],
.schulung-shop-filter select,
.schulung-shop-filter input[type="number"] {
    flex: 1 1 220px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.price-filter {
    display: flex;
    gap: 10px;
    flex: 1 1 220px;
}

.price-filter input {
    flex: 1 1 100px;
}

.schulung-shop-filter button,
.reset-filter {
    flex: 1 1 150px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.schulung-shop-filter button {
    background-color: #0073aa;
    color: white;
    border: none;
}

.schulung-shop-filter button:hover {
    background-color: #005077;
}

.reset-filter {
    flex: 1 1 150px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    background-color: #ccc;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    height: 44px; /* gleiche Höhe wie Inputs */
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-filter:hover {
    background-color: #999;
    color: #fff;
}


@media (max-width: 768px) {
    .schulung-shop-filter form {
        flex-direction: column;
    }

    .price-filter {
        flex-direction: column;
    }
}



#schulung-shop-cart-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 9999;
}

#schulung-shop-cart-panel {
    position: fixed;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    z-index: 9998;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    border-radius: 12px;
}


