/* Theme ::after is niet klikbaar (staat buiten de <a>); visueel identiek via span in de link */
.product-item::after,
.rental-item::after {
    display: none !important;
    content: none !important;
}

.product-link,
.rental-link {
    position: static;
}

.product-card-more-info {
    position: absolute;
    bottom: -20px;
    left: 0;
    margin-left: 20px;
    margin-top: -20px;
    background: #000;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
    padding: 0 55px 0 20px;
    width: auto;
    clip-path: polygon(0% 0%, 0% 220px, 90% 0%);
    -webkit-clip-path: polygon(0% 0%, 0% 220px, 90% 0%);
    height: 40px;
    line-height: 40px;
    z-index: 1;
    transition: background 0.3s;
    cursor: pointer;
}

.product-item:hover .product-card-more-info,
.rental-item:hover .product-card-more-info {
    background: #b01702;
}
