Server : LiteSpeed System : Linux in-mum-web1743.main-hosting.eu 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64 User : u993087259 ( 993087259) PHP Version : 8.2.29 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /home/u993087259/domains/naturalsveda.in/public_html/ |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shipping Policy</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Core Style CSS -->
<?php
include "Header-Script.php";
?>
</head>
<body>
<!-- Header Area Start -->
<?php
include "Header.php";
?>
<!-- Header Area End -->
<div class="refund-policy text-center my-5">
<div class="container">
<h1>Shipping Policy</h1>
<p>The orders for the user are shipped through registered domestic courier companies and/or speed post only. Orders are shipped within <strong>3 days</strong> from the date of the order and/or payment or as per the delivery date agreed at the time of order confirmation, subject to courier company/post office norms.</p>
<p><strong>Shipment will be delivered successfully within 7 days of dispatch if no discrepancies arise.</strong></p>
<p>The Platform Owner shall not be liable for any delay in delivery by the courier company/postal authority. Delivery of all orders will be made to the address provided by the buyer at the time of purchase.</p>
<p>Delivery of our services will be confirmed on your email ID as specified at the time of registration.</p>
<p>If there are any shipping cost(s) levied by the seller or the Platform Owner (as the case may be), the same is <strong>not refundable</strong>.</p>
</div>
</div>
<!-- Footer Area Start -->
<?php
include "Footer.php";
?>
<!-- Footer Area End -->
<?php
include "Footer-Script.php";
?>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script>
$(document).ready(function() {
$(".favorite-btn").click(function() {
const productId = $(this).data("id");
const productName = $(this).data("name");
// Get existing favorites from localStorage
let favorites = JSON.parse(localStorage.getItem("favorites")) || [];
// Add product if not already in favorites
if (!favorites.some(item => item.id === productId)) {
favorites.push({
id: productId,
name: productName
});
localStorage.setItem("favorites", JSON.stringify(favorites));
alert(`${productName} added to your favorites.`);
} else {
alert(`${productName} is already in your favorites.`);
}
});
});
</script>
</body>
</html>