.artikel-box {
    padding: 10px;
    margin-bottom: 20px;
	justify-content: flex-start;
	display:flex;
	gap: 20px;                /* Abstand zwischen Bild und Text */
	flex-direction: row;   /* Inhalte untereinander */
	align-items: flex-start;  /* Oben bündig */
}


.artikel-bild{
	width: 400px;
    height: 250px;
    overflow: hidden; /* Überstehendes ausblenden */
    display: flex;
    justify-content: center; /* horizontal in der Mitte */
    align-items: center;     /* vertikal in der Mitte */
	
	
	
}

.artikel-bild img {
    width: 400px;
    height: auto;
    display: block;
    margin-bottom: 15px;
	margin: 15px 0;
}


.artikel-texte{
    height: auto;
    display: flex;
    margin-bottom: 15px;
	margin: 15px 0; 
	flex-direction: column;   /* Inhalte untereinander */
    justify-content: flex-start;

}


.artikel-auswahl {
    margin: 15px 0;
}

.add-to-cart-button {
    background-color: #333;
    color: white;
    padding: 10px auto;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: start-flex-start;
    gap: 10px; /* Abstand zwischen Icon und Text */

}

.add-to-cart-button:hover
{
    background-color: #556;
	  color: #ffcc00;
}

.button-icon {
    width: 20px;
    height: 20px;
}
