.con-productlist {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.con-product {
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 2px 2px 5px #eee;
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.con-product img {
    max-width: 100%;
    height: auto;
}

.con-product h3 {
    margin-top: 10px;
}

/* Button nach unten schieben */
.con-cta-btn-wrapper {
    margin-top: auto;
    text-align: right;
}

.con-cta-btn {
    color: #333333;
    text-decoration: none;
    padding: 10px;
    background-color: #FFD315;
    border-radius: 4px;
    display: inline-block;
}

.con-cta-btn:hover {
    background-color: #FBB801;
}

.con-product-price {
    color: #FBB801;
    text-align: right;
    font-size: 25px;
    font-weight: bold;
}

.con-image {
    max-width: 320px;
    max-height: 250px;
}

/* Ab 600px: 2 Produkte pro Zeile */
@media (min-width: 600px) {
    .con-product {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* Ab 900px: 3 Produkte pro Zeile */
@media (min-width: 900px) {
    .con-product {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}