.product-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:12px;
    padding:12px;
    text-decoration:none;
    color:#222;
    transition:.2s;
    border:1px solid #eee;
}

.product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.pc-image{
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pc-image img{
    width:85%;
    object-fit:contain;
}

.pc-title{
    font-size:14px;
    margin:8px 0;
    line-height:1.6;
    height:40px;
    overflow:hidden;
}

.pc-price-box{
    margin-top:auto;
}

.pc-price-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.pc-price{
    font-weight:bold;
    font-size:15px;
}

.pc-old{
    text-decoration:line-through;
    color:#888;
    font-size:13px;
}

.pc-discount{
    background:#e53935;
    color:#fff;
    font-size:12px;
    padding:2px 8px;
    border-radius:20px;
}

.pc-unavailable{
    color:#e53935;
    font-weight:bold;
    font-size:14px;
}
.pc-meta-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:8px;
    gap:8px;
}

.pc-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:22px;
    padding:0 8px;
    border-radius:999px;
    font-size:12px;
    border:1px solid #eee;
    background:#f7f7f7;
    color:#333;
    line-height:1;
}

.pc-type{
    font-size:14px; /* ایموجی کمی بزرگتر */
    padding:0 10px;
}

.pc-multiplier{
    font-weight:700;
    background:#eef6ff;
    border-color:#d6eaff;
    color:#1b5eaa;
}
