.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
}
.product-card__image img {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    object-fit: cover;
}
.product-card__label {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #D80000;
    color: white;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 1;
}
.product-card__image {
    position: relative;
}
.product-card__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
}
.product-card__excerpt {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.4;
}
.product-card__specs {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0.5rem;
}
.product-card__price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 18px;
}
.product-card a {
    margin-top: 0.5rem;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}
.product-card__title:hover {
    color: #D80000;
}
.product-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}
.button-bekijken {
    background: #000;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    padding: 12px;
}
.button-bekijken:hover {
    background: #D80000;
    color: #fff !important;
}
@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}








/* Load more container */
.button-load-more-container{
    display: flex;
    justify-content: center;
    margin: 48px auto;
}

/* Load more button */
#load-more{
    appearance: none;
    border: 1.5px solid #111;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 14px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .12s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Hover */
#load-more:hover{
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
    transform: translateY(-1px);
}

/* Active (click) */
#load-more:active{
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* Focus (accessibility) */
#load-more:focus{
    outline: none;
}
#load-more:focus-visible{
    box-shadow: 0 0 0 4px rgba(216, 0, 0, .18), 0 10px 24px rgba(0,0,0,.10);
    border-color: #D80000;
}

/* Optional: red accent on hover instead of black */
#load-more.is-accent:hover{
    background: #D80000;
    border-color: #D80000;
}

/* Loading state (add class via JS if you want) */
#load-more.is-loading{
    pointer-events: none;
    opacity: .75;
}

/* Small spinner */
#load-more.is-loading::after{
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-top-color: transparent;
    display: inline-block;
    animation: afSpin .7s linear infinite;
}

@keyframes afSpin{
    to { transform: rotate(360deg); }
}

/* Disabled (if you ever set disabled attribute) */
#load-more:disabled{
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Mobile: full width */
@media (max-width: 640px){
    #load-more{
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 14px;
    }
}