
.product-card {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: solid 1px #8193ae1f;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    gap: 2px;
}

.product-card-img-cntnr {
    height: 250px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: 100% 100%;
}

.product-card-img-cntnr img {
    float: center;
    clear: both;
    height: 100%;
    width: 100%;
    object-fit: contain;
    backdrop-filter: blur(30px);
}

.product-card-det-cntnr {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.product-card-det {
    padding: 10px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.product-card-decription {
    font-size: 0.9375rem;
    color: #2f4f4f;
}

.product-card-km-link {
    border-top: 1px solid #8193ae1f;
    padding: 10px 15px 15px 15px;
    width: 100%;
}

.product-card-km-link button{
    color: dodgerblue;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9375rem;
}

.product-card-km-link button i {
    transition: 0.2s;
    padding-left: 4px;
}

.product-card:hover .product-card-km-link button i {
    padding-left: 6px;
}

.product-card:hover {
    background-color: #fafafa;
}
