/* تنسيق خاص لأزرار إضافة للسلة في قسم المنتجات ذات الصلة */
.related-products .btn-add-cart {
    font-size: 0.8rem;
    padding: 5px 10px;
    width: 100%;
    flex: 1;
    background-color: var(--primary-color);
    color: #000000;
    border: none;
}

.related-products .product-actions {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* محاذاة سعر المنتج للتناسق مع باقي الصفحات */
.related-products .product-price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
    text-align: right;
    direction: ltr;
    float: right;
}

.related-products .product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.related-products .current-price {
    color: #000;
    font-weight: bold;
    margin-left: 10px;
}

.related-products .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
}
