.rpb-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:5px;
    margin:30px 0;
}

.rpb-card{
    background:#fff;
    border-radius:16px;
    padding:5px;
    transition:.25s ease;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.rpb-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.rpb-thumb{
    background:#f7f7f7;
    border-radius:12px;
    padding:12px;
    margin-bottom:12px;
}

.rpb-thumb img{
    width:100%;
    height:auto;
    object-fit:contain;
}

.rpb-title{
    font-size:14px;
    line-height:1.7;
    color:#222;
    margin:8px 0 6px;
    min-height:48px;
}

.rpb-price {
    font-weight: 600;
    color: #c41230;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #00000020;
    padding-top: 12px;
}
.gheymatlabel {
    color: #3a3a3a;
    font-size: 12px;
}
/* موبایل */
@media (max-width:480px){
    .rpb-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
}