.produktliste {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.produkt-card {
    background: #f9fbf6;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: all 0.2s;
}

.produkt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.produkt-bild img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.produkt-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.produkt-preis {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.anzahl-steuerung {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 10px;
    justify-items: center;
    margin-top: 10px;
}

.anzahl-steuerung button {
    background: #007acc;
    color: white;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.anzahl-steuerung button:hover {
    background: #005fa3;
}

.anzahl-steuerung .anzahl {
    width: 40px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0;
    background: white;
}


.zusammenfassung {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ccc;
}


/* Spinner entfernen in Chrome, Safari, Edge */
.anzahl::-webkit-inner-spin-button,
.anzahl::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Spinner entfernen in Firefox */
.anzahl[type=number] {
    -moz-appearance: textfield;
}

.produkt-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fdfdf8;
    border: 1px solid #ccc;
}

.produkt-tabelle th,
.produkt-tabelle td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.produkt-tabelle thead {
    background-color: #f1f1f1;
}

.produkt-tabelle tfoot {
    background-color: #fafafa;
    font-weight: bold;
}
