.product-card {
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card.is-clickable:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 90, 73, .42);
    box-shadow: 0 18px 38px rgba(16, 44, 38, .12);
}

.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 6;
    border-radius: inherit;
}

.product-card-link:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
}

.product-card .card-actions {
    position: relative;
    z-index: 7;
}

.full-access-link {
    color: var(--green);
}

.round-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
