File: /mnt/data/dreamssalon-wp/wp-content/plugins/dreamsalon-widgets/widgets/class-privacy-policy.php
<?php
/**
* DS Privacy Policy Widget
*
* @since 1.0.0
*/
namespace dreamsalonelementor\Widgets;
use Elementor\Widget_Base;
if (!defined('ABSPATH')) {
exit;
}
class DSPrivacyPolicy extends Widget_Base
{
public function get_name()
{
return 'dreamsalon-ds-privacy-policy';
}
public function get_title()
{
return __('DS Privacy Policy', 'dreamsalon_elementor');
}
public function get_icon()
{
return 'eicon-lock-user';
}
public function get_categories()
{
return ['dreamsalon'];
}
protected function _register_controls()
{
// For now, no editable controls — static layout.
}
protected function render()
{
?>
<!-- ✅ Start Content -->
<div class="content ds-privacy-policy">
<div class="container">
<!-- Privacy Item -->
<div class="row">
<div class="col-lg-10 mx-auto">
<p class="mb-3">
At Dream Salon, we are committed to protecting your privacy.
This policy outlines how we handle your information:
</p>
<h5 class="mb-3">Information We Collect</h5>
<ul class="list-styled mb-4 mb-lg-5">
<li class="mb-2 text-dark">
Personal Information:
<span class="text-body">
Name, email address, phone number, address, and payment details when you register, book a service, or make a purchase.
</span>
</li>
<li class="mb-2 text-dark">
Service Information:
<span class="text-body">
Booking history, preferred services, and reviews.
</span>
</li>
<li class="mb-2 text-dark">
Technical Information:
<span class="text-body">
IP address, browser type, device information, and cookies to enhance your experience.
</span>
</li>
<li class="mb-0 text-dark">
Vendor Data:
<span class="text-body">
Business name, location, service offerings, pricing, and payment details if you sign up as a vendor.
</span>
</li>
</ul>
<div class="mb-3">
<h5 class="mb-2">How We Use Your Information</h5>
<p class="mb-3">
We use the information we collect for the following purposes:
</p>
<ul class="list-styled mb-4 mb-lg-5">
<li class="mb-2">To create and manage your account</li>
<li class="mb-2">To process bookings, payments, and refunds</li>
<li class="mb-2">To connect users with salon vendors and services</li>
<li class="mb-2">To send updates, confirmations, or promotional messages</li>
<li class="mb-2">To improve our website and services through analytics</li>
<li class="mb-0">To ensure safety, security, and compliance with legal obligations</li>
</ul>
</div>
<div class="mb-3">
<h5 class="mb-2">Sharing Your Information</h5>
<p class="mb-3">
We do not sell your personal information. However, we may share your data with:
</p>
<ul class="list-styled mb-4 mb-lg-5">
<li class="mb-2 text-dark">
Salon Vendors:
<span class="text-body">To fulfill your booking or order requests</span>
</li>
<li class="mb-2 text-dark">
Service Providers:
<span class="text-body">Payment gateways, email services, analytics, and technical support tools</span>
</li>
<li class="mb-0 text-dark">
Legal Authorities:
<span class="text-body">When required to comply with the law or protect our rights</span>
</li>
</ul>
</div>
<div class="mb-3">
<h5 class="mb-2">Cookies & Tracking</h5>
<p class="mb-3">
Our website uses cookies and similar tracking technologies to:
</p>
<ul class="list-styled mb-4 mb-lg-5">
<li class="mb-2 text-body">Remember your preferences</li>
<li class="mb-2 text-body">Analyze user behavior and traffic</li>
<li class="mb-0">Improve website functionality and user experience</li>
</ul>
</div>
<div class="mb-3">
<h5 class="mb-2">Changes to This Policy</h5>
<p class="mb-0">
We may update this Privacy Policy occasionally. Any changes will be posted on this page with the revised date.
</p>
</div>
<div class="mb-0">
<h5 class="mb-3">Contact Us</h5>
<ul class="list-styled mb-0">
<li class="mb-0 text-body">
If you have any questions or concerns regarding this Privacy Policy,
please contact us at: <strong>[email protected]</strong>
</li>
</ul>
</div>
</div>
</div>
<!-- Privacy Item End -->
</div>
</div>
<!-- ✅ End Content -->
<?php
}
}