.latest-products-swiper {
    position: relative;
    padding: 10px 0 30px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px 12px;
    width: 310px;
    height: 100%; /* Belangrijk voor gelijk maken */
    min-height: 400px; /* Of stel zelf een passende vaste hoogte in */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.product-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFEFE6;
    color: #f37021;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.product-label-extra {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #26C281;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.product-card img {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    margin: 10px 0 10px;
}

.product-title {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin: 0;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f37021;
    width: 32px;
    height: 32px;
    background: #fff;
    top: 40%;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: 24px;
}


@media (max-width: 768px) {
    .swiper-slide.product-card {
        width: 100% !important;
    }
}
