.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: 0.3s;
    gap: 2.5em;
}
.card{
    border:thin solid #e1e1e1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    width: 14rem;
    padding: 10px;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.card:hover{
    background-color: #f2f1f0;
    border:thin solid #e1e1e1;
    box-shadow: 5px 10px 10px silver;
    
}
.card img{
    max-width: 90%;
}
.card h4{
    margin-top: 0.8rem;
}
.card h5{
    font-size: 1rem;
    margin-top: 0.3rem;
    color: #514b45b8;
}
.card h6{
    font-size: 0.6rem;
    margin-top: 0.3rem;
    color: #514b45b8;
}

img.produkt-foto{
    max-width: 300px;
}
.produkt{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.produkt h1{
    font-size: 2.5rem;
}

ul.alle-produkte{
    font-size: 1.2rem;
    list-style: none;
}
ul.alle-produkte li{
    border-top: thin solid var(--primary);
}
ul.alle-produkte li a{
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 10px;
}
ul.alle-produkte li a:hover{
    background-color: #ffffff;
}
.produktinfo {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 60%;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.sub-produktinfo {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.produkttitel{
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}
.foto{
    /* flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 40%; */
    text-align: center;
}
.info{
    flex-basis: 40%;
    flex-grow: 1;
    flex-shrink:1 ;
    background-color: #d5d5d5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info ul{
    padding-left: 20px;
    margin-bottom: 30px;
}
.info h5{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
span.mwst {
    font-size: 0.6rem;
}
.dlg-box{
    text-align: center;
}
img.dlg-foto{
    max-width: 105px;
}
.produktmenu{
    flex-grow: 1;
    flex-wrap: wrap;
}
.produktmenu h3{
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-left: 10px;
}
.beschreibung{
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #d5d5d5;
    padding: 20px;
}
.lupe{
    width: 50px;
}

