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

.con-productlist-row {
    flex-direction: row;
}

.con-productlist-column {
    flex-direction: column;
    align-items: center;
}

.con-productlist-column .con-product {
    max-width: var(--con-card-max-width, 600px);
    width: 100%;
}

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

.con-product-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Abstand zwischen Preis und Button */
}

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

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

.con-cta-btn-wrapper {
    margin-top: 0;
    text-align: right;
}

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

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

.con-product-price-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

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

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

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

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