Files
Commerce/custom/pages/cookies.php
“VeLiTi” ac59423a91 Add translations for cookie consent and footer links in multiple languages; update checkout consent messages
- Updated French, Italian, Dutch, and US English translations to include cookie consent messages and footer links.
- Modified checkout consent messages to include privacy policy acceptance.
- Added new pages for cookies, contact, returns, and complaints with appropriate styling and content.
- Updated routing in index.php to include new pages.
- Refactored image selection script to use click events instead of mouseover.
2025-10-21 14:59:21 +02:00

192 lines
4.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// Prevent direct access to file
defined(security_key) or exit;
?>
<?=template_header('Cookie Policy','')?>
<style>
.content-section {
background-color: var(--color-white);
padding: 60px 0;
min-height: 60vh;
}
.content-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 30px;
}
.content-section h1 {
color: var(--color-heading);
font-size: 2.8rem;
margin-bottom: 50px;
text-align: center;
padding-bottom: 20px;
border-bottom: 3px solid var(--color-primary);
font-weight: 700;
}
.content-section h2 {
color: var(--color-dark-blue);
font-size: 1.6rem;
margin-top: 50px;
margin-bottom: 25px;
font-weight: 600;
padding-left: 0;
text-align: left;
}
.content-section p {
line-height: 1.8;
color: var(--color-text-dark);
font-size: 15px;
margin-bottom: 20px;
}
.content-section ul {
list-style: none;
padding-left: 0;
margin: 15px 0;
margin-left: 30px;
}
.content-section ul li {
margin-bottom: 15px;
padding-left: 25px;
position: relative;
line-height: 1.8;
color: var(--color-text-dark);
font-size: 15px;
}
.content-section ul li::before {
content: "•";
position: absolute;
left: 0;
color: var(--color-primary);
font-weight: bold;
font-size: 18px;
}
.content-section strong {
color: var(--color-heading);
font-weight: 600;
}
.content-section a {
color: var(--color-primary);
text-decoration: none;
}
.content-section a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.content-section {
padding: 40px 0;
}
.content-section .container {
padding: 0 20px;
}
.content-section h1 {
font-size: 2rem;
margin-bottom: 35px;
}
.content-section h2 {
font-size: 1.3rem;
margin-top: 35px;
margin-bottom: 20px;
}
.content-section p {
font-size: 14px;
}
.content-section ul {
margin-left: 20px;
}
.content-section ul li {
padding-left: 20px;
font-size: 14px;
}
}
@media (max-width: 576px) {
.content-section {
padding: 30px 0;
}
.content-section .container {
padding: 0 15px;
}
.content-section h1 {
font-size: 1.6rem;
margin-bottom: 25px;
padding-bottom: 15px;
}
.content-section h2 {
font-size: 1.1rem;
margin-top: 30px;
margin-bottom: 15px;
}
.content-section p {
font-size: 13px;
}
.content-section ul {
margin-left: 15px;
}
.content-section ul li {
padding-left: 18px;
font-size: 13px;
margin-bottom: 10px;
}
}
</style>
<div class="content-section">
<div class="container">
<h1>Cookie Policy Morval Watches</h1>
<p>This website uses cookies. Cookies are small text files that are placed on your computer, tablet, or smartphone when you visit our website. They help us ensure the website functions properly, analyze usage, and provide you with a better user experience.</p>
<h2>1. Types of Cookies</h2>
<p>We use the following types of cookies:</p>
<ul>
<li><strong>Functional cookies:</strong> These are necessary for the proper functioning of the website. For example, they ensure that your preferences are remembered.</li>
<li><strong>Analytical cookies:</strong> With these cookies, we collect information about the use of the website (such as visitor numbers, pages visited, and click behavior). We do this with the help of tools such as Google Analytics. The data is processed anonymously.</li>
<li><strong>Marketing cookies:</strong> These cookies are used to show advertisements that match your interests. They also help us measure the effectiveness of our campaigns, for example via Facebook or Instagram.</li>
</ul>
<h2>2. Third-Party Cookies</h2>
<p>Some cookies are placed by third parties, such as social media platforms or advertising networks. We have no control over these cookies. We recommend that you consult the cookie policies of these third parties for more information.</p>
<h2>3. Consent</h2>
<p>When you first visit our website, we ask for your consent to place cookies that are not strictly necessary. You can change your preferences at any time or delete cookies via your browser settings.</p>
<h2>4. Managing or Deleting Cookies</h2>
<p>You can block or delete cookies via your browser settings. Please note that disabling cookies may cause some parts of the website to not function properly.</p>
<h2>5. Changes</h2>
<p>Morval Watches reserves the right to modify this cookie policy. The most recent version is always available at <a href="https://www.morvalwatches.com">www.morvalwatches.com</a>.</p>
<h2>6. Contact</h2>
<p>Do you have questions about our cookie usage? Please contact us at:<br>
<strong>info@morvalwatches.com</strong></p>
</div>
</div>
<?=template_footer()?>