DEFINITIONS
« Buyer » means the palladium branch
« Goods » means all objects sent to palladium branch by the seller.
« Seller » means the client co-contracting with palladium branch
« General Purchasing Conditions » means those general purchasing conditions applicable to the relationship between palladium branch and the seller.
« Date of payment » means the date palladium branch issues the payment
BASIC CONDITIONS
Goods must be delivered by the Seller to the Buyer's premises.
In accordance with legal provisions applicable to the fight against money laundering and legal compliance, the Seller may be required to give the Buyer a copy of his ID.
The Buyer advises the Seller to take pictures of the Goods before sending them in order to have additional justification.
The Seller must keep the shipping waybill, the unique justification testifying shipment was made to the Buyer.
The Buyer reserves all rights not to accept shipments that seem damaged, opened, or mishandled during transportation.
Such shipments shall be returned to the Seller without palladium liability being engaged.
The Buyer can only be held responsible for orders made by representatives legally empowered to carry out purchase contracts.
The Seller can identify the Goods he wants to sell by creating a list via our web application or mobile application.
The Seller is responsible for packing the goods and delivering them no later than four (4) business days after the cart has been submitted
{
if (item.type === 'header') {
privacyHTML += `
${item.text}
`;
} else {
privacyHTML += `
${item.text}
`;
}
});
document.getElementById('privacy_content').innerHTML = privacyHTML;
// Update Shipping
let shippingHTML = '';
shippingContent.forEach(item => {
if (item.type === 'header') {
shippingHTML += `
${item.text}
`;
} else {
shippingHTML += `
${item.text}
`;
}
});
document.getElementById('shipping_content').innerHTML = shippingHTML;
// Update Terms and Conditions
let termsHTML = '';
termsContent.forEach(item => {
if (item.type === 'header') {
termsHTML += `
${item.text}
`;
} else {termsHTML += `
${item.text}
`;
}
});
document.querySelector('.section-content:nth-child(3) .content-block').innerHTML = termsHTML;
// Update Cancellation Policy
let cancellationHTML = '';
cancellationContent.forEach(item => {
if (item.type === 'header') {
cancellationHTML += `
${item.text}
`;
} else {
cancellationHTML += `
${item.text}
`;
}
});
document.querySelector('.section-content:nth-child(4) .content-block').innerHTML = cancellationHTML;
// Update Merchant and Serviced Priced
let merchantHTML = '';
merchantContent.forEach(item => {
if (item.type === 'header') {
merchantHTML += `
${item.text}
`;
} else {
merchantHTML += `
${item.text}
`;
}
});
document.querySelector('.section-content:nth-child(5) .content-block').innerHTML = merchantHTML;
// Update Refund Policy
let refundHTML = '';
refundContent.forEach(item => {
if (item.type === 'header') {
refundHTML += `
${item.text}
`;
} else {
refundHTML += `
${item.text}
`;
}
});
document.querySelector('.section-content:nth-child(6) .content-block').innerHTML = refundHTML;
// Update headers
document.getElementById('privacy_header').textContent = currentLanguage === 'ar' ? 'سياسة الخصوصية' : 'PRIVACY POLICY';
document.getElementById('shipping_header').textContent = currentLanguage === 'ar' ? 'الشحن' : 'SHIPPING';
document.getElementById('terms_header').textContent = currentLanguage === 'ar' ? 'الشروط والأحكام' : 'TERMS AND CONDITIONS';
document.getElementById('cancellation_header').textContent = currentLanguage === 'ar' ? 'سياسة الإلغاء' : 'CANCELLATION POLICY';
document.getElementById('merchant_header').textContent = currentLanguage === 'ar' ? 'التاجر والأسعار المقدمة' : 'MERCHANT AND SERVICED PRICED';
document.getElementById('refund_header').textContent = currentLanguage === 'ar' ? 'سياسة الاسترجاع' : 'REFUND POLICY';
}
// Initialize content
document.addEventListener('DOMContentLoaded', function() {
updateContent();
});