- 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.
233 lines
4.0 KiB
PHP
233 lines
4.0 KiB
PHP
<?php
|
|
// Prevent direct access to file
|
|
defined(security_key) or exit;
|
|
|
|
?>
|
|
<?=template_header('Complaints Procedure','')?>
|
|
|
|
<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 ol {
|
|
list-style: none;
|
|
counter-reset: item;
|
|
padding-left: 0;
|
|
margin-bottom: 40px;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
.content-section ol > li {
|
|
counter-increment: item;
|
|
margin-bottom: 20px;
|
|
padding-left: 30px;
|
|
position: relative;
|
|
line-height: 1.8;
|
|
color: var(--color-text-dark);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.content-section ol > li::before {
|
|
content: counter(item) ".";
|
|
position: absolute;
|
|
left: 0;
|
|
font-weight: 700;
|
|
color: var(--color-dark-blue);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.content-section ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin: 15px 0;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.content-section ul li {
|
|
margin-bottom: 12px;
|
|
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: underline;
|
|
}
|
|
|
|
.content-section a:hover {
|
|
color: var(--color-dark-blue);
|
|
}
|
|
|
|
/* Article 2 special styling for contact info */
|
|
.content-section h2 + ul {
|
|
margin-left: 40px;
|
|
}
|
|
|
|
.content-section h2 + ul li::before {
|
|
content: "•";
|
|
color: var(--color-dark-blue);
|
|
}
|
|
|
|
@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 ol {
|
|
margin-left: 25px;
|
|
}
|
|
|
|
.content-section ol > li {
|
|
padding-left: 25px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.content-section ul {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.content-section ul li {
|
|
padding-left: 20px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.content-section h2 + ul {
|
|
margin-left: 25px;
|
|
}
|
|
}
|
|
|
|
@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 ol {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.content-section ol > li {
|
|
padding-left: 20px;
|
|
font-size: 13px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.content-section ul {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.content-section ul li {
|
|
padding-left: 18px;
|
|
font-size: 13px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.content-section h2 + ul {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
|
|
<div class="content-section">
|
|
<div class="container">
|
|
<h1>Complaints Procedure</h1>
|
|
|
|
<h2>Filing Complaints</h2>
|
|
<p>It can always happen that something doesn't go entirely as planned. We recommend that you first report complaints to us by emailing <a href="mailto:info@morvalwatches.com">info@morvalwatches.com</a>. If this does not lead to a solution, it is possible to submit your dispute for mediation via WebwinkelKeur at <a href="https://www.webwinkelkeur.nl/kennisbank/consumenten/geschil" target="_blank" rel="noopener noreferrer">https://www.webwinkelkeur.nl/kennisbank/consumenten/geschil</a>.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<?=template_footer()?>
|