.product-card {height:100%;display:flex;flex-direction:column;gap:10px;}
.product-card a {text-decoration:none;color:inherit;}
.product-card .image {display:block;width:100%;aspect-ratio:1/1;overflow:hidden;}
.product-card .image img {width:100%;max-width:100%;aspect-ratio:1/1;transform:scale(1);transition:transform .8s ease-in-out;}
.product-card:hover .image img {transform:scale(1.2);}
.product-card .image-wrapper {position:relative;}
.product-card .name {display:-webkit-box;-webkit-box-orient:vertical;line-clamp:3;-webkit-line-clamp:3;overflow:hidden;text-overflow:ellipsis;}
.product-card .wishlist-fav {appearance:none;display:block;transform:scale(1);height:25px;width:25px;position:absolute;top:20px;right:20px;border:0;background-color:transparent;background-repeat:no-repeat;background-size:contain;background-position:center;transition:transform .25s ease-in-out;}
.product-card .wishlist-fav:hover {cursor:pointer;transform:scale(1.2);}
.product-card .wishlist-fav[data-in-wishlist="false"] {background-image:url('../icons/heart.svg');}
.product-card .wishlist-fav[data-in-wishlist="true"] {background-image:url('../icons/heart-filled.svg');}
.product-card .order-sample-button {appearance:none;padding:0;display:block;height:50px;width:50px;position:absolute;bottom:5px;right:5px;border:0;background-color:transparent;}
.product-card .order-sample-button::before {content:'';display:block;height:100%;width:100%;border-radius:100%;background-color:var(--black);transform:scale(1);transition:transform .25s ease-in-out;position:absolute;top:0;left:0;right:0;bottom:0;}
.product-card .order-sample-button::after {content:'';display:block;height:100%;width:100%;background-repeat:no-repeat;background-position:center;background-size:auto 50%;background-image:url('../icons/fabric.svg');position:absolute;z-index:1;top:0;left:0;right:0;bottom:0;}
.product-card .order-sample-button:not(:disabled):hover {cursor:pointer;}
.product-card .order-sample-button:not(:disabled):hover::before {transform:scale(1.1);}
.product-card .order-sample-button:disabled {opacity:0.5;}