.producten-home-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 1.5rem;
}

.producten-home-wrapper .single-product {
    display: flex;
    flex-direction: column;
}

.producten-home-wrapper .single-product .product-image {
    order: 1;
    background-color: var(--secondary-color-superlight);
    border-radius: 0.625rem;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.producten-home-wrapper .single-product .product-image img {
    aspect-ratio: 1 / 1;
    border-radius: 0.625rem;
}

.producten-home-wrapper .single-product .product-image a {
    display: contents
}

.producten-home-wrapper .single-product .product-title {
    order: 3;
}

.producten-home-wrapper .single-product .product-title h3 {
    font-size: 14px;
    line-height: normal;
    min-height: 34px;
    margin-bottom: 0;
    min-height: 34px;
}

.producten-home-wrapper .single-product:hover .product-title h3 a {
    text-decoration: underline;
}

.producten-home-wrapper .single-product .product-title h3 a {
    text-decoration: none;
    font-size: 14px;
}

.producten-home-wrapper .single-product .current-color {
    order: 4;
    color: var(--secondary-color);
    font-size: 12px;
    line-height: normal;
}

.producten-home-wrapper .single-product .other-colors {
    order: 2;
    display: flex;
    gap: 7px;
    margin: 4px 0;
    align-items: center;
}

.producten-home-wrapper .single-product .other-colors .single-color:not(.extra-colors) {
    position: relative;
    height: 24px;
    width: 24px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
}

.producten-home-wrapper .single-product .other-colors .single-color:not(.extra-colors):hover {
    border: 1px solid rgb(0, 0, 0);
}

.producten-home-wrapper .single-product .other-colors .single-color a {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%
}

.producten-home-wrapper .single-product .other-colors .single-color img {
    border-radius: 50%;
}

.producten-home-wrapper .single-product .price {
    font-size: 14px;
    font-weight: 500;
    order: 5;
}

.producten-home-wrapper .single-product .price sup {
    bottom: 2px;
}

.producten-home-wrapper .single-product .price.sale .saleprice {
    color: #777;
    padding-right: 10px;
}

.producten-home-wrapper .single-product .price.sale .saleprice span, .producten-home-wrapper .single-product .price.sale .saleprice sup {
    text-decoration: line-through;
}

.producten-home-wrapper .single-product .price.sale ins span {
    color: #AE471E
}

.producten-home-wrapper .product-image:hover .atc-custom {
    display: revert;
    transition: visibility 0s, opacity 0.5s linear;
}

.producten-home-wrapper .atc-custom {
    display: none;
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--primary-accent-1-superlight);
    border-radius: 100%;
    transition: visibility 0s, opacity 0.5s linear;
}

.producten-home-wrapper .atc-custom a.link{
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 21px 12px;
}

@media screen and (max-width: 1356px) { /* Gp mobile to tablet breakpoint */
     .producten-home-wrapper .single-product .other-colors .single-color:nth-child(5),
     .producten-home-wrapper .single-product .other-colors .single-color:nth-child(6){
        display: none;
    }
}

@media screen and (min-width: 769px) { /* Gp tablet to desktop breakpoint */
    .producten-home-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 1.5rem;
    }
    .producten-home-wrapper .single-product {
        gap: 10px;
    }
    .producten-home-wrapper .single-product .other-colors .single-color:not(.extra-colors) {
        position: relative;
        height: 40px;
        width: 40px;
        border: 1px solid rgba(0, 0, 0, 0);
        border-radius: 50%;
    }
    .producten-home-wrapper .single-product .product-title h3 {
        min-height: 60px;
    }
    .producten-home-wrapper .single-product .product-title h3 a {
        font-size: 1.5rem;
    }
    .producten-home-wrapper .single-product .price {
        font-size: 20px;
        order: 5;
    }
    .producten-home-wrapper .single-product .price sup {
        bottom: 4px;
    }
    .producten-home-wrapper .single-product .product-title {
        order: 2;
    }
    .producten-home-wrapper .single-product .product-image {
        order: 1;
    }
    .producten-home-wrapper .single-product .current-color {
        order: 3;
    }
    .producten-home-wrapper .single-product .other-colors {
        order: 4;
        margin: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .producten-home-wrapper .single-product .product-title h3 a {
        font-size: 16px;
    }
    .producten-home-wrapper .single-product .other-colors .single-color:not(.extra-colors) {
        height: 24px;
        width: 24px;
    }
}
