.price-card {
    width: 100%;
    border-radius: 8px;
    border: 0.3px solid #ACACAC;
    background: #F8F8F8;
    display: flex
;
    padding: 24px;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 24px;
    align-self: stretch;
}


.icon-container {
    background-color: #f9f1f1;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container svg {
    width: 18px;
    height: 18px;
    fill: #333;
}

.price-info {
    display: flex
;
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.price-title {
        margin: 0;
    color: #000;
    text-align: right;
    font-family: IRANYekanXFaNum;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 160.6%;
}

.product-info {
     margin: 0;
    color: #000;
    text-align: right;
    font-family: IRANYekanXFaNum;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.6%;
}

@media(max-width: 565px) {
    .price-card {
        padding: 16px;
    }
    .product-info {
        color: #999;
    }
}