.arp-box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin: 30px 0;
    direction: rtl;
}

.arp-title {
    font-weight: bold;
    border-right: 4px solid red;
    padding-right: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.arp-products {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.arp-product {
    text-align: center;
    width: 160px;
    position: relative;
}

.arp-product img {
    max-width: 100%;
    border-radius: 5px;
}

.arp-name {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

.arp-sale {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 0 5px 0 10px;
    font-weight: bold;
}

.arp-price {
    font-size: 14px;
    color: #222;
    margin-top: 5px;
    font-weight: bold;
}
