.p-card{
    width: 100%;
    height: 100%;
    border: 1px solid #EBEBEB;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-rows: 65% 35%;
    cursor: pointer;
}
.p-card-top{
    width: 100%;
    height: 100%;
}
.p-card-top img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.product-title{
    flex-direction: column;
    display: flex;
    align-self: baseline;
    gap: .5rem;
}
.product-title > h6{
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
}
.product-rating{
    font-size: 12px;
    text-align: right;
    display: flex;
    column-gap: 1px;
}
.checked{
    color: var(--color-orange);
}
g .checked {
    fill: #FFB800;
    stroke: #FFB800;
}
@media(min-width:480px){
    .product-title > h6{
        font-size: 16px;
        line-height: 19px;
    }
}