/* Filter-Sektion */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group strong {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.filter-group label {
    margin-right: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.filter-group input {
    margin-right: 5px;
}

#reset-filters {
    background-color: #466bb4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
    box-shadow: 0 20px 30px rgba(125,147,178,.3);
}

#reset-filters:hover {
    background: #244a96;
    box-shadow: 0 10px 20px rgba(125,147,178,.5);
}

/* Geräte-Liste */
#device-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px 20px;
    margin: 15px;
}

.device {
    background: white;
    padding: 0px 10px;
    marging: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    box-shadow: 0 8px 15px rgba(125,147,178,.25);
}

.device:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(125,147,178,.15);
}

.device-title {
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-size: 28px;
}

.device-info {
    font-size: 0.85em;
    color: #777;
}

.device-features {
    margin-top: 25px;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.device-features p {
    margin: 15px;
    line-height: 24px;
    text-align: left;
}

.device-features--not-available {
    color: #ceddf2;
}

.device-head {
    background-color: #5578bc;
    border-radius: 8px 8px 0px 0px;
    padding: 40px 20px 25px;
    margin: 0px -10px;
}

.device-img {
    display: flex;
    margin: auto;
}

.device-price {
    font-size: 40px;

    /* line-height: 58px */
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
}

/* Status-Meldungen */
#no-results {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    color: #666;
}

.counter {
    padding-left: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #3498db;
}

h4 {
    font-size: 24px;
}

h4,
h5 {
    line-height: 36px;
    font-weight: 400;
    color: #4c6280;
    margin: 0;
}


