.shop-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 185px;
    height: auto;
    gap: .5rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;;
    cursor: pointer;
    padding: .3em;
    border-radius: 10px;
}

.shop-product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
 
.card-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: .3em;
    gap: .5em;
}

.shop-product-card .card-thumb{
    width: 184px;
    height: 184px;
    border-radius: .75rem;
    object-fit: cover;
    transition: transform .35s ease;
}
  
.shop-product-card .card-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.04em;
    color: #000;
}
